diff options
Diffstat (limited to 'archive/mythos_dmms2024/tree/client-overrides/config')
58 files changed, 9019 insertions, 0 deletions
diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/DistantHorizons.toml b/archive/mythos_dmms2024/tree/client-overrides/config/DistantHorizons.toml new file mode 100644 index 0000000..181b821 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/DistantHorizons.toml @@ -0,0 +1,778 @@ +_version = 2 + +[client] + # Should Distant Horizon's config button appear in the options screen next to fov slider? + # + optionsButton = true + + [client.advanced] + + [client.advanced.buffers] + # What method should be used to upload geometry to the GPU? + # + # AUTO: Picks the best option based on the GPU you have. + # + # BUFFER_STORAGE: Default if OpenGL 4.5 is supported. + # Fast rendering, no stuttering. + # + # SUB_DATA: Backup option for NVIDIA. + # Fast rendering but may stutter when uploading. + # + # BUFFER_MAPPING: Slow rendering but won't stutter when uploading. + # Generally the best option for integrated GPUs. + # Default option for AMD/Intel if OpenGL 4.5 isn't supported. + # May end up storing buffers in System memory. + # Fast rendering if in GPU memory, slow if in system memory, + # but won't stutter when uploading. + # + # DATA: Fast rendering but will stutter when uploading. + # Backup option for AMD/Intel. + # Fast rendering but may stutter when uploading. + # + # If you don't see any difference when changing these settings, + # or the world looks corrupted: restart your game. + # + gpuUploadMethod = "AUTO" + # If true geometry data will be uploaded on a DH controlled thread, reducing FPS stuttering. + # If false uploading will be done on Minecraft's main rendering thread. + # + # Setting this to false may reduce crashes or corrupted geometry on systems with an AMD GPU when Sodium is installed. + # + # + gpuUploadAsync = true + # How long should a buffer wait per Megabyte of data uploaded? + # Helpful resource for frame times: https://fpstoms.com + # + # Longer times may reduce stuttering but will make LODs + # transition and load slower. Change this to [0] for no timeout. + # + # NOTE: + # Before changing this config, try changing the "GPU Upload method" first. + # + # + gpuUploadPerMegabyteInMilliseconds = 0 + + [client.advanced.lodBuilding] + # How should block data be compressed when creating LOD data? + # This setting will only affect new or updated LOD data, + # any data already generated when this setting is changed will be + # unaffected until it is modified or re-loaded. + # + # MERGE_SAME_BLOCKS + # Every block/biome change is recorded in the database. + # This is what DH 2.0 and 2.0.1 all used by default and will store a lot of data. + # Expected Compression Ratio: 1.0 + # + # VISUALLY_EQUAL + # Only visible block/biome changes are recorded in the database. + # Hidden blocks (IE ores) are ignored. + # Expected Compression Ratio: 0.7 + # + # + worldCompression = "VISUALLY_EQUAL" + # If false LODs will be lit by Minecraft's lighting engine when possible + # and fall back to the DH lighting engine only when necessary. + # + # If true LODs will only be lit using Distant Horizons' lighting engine. + # + # Generally it is best to leave this disabled and should only be enabled + # if there are lighting issues or for debugging. + # + # + onlyUseDhLightingEngine = false + # Determines if a message should be displayed in the chat when LOD migration starts. + # + # + showMigrationChatWarning = true + # What algorithm should be used to compress new LOD data? + # This setting will only affect new or updated LOD data, + # any data already generated when this setting is changed will be + # unaffected until it needs to be re-written to the database. + # + # UNCOMPRESSED + # Should only be used for testing, is worse in every way vs [LZ4]. + # Expected Compression Ratio: 1.0 + # Estimated average DTO read speed: 1.64 milliseconds + # Estimated average DTO write speed: 12.44 milliseconds + # + # LZ4 + # A good option if you're CPU limited and have plenty of hard drive space. + # Expected Compression Ratio: 0.36 + # Estimated average DTO read speed: 1.85 ms + # Estimated average DTO write speed: 9.46 ms + # + # LZMA2 + # Slow but very good compression. + # Expected Compression Ratio: 0.14 + # Estimated average DTO read speed: 11.89 ms + # Estimated average DTO write speed: 192.01 ms + # + # + dataCompression = "LZMA2" + # Determines how long must pass between LOD chunk updates before another. + # update can occur + # + # Increasing this value will reduce CPU load but may may cause + # LODs to become outdated more frequently or for longer. + # + # + minTimeBetweenChunkUpdatesInSeconds = 1 + + [client.advanced.autoUpdater] + # If DH should use the nightly (provided by Gitlab), or stable (provided by Modrinth) build + # + updateBranch = "NIGHTLY" + # Automatically check for updates on game launch? + # + enableAutoUpdater = true + # Should Distant Horizons silently, automatically download and install new versions? + # + enableSilentUpdates = false + + [client.advanced.multiThreading] + # How many threads should be used when building LODs? + # + # These threads run when terrain is generated, when + # certain graphics settings are changed, and when moving around the world. + # + # Multi-threading Note: + # If the total thread count in Distant Horizon's config is more threads than your CPU has cores, + # CPU performance may suffer if Distant Horizons has a lot to load or generate. + # This can be an issue when first loading into a world, when flying, and/or when generating new terrain. + # + numberOfLodBuilderThreads = 5 + # Should only be disabled if deadlock occurs and LODs refuse to update. + # This will cause CPU usage to drastically increase for the Lod Builder threads. + # + # Note that if deadlock did occur restarting MC may be necessary to stop the locked threads. + # + # + enableLodBuilderThreadLimiting = true + # If this value is less than 1.0, it will be treated as a percentage + # of time each thread can run before going idle. + # + # This can be used to reduce CPU usage if the thread count + # is already set to 1 for the given option, or more finely + # tune CPU performance. + # + runTimeRatioForWorldGenerationThreads = "0.75" + # If this value is less than 1.0, it will be treated as a percentage + # of time each thread can run before going idle. + # + # This can be used to reduce CPU usage if the thread count + # is already set to 1 for the given option, or more finely + # tune CPU performance. + # + runTimeRatioForLodBuilderThreads = "0.75" + # If this value is less than 1.0, it will be treated as a percentage + # of time each thread can run before going idle. + # + # This can be used to reduce CPU usage if the thread count + # is already set to 1 for the given option, or more finely + # tune CPU performance. + # + runTimeRatioForFileHandlerThreads = "1.0" + # If this value is less than 1.0, it will be treated as a percentage + # of time each thread can run before going idle. + # + # This can be used to reduce CPU usage if the thread count + # is already set to 1 for the given option, or more finely + # tune CPU performance. + # + runTimeRatioForUpdatePropagatorThreads = "0.75" + # How many threads should be used when reading/writing LOD data to/from disk? + # + # Increasing this number will cause LODs to load in faster, + # but may cause lag when loading a new world or when + # quickly flying through existing LODs. + # + # Multi-threading Note: + # If the total thread count in Distant Horizon's config is more threads than your CPU has cores, + # CPU performance may suffer if Distant Horizons has a lot to load or generate. + # This can be an issue when first loading into a world, when flying, and/or when generating new terrain. + # + numberOfFileHandlerThreads = 5 + # How many threads should be used when applying LOD updates? + # An LOD update is the operation of down-sampling a high detail LOD + # into a lower detail one. + # + # This config can have a much higher number of threads + # assigned and much lower run time ratio vs other thread pools + # because the amount of time any particular thread may run is relatively low. + # + # This is because LOD updating only only partially thread safe, + # so between 40% and 60% of the time a given thread may end up + # waiting on another thread to finish updating the same LOD it also wants + # to work on. + # + # Multi-threading Note: + # If the total thread count in Distant Horizon's config is more threads than your CPU has cores, + # CPU performance may suffer if Distant Horizons has a lot to load or generate. + # This can be an issue when first loading into a world, when flying, and/or when generating new terrain. + # + numberOfUpdatePropagatorThreads = 12 + # How many threads should be used when generating LOD + # chunks outside the normal render distance? + # + # If you experience stuttering when generating distant LODs, + # decrease this number. + # If you want to increase LOD + # generation speed, increase this number. + # + # Multi-threading Note: + # If the total thread count in Distant Horizon's config is more threads than your CPU has cores, + # CPU performance may suffer if Distant Horizons has a lot to load or generate. + # This can be an issue when first loading into a world, when flying, and/or when generating new terrain. + # + numberOfWorldGenerationThreads = 6 + + [client.advanced.logging] + # If enabled, the mod will log information about the renderer OpenGL process. + # This can be useful for debugging. + # + logRendererGLEvent = "LOG_WARNING_TO_CHAT_AND_INFO_TO_FILE" + # If enabled, the mod will log performance about the world generation process. + # This can be useful for debugging. + # + logWorldGenPerformance = "LOG_WARNING_TO_CHAT_AND_FILE" + # If enabled, the mod will log information about file sub-dimension operations. + # This can be useful for debugging. + # + logFileSubDimEvent = "LOG_WARNING_TO_CHAT_AND_INFO_TO_FILE" + # If enabled, the mod will log information about file read/write operations. + # This can be useful for debugging. + # + logFileReadWriteEvent = "LOG_WARNING_TO_CHAT_AND_INFO_TO_FILE" + # If enabled, the mod will log information about network operations. + # This can be useful for debugging. + # + logNetworkEvent = "LOG_WARNING_TO_CHAT_AND_INFO_TO_FILE" + # If enabled, the mod will log information about the renderer buffer process. + # This can be useful for debugging. + # + logRendererBufferEvent = "LOG_WARNING_TO_CHAT_AND_INFO_TO_FILE" + # If enabled, the mod will log information about the LOD generation process. + # This can be useful for debugging. + # + logLodBuilderEvent = "LOG_WARNING_TO_CHAT_AND_INFO_TO_FILE" + # If enabled, the mod will log information about the world generation process. + # This can be useful for debugging. + # + logWorldGenEvent = "LOG_WARNING_TO_CHAT_AND_INFO_TO_FILE" + # If enabled, the mod will log information about the world generation process. + # This can be useful for debugging. + # + logWorldGenLoadEvent = "LOG_WARNING_TO_CHAT_AND_FILE" + + [client.advanced.debugging] + # If enabled this will disable (most) vanilla Minecraft rendering. + # + # NOTE: Do not report any issues when this mode is on! + # This setting is only for fun and debugging. + # Mod compatibility is not guaranteed. + # + lodOnlyMode = false + # Stops vertex colors from being passed. + # Useful for debugging shaders + # + enableWhiteWorld = false + # What renderer is active? + # + # DEFAULT: Default lod renderer + # DEBUG: Debug testing renderer + # DISABLED: Disable rendering + # + rendererMode = "DEFAULT" + # If enabled the LODs will render as wireframe. + # + renderWireframe = false + # If true the F8 key can be used to cycle through the different debug modes. + # and the F6 key can be used to enable and disable LOD rendering. + # + enableDebugKeybindings = false + # If true overlapping quads will be rendered as bright red for easy identification. + # If false the quads will be rendered normally. + # + # + showOverlappingQuadErrors = false + # Should specialized colors/rendering modes be used? + # + # OFF: LODs will be drawn with their normal colors. + # SHOW_DETAIL: LODs' color will be based on their detail level. + # SHOW_BLOCK_MATERIAL: LODs' color will be based on their material. + # SHOW_OVERLAPPING_QUADS: LODs will be drawn with total white, but overlapping quads will be drawn with red. + # + # + debugRendering = "OFF" + + [client.advanced.debugging.debugWireframe] + # Render LOD section status? + # + showRenderSectionStatus = false + # Render full data update/lock status? + # + showFullDataUpdateStatus = false + # Render queued world gen tasks? + # + showWorldGenQueue = false + # If enabled, various wireframes for debugging internal functions will be drawn. + # + # NOTE: There WILL be performance hit! + # Additionally, only stuff that's loaded after you enable this + # will render their debug wireframes. + # + enableRendering = false + + [client.advanced.debugging.openGl] + # Requires a reboot to change. + # + # + overrideVanillaGLLogger = true + # Can be changed if you experience crashing when loading into a world. + # + # Defines the OpenGL context type Distant Horizon's will create. + # Generally this should be left as [CORE] unless there is an issue with your GPU driver. + # Possible values: [CORE],[COMPAT],[ANY] + # + # + glProfileMode = "CORE" + # Defines how OpenGL errors are handled. + # May incorrectly catch OpenGL errors thrown by other mods. + # + # IGNORE: Do nothing. + # LOG: write an error to the log. + # LOG_THROW: write to the log and throw an exception. + # Warning: this should only be enabled when debugging the LOD renderer + # as it may break Minecraft's renderer when an exception is thrown. + # + # + glErrorHandlingMode = "LOG" + # Can be changed if you experience crashing when loading into a world. + # + # If true Distant Horizon's OpenGL contexts will be created with legacy OpenGL methods disabled. + # Distant Horizons doesn't use any legacy OpenGL methods so normally this should be disabled. + # + # + enableGlForwardCompatibilityMode = true + # Can be changed if you experience crashing when loading into a world. + # Note: setting to an invalid version may also cause the game to crash. + # + # Leaving this value at causes DH to try all supported GL versions. + # + # Defines the requested OpenGL context major version Distant Horizons will create. + # Possible values (DH requires 3.2 or higher at minimum): + # 4.6, 4.5, 4.4, 4.3, 4.2, 4.1, 4.0 + # 3.3, 3.2 + # + # + glContextMajorVersion = 0 + # Can be changed if you experience crashing when loading into a world. + # + # If true Distant Horizon's OpenGL contexts will be created with debugging enabled. + # This allows for enhanced debugging but may throw warnings for other mods or active overlay software. + # + # + enableGlDebugContext = true + # Can be changed if you experience crashing when loading into a world. + # Note: setting to an invalid version may also cause the game to crash. + # + # Defines the requested OpenGL context major version Distant Horizons will create. + # Possible values (DH requires 3.2 or higher at minimum): + # 4.6, 4.5, 4.4, 4.3, 4.2, 4.1, 4.0 + # 3.3, 3.2 + # + # + glContextMinorVersion = 0 + + [client.advanced.debugging.exampleConfigScreen] + shortTest = "69" + mapTest = "{}" + byteTest = "8" + longTest = "42069" + listTest = ["option 1", "option 2", "option 3"] + boolTest = false + doubleTest = "420.69" + floatTest = "0.42069" + linkableTest = 420 + intTest = 69420 + stringTest = "Test input box" + + [client.advanced.graphics] + + [client.advanced.graphics.ssao] + # Determines how many points in space are sampled for the occlusion test. + # Higher numbers will improve quality and reduce banding, but will increase GPU load. + # + sampleCount = 6 + # Determines how dark the Screen Space Ambient Occlusion effect will be. + # + strength = "0.2" + # The radius, measured in pixels, that blurring is calculated for the SSAO. + # Higher numbers will reduce banding at the cost of GPU performance. + # + blurRadius = 2 + # Increasing the value can reduce banding at the cost of reducing the strength of the effect. + # + bias = "0.02" + # Determines how dark the occlusion shadows can be. + # 0 = totally black at the corners + # 1 = no shadow + # + minLight = "0.25" + # Determines the radius Screen Space Ambient Occlusion is applied, measured in blocks. + # + radius = "4.0" + # Enable Screen Space Ambient Occlusion + # + enabled = true + + [client.advanced.graphics.advancedGraphics] + # What the value should vanilla Minecraft's texture LodBias be? + # If set to 0 the mod wont overwrite vanilla's default (which so happens to also be 0) + # + lodBias = "0.0" + # How should the sides and bottom of grass block LODs render? + # + # AS_GRASS: all sides of dirt LOD's render using the top (green) color. + # FADE_TO_DIRT: sides fade from grass to dirt. + # AS_DIRT: sides render entirely as dirt. + # + # + grassSideRendering = "FADE_TO_DIRT" + # Determines how far from the camera Distant Horizons will start rendering. + # Measured as a percentage of the vanilla render distance. + # + # Higher values will prevent LODs from rendering behind vanilla blocks at a higher distance, + # but may cause holes to appear in the LODs. + # Holes are most likely to appear when flying through unloaded terrain. + # + # Increasing the vanilla render distance increases the effectiveness of this setting. + # + overdrawPrevention = "0.4" + # How bright LOD colors are. + # + # 0 = black + # 1 = normal + # 2 = near white + # + brightnessMultiplier = "1.0" + # If enabled caves will be culled + # + # NOTE: This feature is under development and + # it is VERY experimental! Please don't report + # any issues related to this feature. + # + # Additional Info: Currently this cull all faces + # with skylight value of 0 in dimensions that + # does not have a ceiling. + # + enableCaveCulling = true + # Identical to the other frustum culling option + # only used when a shader mod is present using the DH API + # and the shadow pass is being rendered. + # + # Disable this if shadows render incorrectly. + # + disableShadowPassFrustumCulling = false + # At what Y value should cave culling start? + # + caveCullingHeight = 40 + # How should LODs be shaded? + # + # AUTO: Uses the same side shading as vanilla Minecraft blocks. + # ENABLED: Simulates Minecraft's block shading for LODs. + # Can be used to force LOD shading when using some shaders. + # DISABLED: All LOD sides will be rendered with the same brightness. + # + # + lodShading = "AUTO" + # How saturated LOD colors are. + # + # 0 = black and white + # 1 = normal + # 2 = very saturated + # + saturationMultiplier = "1.0" + # This is the earth size ratio when applying the curvature shader effect. + # Note: Enabling this feature may cause rendering bugs. + # + # 0 = flat/disabled + # 1 = 1 to 1 (6,371,000 blocks) + # 100 = 1 to 100 (63,710 blocks) + # 10000 = 1 to 10000 (637.1 blocks) + # + # Note: Due to current limitations, the min value is 50 + # and the max value is 5000. Any values outside this range + # will be set to 0 (disabled). + # + earthCurveRatio = 0 + # If false LODs outside the player's camera + # aren't drawn, increasing GPU performance. + # + # If true all LODs are drawn, even those behind + # the player's camera, decreasing GPU performance. + # + # Disable this if you see LODs disappearing at the corners of your vision. + # + disableFrustumCulling = false + + [client.advanced.graphics.quality] + # What is the maximum detail LODs should be drawn at? + # Higher settings will increase memory and GPU usage. + # + # CHUNK: render 1 LOD for each Chunk. + # HALF_CHUNK: render 4 LODs for each Chunk. + # FOUR_BLOCKS: render 16 LODs for each Chunk. + # TWO_BLOCKS: render 64 LODs for each Chunk. + # BLOCK: render 256 LODs for each Chunk (width of one block). + # + # Lowest Quality: CHUNK + # Highest Quality: BLOCK + # + maxHorizontalResolution = "BLOCK" + # The radius of the mod's render distance. (measured in chunks) + # + lodChunkRenderDistanceRadius = 128 + # Should the blocks underneath avoided blocks gain the color of the avoided block? + # + # True: a red flower will tint the grass below it red. + # False: skipped blocks will not change color of surface below them. + # + tintWithAvoidedBlocks = true + # This indicates how quickly LODs decrease in quality the further away they are. + # Higher settings will render higher quality fake chunks farther away, + # but will increase memory and GPU usage. + # + horizontalQuality = "MEDIUM" + # How should LOD transparency be handled. + # + # COMPLETE: LODs will render transparent. + # FAKE: LODs will be opaque, but shaded to match the blocks underneath. + # DISABLED: LODs will be opaque. + # + # + transparency = "COMPLETE" + # This indicates how well LODs will represent + # overhangs, caves, floating islands, etc. + # Higher options will make the world more accurate, butwill increase memory and GPU usage. + # + # Lowest Quality: HEIGHT_MAP + # Highest Quality: EXTREME + # + verticalQuality = "MEDIUM" + # What blocks shouldn't be rendered as LODs? + # + # NONE: Represent all blocks in the LODs + # NON_COLLIDING: Only represent solid blocks in the LODs (tall grass, torches, etc. won't count for a LOD's height) + # + # + blocksToIgnore = "NON_COLLIDING" + + [client.advanced.graphics.fog] + # When should fog be drawn? + # + # USE_OPTIFINE_SETTING: Use whatever Fog setting Optifine is using. + # If Optifine isn't installed this defaults to FOG_ENABLED. + # FOG_ENABLED: Never draw fog on the LODs + # FOG_DISABLED: Always draw fast fog on the LODs + # + # Disabling fog will improve GPU performance. + # + drawMode = "FOG_ENABLED" + # What color should fog use? + # + # USE_WORLD_FOG_COLOR: Use the world's fog color. + # USE_SKY_COLOR: Use the sky's color. + # + colorMode = "USE_WORLD_FOG_COLOR" + # Should Minecraft's fog be disabled? + # + # Note: Other mods may conflict with this setting. + # + disableVanillaFog = true + + [client.advanced.graphics.fog.advancedFog] + # What is the maximum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + # + farFogMax = "1.0" + # At what distance should the far fog start? + # + # 0.0: Fog starts at the player's position. + # 1.0: Fog starts at the closest edge of the vanilla render distance. + # 1.414: Fog starts at the corner of the vanilla render distance. + # + farFogStart = "0.0" + # What is the minimum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + # + farFogMin = "0.0" + # How should the fog thickness should be calculated? + # + # LINEAR: Linear based on distance (will ignore 'density') + # EXPONENTIAL: 1/(e^(distance*density)) + # EXPONENTIAL_SQUARED: 1/(e^((distance*density)^2) + # + farFogFalloff = "EXPONENTIAL_SQUARED" + # Used in conjunction with the Fog Falloff. + # + farFogDensity = "2.5" + # Where should the far fog end? + # + # 0.0: Fog ends at player's position. + # 1.0: Fog ends at the closest edge of the vanilla render distance. + # 1.414: Fog ends at the corner of the vanilla render distance. + # + farFogEnd = "1.0" + + [client.advanced.graphics.fog.advancedFog.heightFog] + # What is the minimum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + # + heightFogMin = "0.0" + # Where should the height fog start? + # + # ABOVE_CAMERA: Height fog starts at the camera and goes towards the sky + # BELOW_CAMERA: Height fog starts at the camera and goes towards the void + # ABOVE_AND_BELOW_CAMERA: Height fog starts from the camera to goes towards both the sky and void + # ABOVE_SET_HEIGHT: Height fog starts from a set height and goes towards the sky + # BELOW_SET_HEIGHT: Height fog starts from a set height and goes towards the void + # ABOVE_AND_BELOW_SET_HEIGHT: Height fog starts from a set height and goes towards both the sky and void + # + heightFogMode = "ABOVE_AND_BELOW_CAMERA" + # If the height fog is calculated around a set height, what is that height position? + # + heightFogBaseHeight = "70.0" + # What is the maximum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + # + heightFogMax = "1.0" + # How should the height fog thickness should be calculated? + # + # LINEAR: Linear based on height (will ignore 'density') + # EXPONENTIAL: 1/(e^(height*density)) + # EXPONENTIAL_SQUARED: 1/(e^((height*density)^2) + # + heightFogFalloff = "EXPONENTIAL_SQUARED" + # What is the height fog's density? + # + heightFogDensity = "2.5" + # How should height effect the fog thickness? + # Note: height fog is combined with the other fog settings. + # + # BASIC: No special height fog effect. Fog is calculated based on camera distance + # IGNORE_HEIGHT: Ignore height completely. Fog is only calculated with horizontal distance + # ADDITION: heightFog + farFog + # MAX: max(heightFog, farFog) + # MULTIPLY: heightFog * farFog + # INVERSE_MULTIPLY: 1 - (1-heightFog) * (1-farFog) + # LIMITED_ADDITION: farFog + max(farFog, heightFog) + # MULTIPLY_ADDITION: farFog + farFog * heightFog + # INVERSE_MULTIPLY_ADDITION: farFog + 1 - (1-heightFog) * (1-farFog) + # AVERAGE: farFog*0.5 + heightFog*0.5 + # + # Note: height fog settings are ignored if 'BASIC' or 'IGNORE_HEIGHT' are selected. + # + heightFogMixMode = "BASIC" + # Should the start of the height fog be offset? + # + # 0.0: Fog start with no offset. + # 1.0: Fog start with offset of the entire world's height. (Includes depth) + # + heightFogStart = "0.0" + # Should the end of the height fog be offset? + # + # 0.0: Fog end with no offset. + # 1.0: Fog end with offset of the entire world's height. (Include depth) + # + heightFogEnd = "1.0" + + [client.advanced.graphics.noiseTextureSettings] + # Defines how far should the noise texture render before it fades away. (in blocks) + # Set to 0 to disable noise from fading away + # + noiseDropoff = 1024 + # How many steps of noise should be applied to LODs? + # + noiseSteps = 4 + # Should a noise texture be applied to LODs? + # + # This is done to simulate textures and make the LODs appear more detailed. + # + # + noiseEnabled = true + # How intense should the noise should be? + # + noiseIntensity = "5.0" + + [client.advanced.worldGenerator] + # How detailed should LODs be generated outside the vanilla render distance? + # + # PRE_EXISTING_ONLY + # Only create LOD data for already generated chunks. + # + # + # SURFACE + # Generate the world surface, + # this does NOT include trees, + # or structures. + # + # FEATURES + # Generate everything except structures. + # WARNING: This may cause world generator bugs or instability when paired with certain world generator mods. + # + # + distantGeneratorMode = "FEATURES" + # How long should a world generator thread run for before timing out? + # Note: If you are experiencing timeout errors it is better to lower your CPU usage first + # via the thread config before changing this value. + # + # + worldGenerationTimeoutLengthInSeconds = 60 + # Should Distant Horizons slowly generate LODs + # outside the vanilla render distance? + # + # Note: when on a server, distant generation isn't supported + # and will always be disabled. + # + enableDistantGeneration = true + + [client.advanced.multiplayer] + # AKA: Multiverse support. + # + # When matching levels (dimensions) of the same type (overworld, nether, etc.) the + # loaded chunks must be at least this percent the same + # in order to be considered the same world. + # + # Note: If you use portals to enter a dimension at two + # different locations the system will think the dimension + # it is two different levels. + # + # 1.0 (100%) the chunks must be identical. + # 0.5 (50%) the chunks must be half the same. + # 0.0 (0%) disables multi-dimension support, + # only one world will be used per dimension. + # + # If multiverse support is needed start with a value of 0.2 + # and tweak the sensitivity from there.Lower values mean the matching is less strict. + # Higher values mean the matching is more strict. + # + # + multiverseSimilarityRequiredPercent = "0.0" + # How should multiplayer save folders should be named? + # + # NAME_ONLY: Example: "Minecraft Server" + # IP_ONLY: Example: "192.168.1.40" + # NAME_IP: Example: "Minecraft Server IP 192.168.1.40" + # NAME_IP_PORT: Example: "Minecraft Server IP 192.168.1.40:25565"NAME_IP_PORT_MC_VERSION: Example: "Minecraft Server IP 192.168.1.40:25565 GameVersion 1.16.5" + # + serverFolderNameMode = "NAME_ONLY" + diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/accessories.json5 b/archive/mythos_dmms2024/tree/client-overrides/config/accessories.json5 new file mode 100644 index 0000000..ebfb619 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/accessories.json5 @@ -0,0 +1,30 @@ +{ + "clientData": { + "showGroupTabs": true, + "showUniqueRendering": false, + "inventoryButtonXOffset": 27, + "inventoryButtonYOffset": 9, + "creativeInventoryButtonXOffset": 96, + "creativeInventoryButtonYOffset": 7, + "forceNullRenderReplacement": false, + "disableEmptySlotScreenError": false, + "allowSlotScrolling": true, + "equipControl": "MUST_NOT_CROUCH", + "hoverOptions": { + "hoveredOptions": { + "brightenHovered": true, + "cycleBrightness": true, + "line": false, + "clickbait": false + }, + "unHoveredOptions": { + "renderUnHovered": true, + "darkenUnHovered": true, + "darkenedBrightness": 0.5, + "darkenedOpacity": 1.0 + } + }, + "disabledDefaultRenders": [] + }, + "modifiers": [] +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/aether-client.toml b/archive/mythos_dmms2024/tree/client-overrides/config/aether-client.toml new file mode 100644 index 0000000..99be4bd --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/aether-client.toml @@ -0,0 +1,73 @@ + +[Rendering] + #Changes Zephyr and Aerwhale rendering to use their old models from the b1.7.3 version of the mod + "Switches to legacy mob models" = false + #Disables the Aether's custom skybox in case you have a shader that is incompatible with custom skyboxes + "Disables Aether custom skybox" = false + #Removes warm-tinting of the lightmap in the Aether, giving the lighting a colder feel + "Makes lightmap colder" = false + #Enables a green-tinted sunrise and sunset in the Aether, similar to the original mod + "Enables green sunrise/sunset" = false + +[Gui] + #Adds a button to the top right of the main menu screen to toggle between the Aether and vanilla menu + "Enables Aether menu button" = false + #Changes the background panorama into a preview of the latest played world + "Enables world preview" = false + #Adds a button to the top right of the main menu screen to toggle between the panorama and world preview + "Enables toggle world button" = false + #Adds a button to the top right of the main menu screen to allow quick loading into a world if the world preview is enabled + "Enables quick load button" = true + #Determines that menu elements will align left if the menu's world preview is active, if true, this overrides 'Align menu elements left' + "Align menu elements left with world preview" = false + #Determines the default Aether menu style to switch to with the menu theme button + "Default Aether menu style" = "aether:the_aether_left" + #Determines the default Minecraft menu style to switch to with the menu theme button + "Default Minecraft menu style" = "cumulus_menus:minecraft" + #Adds random trivia and tips to the bottom of loading screens + "Enables random trivia" = false + #Makes the extra hearts given by life shards display as silver colored + "Enables silver life shard hearts" = true + #Disables the Aether's accessories button from appearing in GUIs + "Disables the accessories button" = true + #The y-coordinate of the Ascending to the Aether and Descending from the Aether text in loading screens + "Portal text y-coordinate in loading screens" = 50 + #The x-coordinate of the accessories button in the inventory and curios menus + "Button x-coordinate in inventory menus" = 27 + #The y-coordinate of the accessories button in the inventory and curios menus + "Button y-coordinate in inventory menus" = 68 + #The x-coordinate of the accessories button in the creative menu + "Button x-coordinate in creative menu" = 74 + #The y-coordinate of the accessories button in the creative menu + "Button y-coordinate in creative menu" = 40 + #The x-coordinate of the accessories button in the accessories menu + "Button x-coordinate in accessories menu" = 9 + #The y-coordinate of the accessories button in the accessories menu + "Button y-coordinate in accessories menu" = 68 + #The x-coordinate of the perks button layout when in the pause menu + "Layout x-coordinate in pause menu" = -116 + #The y-coordinate of the perks button layout when in the pause menu + "Layout y-coordinate in pause menu" = 0 + #Enables the overlay at the top of the screen for the Hammer of Kingbdogz' cooldown + "Enables Hammer of Kingbdogz' cooldown overlay" = true + +[Audio] + #Sets the minimum delay for the Aether's music manager to use if needing to reset the song delay outside the Aether + "Set backup minimum music delay" = 12000 + #Sets the maximum delay for the Aether's music manager to use if needing to reset the song delay outside the Aether + "Set backup maximum music delay" = 24000 + #Disables the Aether's internal music manager, if true, this overrides all other audio configs + "Disables Aether music manager" = false + #Disables the Aether's menu music in case another mod implements its own, only works if 'Disables Aether music manager' is false + "Disables Aether menu music" = false + #Disables the menu music on the vanilla world preview menu, only works if 'Disables Aether music manager' is false + "Disables vanilla world preview menu music" = false + #Disables the menu music on the Aether world preview menu, only works if 'Disables Aether music manager' is false + "Disables Aether world preview menu music" = false + +[Miscellaneous] + #Disables the Cumulus menu selection screen button on launch + "Disable Cumulus button" = false + #Enables a direct join button for the official server + "Enables server button" = false + diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/bclib/biomes.json b/archive/mythos_dmms2024/tree/client-overrides/config/bclib/biomes.json new file mode 100644 index 0000000..eef95df --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/bclib/biomes.json @@ -0,0 +1,13 @@ +{ + "force_include": { + "NETHER": [], + "END_LAND": [], + "END_VOID": [], + "END_CENTER": [], + "END_BARRENS": [] + }, + "force_exclude": { + "NETHER": [], + "END": [] + } +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/bclib/cache.json b/archive/mythos_dmms2024/tree/client-overrides/config/bclib/cache.json new file mode 100644 index 0000000..aba4064 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/bclib/cache.json @@ -0,0 +1,6 @@ +{ + "version": { + "last [default: never]": "never", + "cached [default: ]": "" + } +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/bclib/client.json b/archive/mythos_dmms2024/tree/client-overrides/config/bclib/client.json new file mode 100644 index 0000000..b6f89c8 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/bclib/client.json @@ -0,0 +1,29 @@ +{ + "version": { + "didShowWelcome [default: false]": false, + "check [default: true]": true + }, + "ui": { + "showUpdateInfo [default: true]": true, + "useModrinthForUpdates [default: false]": false, + "forceBetterXPreset [default: true]": true, + "suppressExperimentalDialogOnLoad [default: false]": false, + "notTheDonorType [default: true]": true + }, + "auto_sync": { + "enabled [default: true]": true, + "acceptConfigs [default: true]": true, + "acceptFiles [default: true]": true, + "acceptMods [default: true]": true, + "displayModInfo [default: true]": true, + "debugHashes [default: false]": false + }, + "rendering": { + "customFogRendering [default: true]": true, + "netherThickFog [default: true]": true, + "FogDensity [default: 1.0]": 1.0 + }, + "infos": { + "survives_on_hint [default: true]": true + } +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/bclib/generator.json b/archive/mythos_dmms2024/tree/client-overrides/config/bclib/generator.json new file mode 100644 index 0000000..cefdc9c --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/bclib/generator.json @@ -0,0 +1,8 @@ +{ + "options": { + "biomeSource": { + "fixEndBiomeSource [default: true]": true, + "fixNetherBiomeSource [default: true]": true + } + } +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/bclib/main.json b/archive/mythos_dmms2024/tree/client-overrides/config/bclib/main.json new file mode 100644 index 0000000..cad0474 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/bclib/main.json @@ -0,0 +1,9 @@ +{ + "patches": { + "applyPatches [default: true]": true, + "repairBiomesOnLoad [default: false]": false + }, + "infos": { + "verbose [default: true]": true + } +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/bclib/server.json b/archive/mythos_dmms2024/tree/client-overrides/config/bclib/server.json new file mode 100644 index 0000000..40f68e5 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/bclib/server.json @@ -0,0 +1,13 @@ +{ + "auto_sync": { + "enabled [default: true]": true, + "offerConfigs [default: true]": true, + "offerFiles [default: true]": true, + "offerMods [default: true]": true, + "offerAllMods [default: false]": false, + "sendAllModInfo [default: false]": false, + "additionalMods": [], + "excludeMods": [], + "forceBetterXPreset [default: true]": true + } +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/betterend/blocks.json b/archive/mythos_dmms2024/tree/client-overrides/config/betterend/blocks.json new file mode 100644 index 0000000..a51c9e3 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/betterend/blocks.json @@ -0,0 +1,478 @@ +{ + "endstone_dust [default: true]": true, + "betterend [default: true]": true, + "end_mycelium [default: true]": true, + "end_moss [default: true]": true, + "chorus_nylium [default: true]": true, + "cave_moss [default: true]": true, + "crystal_moss [default: true]": true, + "shadow_grass [default: true]": true, + "pink_moss [default: true]": true, + "amber_moss [default: true]": true, + "jungle_moss [default: true]": true, + "sangnum [default: true]": true, + "rutiscus [default: true]": true, + "pallidium_full [default: true]": true, + "pallidium_heavy [default: true]": true, + "pallidium_thin [default: true]": true, + "pallidium_tiny [default: true]": true, + "end_mycelium_path [default: true]": true, + "end_moss_path [default: true]": true, + "chorus_nylium_path [default: true]": true, + "cave_moss_path [default: true]": true, + "crystal_moss_path [default: true]": true, + "shadow_grass_path [default: true]": true, + "pink_moss_path [default: true]": true, + "amber_moss_path [default: true]": true, + "jungle_moss_path [default: true]": true, + "sangnum_path [default: true]": true, + "rutiscus_path [default: true]": true, + "mossy_obsidian [default: true]": true, + "dragon_bone_block [default: true]": true, + "dragon_bone_stairs [default: true]": true, + "dragon_bone_slab [default: true]": true, + "mossy_dragon_bone [default: true]": true, + "flavolite [default: true]": true, + "flavolite_polished [default: true]": true, + "flavolite_tiles [default: true]": true, + "flavolite_pillar [default: true]": true, + "flavolite_stairs [default: true]": true, + "flavolite_slab [default: true]": true, + "flavolite_wall [default: true]": true, + "flavolite_button [default: true]": true, + "flavolite_plate [default: true]": true, + "flavolite_pedestal [default: true]": true, + "flavolite_lantern [default: true]": true, + "flavolite_bricks [default: true]": true, + "flavolite_bricks_stairs [default: true]": true, + "flavolite_bricks_slab [default: true]": true, + "flavolite_bricks_wall [default: true]": true, + "flavolite_furnace [default: true]": true, + "flavolite_flower_pot [default: true]": true, + "violecite [default: true]": true, + "violecite_polished [default: true]": true, + "violecite_tiles [default: true]": true, + "violecite_pillar [default: true]": true, + "violecite_stairs [default: true]": true, + "violecite_slab [default: true]": true, + "violecite_wall [default: true]": true, + "violecite_button [default: true]": true, + "violecite_plate [default: true]": true, + "violecite_pedestal [default: true]": true, + "violecite_lantern [default: true]": true, + "violecite_bricks [default: true]": true, + "violecite_bricks_stairs [default: true]": true, + "violecite_bricks_slab [default: true]": true, + "violecite_bricks_wall [default: true]": true, + "violecite_furnace [default: true]": true, + "violecite_flower_pot [default: true]": true, + "sulphuric_rock [default: true]": true, + "sulphuric_rock_polished [default: true]": true, + "sulphuric_rock_tiles [default: true]": true, + "sulphuric_rock_pillar [default: true]": true, + "sulphuric_rock_stairs [default: true]": true, + "sulphuric_rock_slab [default: true]": true, + "sulphuric_rock_wall [default: true]": true, + "sulphuric_rock_button [default: true]": true, + "sulphuric_rock_plate [default: true]": true, + "sulphuric_rock_pedestal [default: true]": true, + "sulphuric_rock_lantern [default: true]": true, + "sulphuric_rock_bricks [default: true]": true, + "sulphuric_rock_bricks_stairs [default: true]": true, + "sulphuric_rock_bricks_slab [default: true]": true, + "sulphuric_rock_bricks_wall [default: true]": true, + "sulphuric_rock_furnace [default: true]": true, + "sulphuric_rock_flower_pot [default: true]": true, + "virid_jadestone [default: true]": true, + "virid_jadestone_polished [default: true]": true, + "virid_jadestone_tiles [default: true]": true, + "virid_jadestone_pillar [default: true]": true, + "virid_jadestone_stairs [default: true]": true, + "virid_jadestone_slab [default: true]": true, + "virid_jadestone_wall [default: true]": true, + "virid_jadestone_button [default: true]": true, + "virid_jadestone_plate [default: true]": true, + "virid_jadestone_pedestal [default: true]": true, + "virid_jadestone_lantern [default: true]": true, + "virid_jadestone_bricks [default: true]": true, + "virid_jadestone_bricks_stairs [default: true]": true, + "virid_jadestone_bricks_slab [default: true]": true, + "virid_jadestone_bricks_wall [default: true]": true, + "virid_jadestone_furnace [default: true]": true, + "virid_jadestone_flower_pot [default: true]": true, + "azure_jadestone [default: true]": true, + "azure_jadestone_polished [default: true]": true, + "azure_jadestone_tiles [default: true]": true, + "azure_jadestone_pillar [default: true]": true, + "azure_jadestone_stairs [default: true]": true, + "azure_jadestone_slab [default: true]": true, + "azure_jadestone_wall [default: true]": true, + "azure_jadestone_button [default: true]": true, + "azure_jadestone_plate [default: true]": true, + "azure_jadestone_pedestal [default: true]": true, + "azure_jadestone_lantern [default: true]": true, + "azure_jadestone_bricks [default: true]": true, + "azure_jadestone_bricks_stairs [default: true]": true, + "azure_jadestone_bricks_slab [default: true]": true, + "azure_jadestone_bricks_wall [default: true]": true, + "azure_jadestone_furnace [default: true]": true, + "azure_jadestone_flower_pot [default: true]": true, + "sandy_jadestone [default: true]": true, + "sandy_jadestone_polished [default: true]": true, + "sandy_jadestone_tiles [default: true]": true, + "sandy_jadestone_pillar [default: true]": true, + "sandy_jadestone_stairs [default: true]": true, + "sandy_jadestone_slab [default: true]": true, + "sandy_jadestone_wall [default: true]": true, + "sandy_jadestone_button [default: true]": true, + "sandy_jadestone_plate [default: true]": true, + "sandy_jadestone_pedestal [default: true]": true, + "sandy_jadestone_lantern [default: true]": true, + "sandy_jadestone_bricks [default: true]": true, + "sandy_jadestone_bricks_stairs [default: true]": true, + "sandy_jadestone_bricks_slab [default: true]": true, + "sandy_jadestone_bricks_wall [default: true]": true, + "sandy_jadestone_furnace [default: true]": true, + "sandy_jadestone_flower_pot [default: true]": true, + "umbralith [default: true]": true, + "umbralith_polished [default: true]": true, + "umbralith_tiles [default: true]": true, + "umbralith_pillar [default: true]": true, + "umbralith_stairs [default: true]": true, + "umbralith_slab [default: true]": true, + "umbralith_wall [default: true]": true, + "umbralith_button [default: true]": true, + "umbralith_plate [default: true]": true, + "umbralith_pedestal [default: true]": true, + "umbralith_lantern [default: true]": true, + "umbralith_bricks [default: true]": true, + "umbralith_bricks_stairs [default: true]": true, + "umbralith_bricks_slab [default: true]": true, + "umbralith_bricks_wall [default: true]": true, + "umbralith_furnace [default: true]": true, + "umbralith_flower_pot [default: true]": true, + "brimstone [default: true]": true, + "sulphur_crystal [default: true]": true, + "missing_tile [default: true]": true, + "endstone_flower_pot [default: true]": true, + "flavolite_runed [default: true]": true, + "flavolite_runed_eternal [default: true]": true, + "andesite_pedestal [default: true]": true, + "diorite_pedestal [default: true]": true, + "granite_pedestal [default: true]": true, + "quartz_pedestal [default: true]": true, + "purpur_pedestal [default: true]": true, + "hydrothermal_vent [default: true]": true, + "dense_snow [default: true]": true, + "emerald_ice [default: true]": true, + "dense_emerald_ice [default: true]": true, + "ancient_emerald_ice [default: true]": true, + "end_stone_stalactite [default: true]": true, + "end_stone_stalactite_cavemoss [default: true]": true, + "mossy_glowshroom_sapling [default: true]": true, + "mossy_glowshroom_cap [default: true]": true, + "mossy_glowshroom_hymenophore [default: true]": true, + "mossy_glowshroom_fur [default: true]": true, + "pythadendron_sapling [default: true]": true, + "pythadendron_leaves [default: true]": true, + "end_lotus_seed [default: true]": true, + "end_lotus_stem [default: true]": true, + "lacugrove_sapling [default: true]": true, + "lacugrove_leaves [default: true]": true, + "dragon_tree_sapling [default: true]": true, + "dragon_tree_leaves [default: true]": true, + "tenanea_sapling [default: true]": true, + "tenanea_leaves [default: true]": true, + "tenanea_flowers [default: true]": true, + "tenanea_outer_leaves [default: true]": true, + "helix_tree_sapling [default: true]": true, + "helix_tree_leaves [default: true]": true, + "umbrella_tree_sapling [default: true]": true, + "umbrella_tree_membrane [default: true]": true, + "umbrella_tree_cluster [default: true]": true, + "umbrella_tree_cluster_empty [default: true]": true, + "jellyshroom_cap_purple [default: true]": true, + "lucernia_sapling [default: true]": true, + "lucernia_leaves [default: true]": true, + "lucernia_outer_leaves [default: true]": true, + "umbrella_moss [default: true]": true, + "umbrella_moss_tall [default: true]": true, + "creeping_moss [default: true]": true, + "chorus_grass [default: true]": true, + "cave_grass [default: true]": true, + "crystal_grass [default: true]": true, + "shadow_plant [default: true]": true, + "bushy_grass [default: true]": true, + "amber_grass [default: true]": true, + "twisted_umbrella_moss [default: true]": true, + "twisted_umbrella_moss_tall [default: true]": true, + "jungle_grass [default: true]": true, + "blooming_cooksonia [default: true]": true, + "salteago [default: true]": true, + "vaiolush_fern [default: true]": true, + "fracturn [default: true]": true, + "clawfern [default: true]": true, + "globulagus [default: true]": true, + "orango [default: true]": true, + "aeridium [default: true]": true, + "lutebus [default: true]": true, + "lamellarium [default: true]": true, + "inflexia [default: true]": true, + "flammalix [default: true]": true, + "crystal_moss_cover [default: true]": true, + "blue_vine_seed [default: true]": true, + "blue_vine_lantern [default: true]": true, + "blue_vine_fur [default: true]": true, + "lanceleaf_seed [default: true]": true, + "glowing_pillar_seed [default: true]": true, + "glowing_pillar_luminophor [default: true]": true, + "glowing_pillar_leaves [default: true]": true, + "small_jellyshroom [default: true]": true, + "bolux_mushroom [default: true]": true, + "lumecorn_seed [default: true]": true, + "small_amaranita_mushroom [default: true]": true, + "amaranita_stem [default: true]": true, + "amaranita_hyphae [default: true]": true, + "amaranita_hymenophore [default: true]": true, + "amaranita_lantern [default: true]": true, + "amaranita_fur [default: true]": true, + "amaranita_cap [default: true]": true, + "neon_cactus [default: true]": true, + "neon_cactus_block [default: true]": true, + "neon_cactus_stairs [default: true]": true, + "neon_cactus_slab [default: true]": true, + "shadow_berry [default: true]": true, + "blossom_berry_seed [default: true]": true, + "amber_root_seed [default: true]": true, + "chorus_mushroom_seed [default: true]": true, + "cave_pumpkin_seed [default: true]": true, + "cave_pumpkin [default: true]": true, + "bubble_coral [default: true]": true, + "menger_sponge [default: true]": true, + "menger_sponge_wet [default: true]": true, + "charnia_red [default: true]": true, + "charnia_purple [default: true]": true, + "charnia_orange [default: true]": true, + "charnia_light_blue [default: true]": true, + "charnia_cyan [default: true]": true, + "charnia_green [default: true]": true, + "end_lily_seed [default: true]": true, + "hydralux_sapling [default: true]": true, + "hydralux_petal_block [default: true]": true, + "hydralux_petal_block_white [default: true]": true, + "hydralux_petal_block_gray [default: true]": true, + "hydralux_petal_block_light_gray [default: true]": true, + "hydralux_petal_block_black [default: true]": true, + "hydralux_petal_block_blue [default: true]": true, + "hydralux_petal_block_lime [default: true]": true, + "hydralux_petal_block_magenta [default: true]": true, + "hydralux_petal_block_red [default: true]": true, + "hydralux_petal_block_orange [default: true]": true, + "hydralux_petal_block_purple [default: true]": true, + "hydralux_petal_block_cyan [default: true]": true, + "hydralux_petal_block_brown [default: true]": true, + "hydralux_petal_block_green [default: true]": true, + "hydralux_petal_block_yellow [default: true]": true, + "hydralux_petal_block_pink [default: true]": true, + "hydralux_petal_block_light_blue [default: true]": true, + "pond_anemone [default: true]": true, + "flamaea [default: true]": true, + "cave_bush [default: true]": true, + "murkweed [default: true]": true, + "needlegrass [default: true]": true, + "purple_polypore [default: true]": true, + "aurant_polypore [default: true]": true, + "tail_moss [default: true]": true, + "cyan_moss [default: true]": true, + "twisted_moss [default: true]": true, + "tube_worm [default: true]": true, + "bulb_moss [default: true]": true, + "jungle_fern [default: true]": true, + "ruscus [default: true]": true, + "dense_vine [default: true]": true, + "twisted_vine [default: true]": true, + "bulb_vine_seed [default: true]": true, + "bulb_vine [default: true]": true, + "jungle_vine [default: true]": true, + "rubinea [default: true]": true, + "magnula [default: true]": true, + "filalux [default: true]": true, + "filalux_wings [default: true]": true, + "filalux_lantern [default: true]": true, + "silk_moth_nest [default: true]": true, + "silk_moth_hive [default: true]": true, + "ender_ore [default: true]": true, + "amber_ore [default: true]": true, + "thallasium_ore [default: true]": true, + "thallasium_block [default: true]": true, + "thallasium_tile [default: true]": true, + "thallasium_stairs [default: true]": true, + "thallasium_slab [default: true]": true, + "thallasium_door [default: true]": true, + "thallasium_trapdoor [default: true]": true, + "thallasium_bars [default: true]": true, + "thallasium_chain [default: true]": true, + "thallasium_plate [default: true]": true, + "thallasium_chandelier [default: true]": true, + "thallasium_bulb_lantern [default: true]": true, + "thallasium_bulb_lantern_white [default: true]": true, + "thallasium_bulb_lantern_gray [default: true]": true, + "thallasium_bulb_lantern_light_gray [default: true]": true, + "thallasium_bulb_lantern_black [default: true]": true, + "thallasium_bulb_lantern_blue [default: true]": true, + "thallasium_bulb_lantern_lime [default: true]": true, + "thallasium_bulb_lantern_magenta [default: true]": true, + "thallasium_bulb_lantern_red [default: true]": true, + "thallasium_bulb_lantern_orange [default: true]": true, + "thallasium_bulb_lantern_purple [default: true]": true, + "thallasium_bulb_lantern_cyan [default: true]": true, + "thallasium_bulb_lantern_brown [default: true]": true, + "thallasium_bulb_lantern_green [default: true]": true, + "thallasium_bulb_lantern_yellow [default: true]": true, + "thallasium_bulb_lantern_pink [default: true]": true, + "thallasium_bulb_lantern_light_blue [default: true]": true, + "thallasium_anvil [default: true]": true, + "terminite_block [default: true]": true, + "terminite_tile [default: true]": true, + "terminite_stairs [default: true]": true, + "terminite_slab [default: true]": true, + "terminite_door [default: true]": true, + "terminite_trapdoor [default: true]": true, + "terminite_bars [default: true]": true, + "terminite_chain [default: true]": true, + "terminite_plate [default: true]": true, + "terminite_chandelier [default: true]": true, + "terminite_bulb_lantern [default: true]": true, + "terminite_bulb_lantern_white [default: true]": true, + "terminite_bulb_lantern_gray [default: true]": true, + "terminite_bulb_lantern_light_gray [default: true]": true, + "terminite_bulb_lantern_black [default: true]": true, + "terminite_bulb_lantern_blue [default: true]": true, + "terminite_bulb_lantern_lime [default: true]": true, + "terminite_bulb_lantern_magenta [default: true]": true, + "terminite_bulb_lantern_red [default: true]": true, + "terminite_bulb_lantern_orange [default: true]": true, + "terminite_bulb_lantern_purple [default: true]": true, + "terminite_bulb_lantern_cyan [default: true]": true, + "terminite_bulb_lantern_brown [default: true]": true, + "terminite_bulb_lantern_green [default: true]": true, + "terminite_bulb_lantern_yellow [default: true]": true, + "terminite_bulb_lantern_pink [default: true]": true, + "terminite_bulb_lantern_light_blue [default: true]": true, + "terminite_anvil [default: true]": true, + "aeternium_block [default: true]": true, + "charcoal_block [default: true]": true, + "ender_block [default: true]": true, + "aurora_crystal [default: true]": true, + "amber_block [default: true]": true, + "smaragdant_crystal_shard [default: true]": true, + "smaragdant_crystal [default: true]": true, + "smaragdant_crystal_polished [default: true]": true, + "smaragdant_crystal_tiles [default: true]": true, + "smaragdant_crystal_pillar [default: true]": true, + "smaragdant_crystal_stairs [default: true]": true, + "smaragdant_crystal_slab [default: true]": true, + "smaragdant_crystal_wall [default: true]": true, + "smaragdant_crystal_pedestal [default: true]": true, + "smaragdant_crystal_bricks [default: true]": true, + "smaragdant_crystal_bricks_stairs [default: true]": true, + "smaragdant_crystal_bricks_slab [default: true]": true, + "smaragdant_crystal_bricks_wall [default: true]": true, + "budding_smaragdant_crystal [default: true]": true, + "respawn_obelisk [default: true]": true, + "andesite_lantern [default: true]": true, + "diorite_lantern [default: true]": true, + "granite_lantern [default: true]": true, + "quartz_lantern [default: true]": true, + "purpur_lantern [default: true]": true, + "end_stone_lantern [default: true]": true, + "blackstone_lantern [default: true]": true, + "iron_bulb_lantern [default: true]": true, + "iron_bulb_lantern_white [default: true]": true, + "iron_bulb_lantern_gray [default: true]": true, + "iron_bulb_lantern_light_gray [default: true]": true, + "iron_bulb_lantern_black [default: true]": true, + "iron_bulb_lantern_blue [default: true]": true, + "iron_bulb_lantern_lime [default: true]": true, + "iron_bulb_lantern_magenta [default: true]": true, + "iron_bulb_lantern_red [default: true]": true, + "iron_bulb_lantern_orange [default: true]": true, + "iron_bulb_lantern_purple [default: true]": true, + "iron_bulb_lantern_cyan [default: true]": true, + "iron_bulb_lantern_brown [default: true]": true, + "iron_bulb_lantern_green [default: true]": true, + "iron_bulb_lantern_yellow [default: true]": true, + "iron_bulb_lantern_pink [default: true]": true, + "iron_bulb_lantern_light_blue [default: true]": true, + "iron_chandelier [default: true]": true, + "gold_chandelier [default: true]": true, + "end_stone_furnace [default: true]": true, + "end_stone_smelter [default: true]": true, + "eternal_pedestal [default: true]": true, + "infusion_pedestal [default: true]": true, + "aeternium_anvil [default: true]": true, + "flower_pots": { + "soils": { + "end_mycelium [default: 0]": 0, + "end_moss [default: 1]": 1, + "chorus_nylium [default: 2]": 2, + "cave_moss [default: 3]": 3, + "crystal_moss [default: 4]": 4, + "shadow_grass [default: 5]": 5, + "pink_moss [default: 6]": 6, + "amber_moss [default: 7]": 7, + "jungle_moss [default: 8]": 8, + "sangnum [default: 9]": 9, + "rutiscus [default: 10]": 10, + "pallidium_full [default: 11]": 11 + }, + "plants": { + "mossy_glowshroom_sapling [default: 0]": 0, + "pythadendron_sapling [default: 1]": 1, + "pythadendron_leaves [default: 2]": 2, + "end_lotus_flower [default: 3]": 3, + "lacugrove_sapling [default: 4]": 4, + "lacugrove_leaves [default: 5]": 5, + "dragon_tree_sapling [default: 6]": 6, + "dragon_tree_leaves [default: 7]": 7, + "tenanea_sapling [default: 8]": 8, + "tenanea_leaves [default: 9]": 9, + "helix_tree_sapling [default: 10]": 10, + "umbrella_tree_sapling [default: 11]": 11, + "lucernia_sapling [default: 12]": 12, + "lucernia_leaves [default: 13]": 13, + "umbrella_moss [default: 14]": 14, + "creeping_moss [default: 15]": 15, + "chorus_grass [default: 16]": 16, + "cave_grass [default: 17]": 17, + "crystal_grass [default: 18]": 18, + "shadow_plant [default: 19]": 19, + "bushy_grass [default: 20]": 20, + "amber_grass [default: 21]": 21, + "twisted_umbrella_moss [default: 22]": 22, + "jungle_grass [default: 23]": 23, + "blooming_cooksonia [default: 24]": 24, + "salteago [default: 25]": 25, + "vaiolush_fern [default: 26]": 26, + "fracturn [default: 27]": 27, + "clawfern [default: 28]": 28, + "globulagus [default: 29]": 29, + "orango [default: 30]": 30, + "aeridium [default: 31]": 31, + "lutebus [default: 32]": 32, + "lamellarium [default: 33]": 33, + "inflexia [default: 34]": 34, + "flammalix [default: 35]": 35, + "small_jellyshroom [default: 36]": 36, + "bolux_mushroom [default: 37]": 37, + "small_amaranita_mushroom [default: 38]": 38, + "neon_cactus [default: 39]": 39, + "shadow_berry [default: 40]": 40, + "blossom_berry_seed [default: 41]": 41, + "amber_root_seed [default: 42]": 42, + "chorus_mushroom_seed [default: 43]": 43, + "murkweed [default: 44]": 44, + "needlegrass [default: 45]": 45 + } + } +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/betterend/client.json b/archive/mythos_dmms2024/tree/client-overrides/config/betterend/client.json new file mode 100644 index 0000000..5c936ef --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/betterend/client.json @@ -0,0 +1,5 @@ +{ + "customSky [default: true]": true, + "blendBiomeMusic [default: true]": true, + "sulfurWaterColor [default: true]": true +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/betterend/enchantments.json b/archive/mythos_dmms2024/tree/client-overrides/config/betterend/enchantments.json new file mode 100644 index 0000000..f3c8f71 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/betterend/enchantments.json @@ -0,0 +1,3 @@ +{ + "end_veil [default: true]": true +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/betterend/entities.json b/archive/mythos_dmms2024/tree/client-overrides/config/betterend/entities.json new file mode 100644 index 0000000..caf1f50 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/betterend/entities.json @@ -0,0 +1,8 @@ +{ + "dragonfly [default: true]": true, + "end_slime [default: true]": true, + "end_fish [default: true]": true, + "shadow_walker [default: true]": true, + "cubozoa [default: true]": true, + "silk_moth [default: true]": true +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/betterend/generator.json b/archive/mythos_dmms2024/tree/client-overrides/config/betterend/generator.json new file mode 100644 index 0000000..f3d1664 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/betterend/generator.json @@ -0,0 +1,58 @@ +{ + "biomeMap": { + "biomeSizeCaves [default: 32]": 32 + }, + "portal": { + "hasPortal [default: true]": true, + "customEndPortal [default: true]": true + }, + "spikes": { + "hasSpikes [default: true]": true, + "customObsidianSpikes [default: true]": true + }, + "hasDragonFights [default: true]": true, + "chorusPlant": { + "changeChorusPlant [default: true]": true + }, + "customGenerator": { + "useNewGenerator [default: true]": true, + "generateCentralIsland [default: true]": true, + "endCityFailChance [default: 5]": 5, + "layers": { + "bigIslands": { + "distance[1-8192] [default: 300.0]": 300.0, + "scale[0.1-1024] [default: 200.0]": 200.0, + "averageHeight[0-1] [default: 0.546875]": 0.546875, + "heightVariation[0-1] [default: 0.078125]": 0.078125, + "coverage[0-1] [default: 0.5]": 0.5, + "hasCentralIsland [default: false]": false + }, + "mediumIslands": { + "distance[1-8192] [default: 150.0]": 150.0, + "scale[0.1-1024] [default: 100.0]": 100.0, + "averageHeight[0-1] [default: 0.546875]": 0.546875, + "heightVariation[0-1] [default: 0.15625]": 0.15625, + "coverage[0-1] [default: 0.5]": 0.5, + "hasCentralIsland [default: true]": true + }, + "smallIslands": { + "distance[1-8192] [default: 60.0]": 60.0, + "scale[0.1-1024] [default: 50.0]": 50.0, + "averageHeight[0-1] [default: 0.546875]": 0.546875, + "heightVariation[0-1] [default: 0.234375]": 0.234375, + "coverage[0-1] [default: 0.5]": 0.5, + "hasCentralIsland [default: false]": false + } + }, + "voidRingSize [default: 1000]": 1000 + }, + "generateObsidianPlatform [default: true]": true, + "spawn": { + "changeSpawn [default: false]": false, + "point": { + "x [default: 20]": 20, + "y [default: 65]": 65, + "z [default: 0]": 0 + } + } +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/betterend/items.json b/archive/mythos_dmms2024/tree/client-overrides/config/betterend/items.json new file mode 100644 index 0000000..094bb9c --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/betterend/items.json @@ -0,0 +1,144 @@ +{ + "items": { + "ender_dust [default: true]": true, + "ender_shard [default: true]": true, + "aeternium_ingot [default: true]": true, + "aeternium_forged_plate [default: true]": true, + "end_lily_leaf [default: true]": true, + "end_lily_leaf_dried [default: true]": true, + "crystal_shards [default: true]": true, + "raw_amber [default: true]": true, + "amber_gem [default: true]": true, + "glowing_bulb [default: true]": true, + "crystalline_sulphur [default: true]": true, + "hydralux_petal [default: true]": true, + "gelatine [default: true]": true, + "eternal_crystal [default: true]": true, + "enchanted_petal [default: true]": true, + "leather_stripe [default: true]": true, + "leather_wrapped_stick [default: true]": true, + "silk_fiber [default: true]": true, + "lumecorn_rod [default: true]": true, + "silk_moth_matrix [default: true]": true, + "enchanted_membrane [default: true]": true, + "music_disc_strange_and_alien [default: true]": true, + "music_disc_grasping_at_stars [default: true]": true, + "music_disc_endseeker [default: true]": true, + "music_disc_eo_dracona [default: true]": true, + "aeternium_helmet [default: true]": true, + "aeternium_chestplate [default: true]": true, + "aeternium_leggings [default: true]": true, + "aeternium_boots [default: true]": true, + "crystalite_helmet [default: true]": true, + "crystalite_chestplate [default: true]": true, + "crystalite_leggings [default: true]": true, + "crystalite_boots [default: true]": true, + "elytra_armored [default: true]": true, + "elytra_crystalite [default: true]": true, + "aeternium_shovel_head [default: true]": true, + "aeternium_pickaxe_head [default: true]": true, + "aeternium_axe_head [default: true]": true, + "aeternium_hoe_head [default: true]": true, + "aeternium_hammer_head [default: true]": true, + "aeternium_sword_blade [default: true]": true, + "aeternium_sword_handle [default: true]": true, + "shadow_berry_raw [default: true]": true, + "shadow_berry_cooked [default: true]": true, + "end_fish_raw [default: true]": true, + "end_fish_cooked [default: true]": true, + "spawn_egg_dragonfly [default: true]": true, + "spawn_egg_end_slime [default: true]": true, + "spawn_egg_end_fish [default: true]": true, + "spawn_egg_shadow_walker [default: true]": true, + "spawn_egg_cubozoa [default: true]": true, + "spawn_egg_silk_moth [default: true]": true, + "bucket_end_fish [default: true]": true, + "bucket_cubozoa [default: true]": true, + "sweet_berry_jelly [default: true]": true, + "shadow_berry_jelly [default: true]": true, + "blossom_berry_jelly [default: true]": true, + "blossom_berry [default: true]": true, + "amber_root_raw [default: true]": true, + "chorus_mushroom_raw [default: true]": true, + "chorus_mushroom_cooked [default: true]": true, + "bolux_mushroom_cooked [default: true]": true, + "cave_pumpkin_pie [default: true]": true, + "umbrella_cluster_juice [default: true]": true, + "handle_attachment_smithing_template [default: true]": true, + "leather_handle_attachment_smithing_template [default: true]": true, + "tool_assembly_smithing_template [default: true]": true, + "plate_upgrade_smithing_template [default: true]": true, + "thallasium_upgrade_smithing_template [default: true]": true, + "terminite_upgrade_smithing_template [default: true]": true, + "aeternium_upgrade_smithing_template [default: true]": true, + "netherite_upgrade_smithing_template [default: true]": true, + "thallasium_raw [default: true]": true, + "thallasium_nugget [default: true]": true, + "thallasium_ingot [default: true]": true, + "thallasium_shovel_head [default: true]": true, + "thallasium_pickaxe_head [default: true]": true, + "thallasium_axe_head [default: true]": true, + "thallasium_hoe_head [default: true]": true, + "thallasium_sword_blade [default: true]": true, + "thallasium_sword_handle [default: true]": true, + "thallasium_forged_plate [default: true]": true, + "terminite_nugget [default: true]": true, + "terminite_ingot [default: true]": true, + "terminite_shovel_head [default: true]": true, + "terminite_pickaxe_head [default: true]": true, + "terminite_axe_head [default: true]": true, + "terminite_hoe_head [default: true]": true, + "terminite_sword_blade [default: true]": true, + "terminite_sword_handle [default: true]": true, + "terminite_forged_plate [default: true]": true, + "guidebook [default: true]": true + }, + "musicDiscs": { + "music_disc_strange_and_alien [default: true]": true, + "music_disc_grasping_at_stars [default: true]": true, + "music_disc_endseeker [default: true]": true, + "music_disc_eo_dracona [default: true]": true + }, + "tools": { + "aeternium_shovel [default: true]": true, + "aeternium_sword [default: true]": true, + "aeternium_pickaxe [default: true]": true, + "aeternium_axe [default: true]": true, + "aeternium_hoe [default: true]": true, + "aeternium_hammer [default: true]": true, + "iron_hammer [default: true]": true, + "golden_hammer [default: true]": true, + "diamond_hammer [default: true]": true, + "netherite_hammer [default: true]": true, + "thallasium_shovel [default: true]": true, + "thallasium_sword [default: true]": true, + "thallasium_pickaxe [default: true]": true, + "thallasium_axe [default: true]": true, + "thallasium_hoe [default: true]": true, + "thallasium_hammer [default: true]": true, + "terminite_shovel [default: true]": true, + "terminite_sword [default: true]": true, + "terminite_pickaxe [default: true]": true, + "terminite_axe [default: true]": true, + "terminite_hoe [default: true]": true, + "terminite_hammer [default: true]": true + }, + "spawnEggs": { + "spawn_egg_dragonfly [default: true]": true, + "spawn_egg_end_slime [default: true]": true, + "spawn_egg_end_fish [default: true]": true, + "spawn_egg_shadow_walker [default: true]": true, + "spawn_egg_cubozoa [default: true]": true, + "spawn_egg_silk_moth [default: true]": true + }, + "armour": { + "thallasium_helmet [default: true]": true, + "thallasium_chestplate [default: true]": true, + "thallasium_leggings [default: true]": true, + "thallasium_boots [default: true]": true, + "terminite_helmet [default: true]": true, + "terminite_chestplate [default: true]": true, + "terminite_leggings [default: true]": true, + "terminite_boots [default: true]": true + } +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/betterend/portals.json b/archive/mythos_dmms2024/tree/client-overrides/config/betterend/portals.json new file mode 100644 index 0000000..dd5a230 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/betterend/portals.json @@ -0,0 +1,11 @@ +{ + "portals": [ + { + "dimension": "minecraft:overworld", + "item": "betterend:eternal_crystal", + "colorRed": 255, + "colorGreen": 255, + "colorBlue": 255 + } + ] +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/betternether/biomes.json b/archive/mythos_dmms2024/tree/client-overrides/config/betternether/biomes.json new file mode 100644 index 0000000..3b5cd8b --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/betternether/biomes.json @@ -0,0 +1,469 @@ +{ + "biomesoplenty": { + "withered_abyss": { + "spawn": { + "ambient": { + "betternether": { + "firefly": { + "weight [default: 5]": 5, + "minGroupSize [default: 1]": 1, + "maxGroupSize [default: 3]": 3 + }, + "hydrogen_jellyfish": { + "weight [default: 5]": 5, + "minGroupSize [default: 2]": 2, + "maxGroupSize [default: 6]": 6 + } + } + }, + "monster": { + "betternether": { + "naga": { + "weight [default: 8]": 8, + "minGroupSize [default: 3]": 3, + "maxGroupSize [default: 5]": 5 + } + } + } + } + }, + "crystalline_chasm": { + "spawn": { + "ambient": { + "betternether": { + "firefly": { + "weight [default: 5]": 5, + "minGroupSize [default: 1]": 1, + "maxGroupSize [default: 3]": 3 + }, + "hydrogen_jellyfish": { + "weight [default: 5]": 5, + "minGroupSize [default: 2]": 2, + "maxGroupSize [default: 6]": 6 + } + } + }, + "monster": { + "betternether": { + "naga": { + "weight [default: 8]": 8, + "minGroupSize [default: 3]": 3, + "maxGroupSize [default: 5]": 5 + } + } + } + } + }, + "undergrowth": { + "spawn": { + "ambient": { + "betternether": { + "firefly": { + "weight [default: 5]": 5, + "minGroupSize [default: 1]": 1, + "maxGroupSize [default: 3]": 3 + }, + "hydrogen_jellyfish": { + "weight [default: 5]": 5, + "minGroupSize [default: 2]": 2, + "maxGroupSize [default: 6]": 6 + } + } + }, + "monster": { + "betternether": { + "naga": { + "weight [default: 8]": 8, + "minGroupSize [default: 3]": 3, + "maxGroupSize [default: 5]": 5 + } + } + } + } + }, + "erupting_inferno": { + "spawn": { + "ambient": { + "betternether": { + "firefly": { + "weight [default: 5]": 5, + "minGroupSize [default: 1]": 1, + "maxGroupSize [default: 3]": 3 + }, + "hydrogen_jellyfish": { + "weight [default: 5]": 5, + "minGroupSize [default: 2]": 2, + "maxGroupSize [default: 6]": 6 + } + } + }, + "monster": { + "betternether": { + "naga": { + "weight [default: 8]": 8, + "minGroupSize [default: 3]": 3, + "maxGroupSize [default: 5]": 5 + } + } + } + } + }, + "visceral_heap": { + "spawn": { + "ambient": { + "betternether": { + "firefly": { + "weight [default: 5]": 5, + "minGroupSize [default: 1]": 1, + "maxGroupSize [default: 3]": 3 + }, + "hydrogen_jellyfish": { + "weight [default: 5]": 5, + "minGroupSize [default: 2]": 2, + "maxGroupSize [default: 6]": 6 + } + } + }, + "monster": { + "betternether": { + "naga": { + "weight [default: 8]": 8, + "minGroupSize [default: 3]": 3, + "maxGroupSize [default: 5]": 5 + } + } + } + } + } + }, + "minecraft": { + "crimson_forest": { + "spawn": { + "ambient": { + "betternether": { + "firefly": { + "weight [default: 15]": 15, + "minGroupSize [default: 1]": 1, + "maxGroupSize [default: 3]": 3 + }, + "hydrogen_jellyfish": { + "weight [default: 5]": 5, + "minGroupSize [default: 2]": 2, + "maxGroupSize [default: 6]": 6 + } + } + }, + "monster": { + "betternether": { + "naga": { + "weight [default: 0]": 0, + "minGroupSize [default: 3]": 3, + "maxGroupSize [default: 5]": 5 + } + } + } + } + }, + "warped_forest": { + "spawn": { + "ambient": { + "betternether": { + "firefly": { + "weight [default: 5]": 5, + "minGroupSize [default: 1]": 1, + "maxGroupSize [default: 3]": 3 + }, + "hydrogen_jellyfish": { + "weight [default: 5]": 5, + "minGroupSize [default: 2]": 2, + "maxGroupSize [default: 6]": 6 + } + } + }, + "monster": { + "betternether": { + "naga": { + "weight [default: 8]": 8, + "minGroupSize [default: 3]": 3, + "maxGroupSize [default: 5]": 5 + } + } + } + } + }, + "nether_wastes": { + "spawn": { + "ambient": { + "betternether": { + "firefly": { + "weight [default: 5]": 5, + "minGroupSize [default: 1]": 1, + "maxGroupSize [default: 3]": 3 + }, + "hydrogen_jellyfish": { + "weight [default: 5]": 5, + "minGroupSize [default: 2]": 2, + "maxGroupSize [default: 6]": 6 + } + } + }, + "monster": { + "betternether": { + "naga": { + "weight [default: 8]": 8, + "minGroupSize [default: 3]": 3, + "maxGroupSize [default: 5]": 5 + } + } + } + } + }, + "basalt_deltas": { + "spawn": { + "ambient": { + "betternether": { + "firefly": { + "weight [default: 5]": 5, + "minGroupSize [default: 1]": 1, + "maxGroupSize [default: 3]": 3 + }, + "hydrogen_jellyfish": { + "weight [default: 5]": 5, + "minGroupSize [default: 2]": 2, + "maxGroupSize [default: 6]": 6 + } + } + }, + "monster": { + "betternether": { + "naga": { + "weight [default: 8]": 8, + "minGroupSize [default: 3]": 3, + "maxGroupSize [default: 5]": 5 + } + } + } + } + }, + "soul_sand_valley": { + "spawn": { + "ambient": { + "betternether": { + "firefly": { + "weight [default: 5]": 5, + "minGroupSize [default: 1]": 1, + "maxGroupSize [default: 3]": 3 + }, + "hydrogen_jellyfish": { + "weight [default: 5]": 5, + "minGroupSize [default: 2]": 2, + "maxGroupSize [default: 6]": 6 + } + } + }, + "monster": { + "betternether": { + "naga": { + "weight [default: 8]": 8, + "minGroupSize [default: 3]": 3, + "maxGroupSize [default: 5]": 5 + } + } + } + } + } + }, + "regions_unexplored": { + "glistering_meadow": { + "spawn": { + "ambient": { + "betternether": { + "firefly": { + "weight [default: 5]": 5, + "minGroupSize [default: 1]": 1, + "maxGroupSize [default: 3]": 3 + }, + "hydrogen_jellyfish": { + "weight [default: 5]": 5, + "minGroupSize [default: 2]": 2, + "maxGroupSize [default: 6]": 6 + } + } + }, + "monster": { + "betternether": { + "naga": { + "weight [default: 8]": 8, + "minGroupSize [default: 3]": 3, + "maxGroupSize [default: 5]": 5 + } + } + } + } + }, + "infernal_holt": { + "spawn": { + "ambient": { + "betternether": { + "firefly": { + "weight [default: 5]": 5, + "minGroupSize [default: 1]": 1, + "maxGroupSize [default: 3]": 3 + }, + "hydrogen_jellyfish": { + "weight [default: 5]": 5, + "minGroupSize [default: 2]": 2, + "maxGroupSize [default: 6]": 6 + } + } + }, + "monster": { + "betternether": { + "naga": { + "weight [default: 8]": 8, + "minGroupSize [default: 3]": 3, + "maxGroupSize [default: 5]": 5 + } + } + } + } + }, + "redstone_abyss": { + "spawn": { + "ambient": { + "betternether": { + "firefly": { + "weight [default: 5]": 5, + "minGroupSize [default: 1]": 1, + "maxGroupSize [default: 3]": 3 + }, + "hydrogen_jellyfish": { + "weight [default: 5]": 5, + "minGroupSize [default: 2]": 2, + "maxGroupSize [default: 6]": 6 + } + } + }, + "monster": { + "betternether": { + "naga": { + "weight [default: 8]": 8, + "minGroupSize [default: 3]": 3, + "maxGroupSize [default: 5]": 5 + } + } + } + } + }, + "blackstone_basin": { + "spawn": { + "ambient": { + "betternether": { + "firefly": { + "weight [default: 5]": 5, + "minGroupSize [default: 1]": 1, + "maxGroupSize [default: 3]": 3 + }, + "hydrogen_jellyfish": { + "weight [default: 5]": 5, + "minGroupSize [default: 2]": 2, + "maxGroupSize [default: 6]": 6 + } + } + }, + "monster": { + "betternether": { + "naga": { + "weight [default: 8]": 8, + "minGroupSize [default: 3]": 3, + "maxGroupSize [default: 5]": 5 + } + } + } + } + }, + "mycotoxic_undergrowth": { + "spawn": { + "ambient": { + "betternether": { + "firefly": { + "weight [default: 5]": 5, + "minGroupSize [default: 1]": 1, + "maxGroupSize [default: 3]": 3 + }, + "hydrogen_jellyfish": { + "weight [default: 5]": 5, + "minGroupSize [default: 2]": 2, + "maxGroupSize [default: 6]": 6 + } + } + }, + "monster": { + "betternether": { + "naga": { + "weight [default: 8]": 8, + "minGroupSize [default: 3]": 3, + "maxGroupSize [default: 5]": 5 + } + } + } + } + } + }, + "gardens_of_the_dead": { + "soulblight_forest": { + "spawn": { + "ambient": { + "betternether": { + "firefly": { + "weight [default: 5]": 5, + "minGroupSize [default: 1]": 1, + "maxGroupSize [default: 3]": 3 + }, + "hydrogen_jellyfish": { + "weight [default: 5]": 5, + "minGroupSize [default: 2]": 2, + "maxGroupSize [default: 6]": 6 + } + } + }, + "monster": { + "betternether": { + "naga": { + "weight [default: 8]": 8, + "minGroupSize [default: 3]": 3, + "maxGroupSize [default: 5]": 5 + } + } + } + } + }, + "whistling_woods": { + "spawn": { + "ambient": { + "betternether": { + "firefly": { + "weight [default: 5]": 5, + "minGroupSize [default: 1]": 1, + "maxGroupSize [default: 3]": 3 + }, + "hydrogen_jellyfish": { + "weight [default: 5]": 5, + "minGroupSize [default: 2]": 2, + "maxGroupSize [default: 6]": 6 + } + } + }, + "monster": { + "betternether": { + "naga": { + "weight [default: 8]": 8, + "minGroupSize [default: 3]": 3, + "maxGroupSize [default: 5]": 5 + } + } + } + } + } + } +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/betternether/blocks.json b/archive/mythos_dmms2024/tree/client-overrides/config/betternether/blocks.json new file mode 100644 index 0000000..3acb190 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/betternether/blocks.json @@ -0,0 +1,257 @@ +{ + "blocks": { + "nether_reed_stem [default: true]": true, + "willow_leaves [default: true]": true, + "cincinnasite_ore [default: true]": true, + "cincinnasite_block [default: true]": true, + "cincinnasite_forged [default: true]": true, + "cincinnasite_pillar [default: true]": true, + "cincinnasite_bricks [default: true]": true, + "cincinnasite_brick_plate [default: true]": true, + "cincinnasite_stairs [default: true]": true, + "cincinnasite_slab [default: true]": true, + "taburet_cincinnasite [default: true]": true, + "chair_cincinnasite [default: true]": true, + "bar_stool_cincinnasite [default: true]": true, + "cincinnasite_button [default: true]": true, + "cincinnasite_plate [default: true]": true, + "cincinnasite_lantern [default: true]": true, + "cincinnasite_tile_large [default: true]": true, + "cincinnasite_tile_small [default: true]": true, + "cincinnasite_carved [default: true]": true, + "cincinnasite_wall [default: true]": true, + "cincinnasite_bricks_pillar [default: true]": true, + "cincinnasite_bars [default: true]": true, + "cincinnasite_pedestal [default: true]": true, + "cincinnasite_frame [default: true]": true, + "cincinnasite_lantern_small [default: true]": true, + "cincinnasite_chain [default: true]": true, + "nether_ruby_ore [default: true]": true, + "nether_ruby_block [default: true]": true, + "nether_ruby_stairs [default: true]": true, + "nether_ruby_slab [default: true]": true, + "nether_lapis_ore [default: true]": true, + "nether_redstone_ore [default: true]": true, + "nether_brick_tile_large [default: true]": true, + "nether_brick_tile_small [default: true]": true, + "nether_brick_wall [default: true]": true, + "nether_brick_tile_slab [default: true]": true, + "nether_brick_tile_stairs [default: true]": true, + "bone_block [default: true]": true, + "bone_stairs [default: true]": true, + "bone_slab [default: true]": true, + "bone_button [default: true]": true, + "bone_plate [default: true]": true, + "bone_wall [default: true]": true, + "bone_tile [default: true]": true, + "bone_reed_door [default: true]": true, + "bone_cincinnasite_door [default: true]": true, + "quartz_glass [default: true]": true, + "quartz_glass_framed [default: true]": true, + "quartz_glass_framed_white [default: true]": true, + "quartz_glass_framed_orange [default: true]": true, + "quartz_glass_framed_magenta [default: true]": true, + "quartz_glass_framed_light_blue [default: true]": true, + "quartz_glass_framed_yellow [default: true]": true, + "quartz_glass_framed_lime [default: true]": true, + "quartz_glass_framed_pink [default: true]": true, + "quartz_glass_framed_gray [default: true]": true, + "quartz_glass_framed_light_gray [default: true]": true, + "quartz_glass_framed_cyan [default: true]": true, + "quartz_glass_framed_purple [default: true]": true, + "quartz_glass_framed_blue [default: true]": true, + "quartz_glass_framed_brown [default: true]": true, + "quartz_glass_framed_green [default: true]": true, + "quartz_glass_framed_red [default: true]": true, + "quartz_glass_framed_black [default: true]": true, + "quartz_glass_pane [default: true]": true, + "quartz_glass_pane_white [default: true]": true, + "quartz_glass_pane_orange [default: true]": true, + "quartz_glass_pane_magenta [default: true]": true, + "quartz_glass_pane_light_blue [default: true]": true, + "quartz_glass_pane_yellow [default: true]": true, + "quartz_glass_pane_lime [default: true]": true, + "quartz_glass_pane_pink [default: true]": true, + "quartz_glass_pane_gray [default: true]": true, + "quartz_glass_pane_light_gray [default: true]": true, + "quartz_glass_pane_cyan [default: true]": true, + "quartz_glass_pane_purple [default: true]": true, + "quartz_glass_pane_blue [default: true]": true, + "quartz_glass_pane_brown [default: true]": true, + "quartz_glass_pane_green [default: true]": true, + "quartz_glass_pane_red [default: true]": true, + "quartz_glass_pane_black [default: true]": true, + "quartz_glass_framed_pane [default: true]": true, + "quartz_glass_framed_pane_white [default: true]": true, + "quartz_glass_framed_pane_orange [default: true]": true, + "quartz_glass_framed_pane_magenta [default: true]": true, + "quartz_glass_framed_pane_light_blue [default: true]": true, + "quartz_glass_framed_pane_yellow [default: true]": true, + "quartz_glass_framed_pane_lime [default: true]": true, + "quartz_glass_framed_pane_pink [default: true]": true, + "quartz_glass_framed_pane_gray [default: true]": true, + "quartz_glass_framed_pane_light_gray [default: true]": true, + "quartz_glass_framed_pane_cyan [default: true]": true, + "quartz_glass_framed_pane_purple [default: true]": true, + "quartz_glass_framed_pane_blue [default: true]": true, + "quartz_glass_framed_pane_brown [default: true]": true, + "quartz_glass_framed_pane_green [default: true]": true, + "quartz_glass_framed_pane_red [default: true]": true, + "quartz_glass_framed_pane_black [default: true]": true, + "quartz_glass_white [default: true]": true, + "quartz_glass_orange [default: true]": true, + "quartz_glass_magenta [default: true]": true, + "quartz_glass_light_blue [default: true]": true, + "quartz_glass_yellow [default: true]": true, + "quartz_glass_lime [default: true]": true, + "quartz_glass_pink [default: true]": true, + "quartz_glass_gray [default: true]": true, + "quartz_glass_light_gray [default: true]": true, + "quartz_glass_cyan [default: true]": true, + "quartz_glass_purple [default: true]": true, + "quartz_glass_blue [default: true]": true, + "quartz_glass_brown [default: true]": true, + "quartz_glass_green [default: true]": true, + "quartz_glass_red [default: true]": true, + "quartz_glass_black [default: true]": true, + "blue_weeping_obsidian [default: true]": true, + "weeping_obsidian [default: true]": true, + "blue_crying_obsidian [default: true]": true, + "obsidian_bricks [default: true]": true, + "obsidian_bricks_stairs [default: true]": true, + "obsidian_bricks_slab [default: true]": true, + "obsidian_tile [default: true]": true, + "obsidian_tile_small [default: true]": true, + "obsidian_tile_stairs [default: true]": true, + "obsidian_tile_slab [default: true]": true, + "obsidian_rod_tiles [default: true]": true, + "obsidian_glass [default: true]": true, + "obsidian_glass_pane [default: true]": true, + "blue_obsidian [default: true]": true, + "blue_obsidian_bricks [default: true]": true, + "blue_obsidian_bricks_stairs [default: true]": true, + "blue_obsidian_bricks_slab [default: true]": true, + "blue_obsidian_tile [default: true]": true, + "blue_obsidian_tile_small [default: true]": true, + "blue_obsidian_tile_stairs [default: true]": true, + "blue_obsidian_tile_slab [default: true]": true, + "blue_obsidian_rod_tiles [default: true]": true, + "blue_obsidian_glass [default: true]": true, + "blue_obsidian_glass_pane [default: true]": true, + "soul_sandstone [default: true]": true, + "soul_sandstone_cut [default: true]": true, + "soul_sandstone_cut_stairs [default: true]": true, + "soul_sandstone_cut_slab [default: true]": true, + "soul_sandstone_wall [default: true]": true, + "soul_sandstone_smooth [default: true]": true, + "soul_sandstone_chiseled [default: true]": true, + "soul_sandstone_stairs [default: true]": true, + "soul_sandstone_smooth_stairs [default: true]": true, + "soul_sandstone_slab [default: true]": true, + "soul_sandstone_smooth_slab [default: true]": true, + "basalt_bricks [default: true]": true, + "basalt_bricks_stairs [default: true]": true, + "basalt_bricks_slab [default: true]": true, + "basalt_bricks_wall [default: true]": true, + "basalt_slab [default: true]": true, + "orange_mushroom [default: true]": true, + "red_mold [default: true]": true, + "gray_mold [default: true]": true, + "lucis_spore [default: true]": true, + "giant_lucis [default: true]": true, + "giant_mold_sapling [default: true]": true, + "jellyfish_mushroom_sapling [default: true]": true, + "eye_seed [default: true]": true, + "nether_grass [default: true]": true, + "swamp_grass [default: true]": true, + "soul_grass [default: true]": true, + "jungle_plant [default: true]": true, + "bone_grass [default: true]": true, + "sepia_bone_grass [default: true]": true, + "black_vine [default: true]": true, + "blooming_vine [default: true]": true, + "golden_vine [default: true]": true, + "lumabus_vine [default: true]": true, + "golden_lumabus_vine [default: true]": true, + "soul_vein [default: true]": true, + "bone_mushroom [default: true]": true, + "black_bush [default: true]": true, + "ink_bush [default: true]": true, + "ink_bush_seed [default: true]": true, + "smoker [default: true]": true, + "egg_plant [default: true]": true, + "black_apple [default: true]": true, + "black_apple_seed [default: true]": true, + "magma_flower [default: true]": true, + "feather_fern [default: true]": true, + "moss_cover [default: true]": true, + "neon_equisetum [default: true]": true, + "hook_mushroom [default: true]": true, + "whispering_gourd_vine [default: true]": true, + "whispering_gourd [default: true]": true, + "whispering_gourd_lantern [default: true]": true, + "agave [default: true]": true, + "barrel_cactus [default: true]": true, + "nether_cactus [default: true]": true, + "wall_moss [default: true]": true, + "wall_mushroom_brown [default: true]": true, + "wall_mushroom_red [default: true]": true, + "jungle_moss [default: true]": true, + "pig_statue_respawner [default: true]": true, + "cincinnasite_pot [default: true]": true, + "brick_pot [default: true]": true, + "geyser [default: true]": true, + "netherrack_stalactite [default: true]": true, + "glowstone_stalactite [default: true]": true, + "blackstone_stalactite [default: true]": true, + "basalt_stalactite [default: true]": true, + "bone_stalactite [default: true]": true, + "cincinnasite_fire_bowl [default: true]": true, + "bricks_fire_bowl [default: true]": true, + "netherite_fire_bowl [default: true]": true, + "cincinnasite_fire_bowl_soul [default: true]": true, + "bricks_fire_bowl_soul [default: true]": true, + "netherite_fire_bowl_soul [default: true]": true, + "netherrack_moss [default: true]": true, + "nether_mycelium [default: true]": true, + "jungle_grass [default: true]": true, + "mushroom_grass [default: true]": true, + "sepia_mushroom_grass [default: true]": true, + "swampland_grass [default: true]": true, + "farmland [default: true]": true, + "ceiling_mushrooms [default: true]": true, + "roof_tile_nether_bricks [default: true]": true, + "roof_tile_nether_bricks_stairs [default: true]": true, + "roof_tile_nether_bricks_slab [default: true]": true, + "roof_tile_cincinnasite [default: true]": true, + "roof_tile_cincinnasite_stairs [default: true]": true, + "roof_tile_cincinnasite_slab [default: true]": true, + "blackstone_furnace [default: true]": true, + "basalt_furnace [default: true]": true, + "netherrack_furnace [default: true]": true, + "cincinnasite_forge [default: true]": true, + "nether_brewing_stand [default: true]": true, + "cincinnasite_anvil [default: true]": true, + "chest_of_drawers [default: true]": true, + "rubeus_leaves [default: true]": true, + "mushroom_fir_trimmed_chest [default: true]": true, + "anchor_tree_leaves [default: true]": true, + "anchor_tree_vine [default: true]": true, + "nether_sakura_leaves [default: true]": true, + "soul_lily [default: true]": true, + "soul_lily_sapling [default: true]": true, + "red_large_mushroom [default: true]": true, + "brown_large_mushroom [default: true]": true, + "lucis_mushroom [default: true]": true, + "giant_mold [default: true]": true, + "jellyfish_mushroom [default: true]": true, + "eyeball [default: true]": true, + "eyeball_small [default: true]": true, + "eye_vine [default: true]": true, + "potted_plant [default: true]": true, + "veined_sand [default: true]": true, + "lumabus_seed [default: true]": true, + "golden_lumabus_seed [default: true]": true + }, + "betternether [default: true]": true +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/betternether/generator.json b/archive/mythos_dmms2024/tree/client-overrides/config/betternether/generator.json new file mode 100644 index 0000000..82c3455 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/betternether/generator.json @@ -0,0 +1,47 @@ +{ + "generator": { + "world": { + "ores": { + "cincinnasite": { + "vein_count [default: 10]": 10, + "vein_size [default: 8]": 8, + "air_discard_chance [default: 0.0]": 0.0 + }, + "nether_ruby": { + "vein_count [default: 3]": 3, + "vein_size [default: 8]": 8, + "air_discard_chance [default: 0.0]": 0.0 + }, + "nether_ruby_soul": { + "vein_count [default: 5]": 5, + "vein_size [default: 5]": 5, + "air_discard_chance [default: 0.1]": 0.1 + }, + "nether_ruby_large": { + "vein_count [default: 5]": 5, + "vein_size [default: 5]": 5, + "air_discard_chance [default: 0.1]": 0.1 + }, + "nether_ruby_rare": { + "vein_count [default: 2]": 2, + "vein_size [default: 12]": 12, + "air_discard_chance [default: 0.0]": 0.0 + }, + "nether_lapis": { + "vein_count [default: 14]": 14, + "vein_size [default: 4]": 4, + "air_discard_chance [default: 0.0]": 0.0 + }, + "nether_redstone": { + "vein_count [default: 1]": 1, + "vein_size [default: 16]": 16, + "air_discard_chance [default: 0.3]": 0.3 + } + }, + "cities": { + "distance [default: 64]": 64, + "overworld [default: false]": false + } + } + } +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/betternether/items.json b/archive/mythos_dmms2024/tree/client-overrides/config/betternether/items.json new file mode 100644 index 0000000..af492b8 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/betternether/items.json @@ -0,0 +1,90 @@ +{ + "items": { + "black_apple [default: true]": true, + "stalagnate_bowl [default: true]": true, + "stalagnate_bowl_wart [default: true]": true, + "stalagnate_bowl_mushroom [default: true]": true, + "stalagnate_bowl_apple [default: true]": true, + "hook_mushroom_cooked [default: true]": true, + "cincinnasite [default: true]": true, + "cincinnasite_ingot [default: true]": true, + "nether_ruby [default: true]": true, + "bowl_upgrade_smithing_template [default: true]": true, + "flaming_ruby_upgrade_smithing_template [default: true]": true, + "cincinnasite_diamond_upgrade_smithing_template [default: true]": true, + "cincinnasite_hammer [default: true]": true, + "cincinnasite_hammer_diamond [default: true]": true, + "nether_ruby_hammer [default: true]": true, + "cincinnasite_excavator [default: true]": true, + "cincinnasite_excavator_diamond [default: true]": true, + "nether_ruby_excavator [default: true]": true, + "glowstone_pile [default: true]": true, + "lapis_pile [default: true]": true, + "agave_leaf [default: true]": true, + "agave_medicine [default: true]": true, + "herbal_medicine [default: true]": true, + "nether_reed_boat [default: true]": true, + "nether_reed_chest_boat [default: true]": true, + "stalagnate_boat [default: true]": true, + "stalagnate_chest_boat [default: true]": true, + "willow_boat [default: true]": true, + "willow_chest_boat [default: true]": true, + "wart_boat [default: true]": true, + "wart_chest_boat [default: true]": true, + "warped_boat [default: true]": true, + "warped_chest_boat [default: true]": true, + "crimson_boat [default: true]": true, + "crimson_chest_boat [default: true]": true, + "rubeus_boat [default: true]": true, + "rubeus_chest_boat [default: true]": true, + "mushroom_fir_boat [default: true]": true, + "mushroom_fir_chest_boat [default: true]": true, + "nether_mushroom_boat [default: true]": true, + "nether_mushroom_chest_boat [default: true]": true, + "anchor_tree_boat [default: true]": true, + "anchor_tree_chest_boat [default: true]": true, + "nether_sakura_boat [default: true]": true, + "nether_sakura_chest_boat [default: true]": true, + "spawn_egg_firefly [default: true]": true, + "spawn_egg_hydrogen_jellyfish [default: true]": true, + "spawn_egg_naga [default: true]": true, + "spawn_egg_flying_pig [default: true]": true, + "spawn_egg_jungle_skeleton [default: true]": true, + "spawn_egg_skull [default: true]": true + }, + "tools": { + "cincinnasite_axe [default: true]": true, + "cincinnasite_sword [default: true]": true, + "cincinnasite_pickaxe [default: true]": true, + "cincinnasite_shovel [default: true]": true, + "cincinnasite_hoe [default: true]": true, + "cincinnasite_leggings [default: true]": true, + "cincinnasite_shears [default: true]": true, + "cincinnasite_helmet [default: true]": true, + "cincinnasite_chestplate [default: true]": true, + "cincinnasite_boots [default: true]": true, + "nether_ruby_axe [default: true]": true, + "nether_ruby_sword [default: true]": true, + "nether_ruby_pickaxe [default: true]": true, + "nether_ruby_shovel [default: true]": true, + "nether_ruby_hoe [default: true]": true, + "nether_ruby_leggings [default: true]": true, + "nether_ruby_helmet [default: true]": true, + "nether_ruby_chestplate [default: true]": true, + "nether_ruby_boots [default: true]": true, + "cincinnasite_axe_diamond [default: true]": true, + "cincinnasite_sword_diamond [default: true]": true, + "cincinnasite_pickaxe_diamond [default: true]": true, + "cincinnasite_shovel_diamond [default: true]": true, + "cincinnasite_hoe_diamond [default: true]": true, + "flaming_ruby_axe [default: true]": true, + "flaming_ruby_sword [default: true]": true, + "flaming_ruby_pickaxe [default: true]": true, + "flaming_ruby_shovel [default: true]": true, + "flaming_ruby_hoe [default: true]": true, + "flaming_ruby_leggings [default: true]": true, + "flaming_ruby_helmet [default: true]": true, + "flaming_ruby_chestplate [default: true]": true, + "flaming_ruby_boots [default: true]": true + } +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/betternether/main.json b/archive/mythos_dmms2024/tree/client-overrides/config/betternether/main.json new file mode 100644 index 0000000..7e22218 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/betternether/main.json @@ -0,0 +1,15 @@ +{ + "improvement": { + "smaller_armor_offset [default: true]": true, + "lavafall_particles [default: true]": true, + "fog_density[vanilla: 1.0] [default: 0.75]": 0.75 + }, + "egg_plant": { + "mob_damage [default: true]": true, + "player_damage [default: true]": true + }, + "respawn_statue": { + "respawn_item [default: minecraft:glowstone]": "minecraft:glowstone", + "item_count [default: 4]": 4 + } +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/betternether/mobs.json b/archive/mythos_dmms2024/tree/client-overrides/config/betternether/mobs.json new file mode 100644 index 0000000..9f67797 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/betternether/mobs.json @@ -0,0 +1,16 @@ +{ + "mobs": { + "spawn_egg_firefly [default: true]": true, + "spawn_egg_hydrogen_jellyfish [default: true]": true, + "spawn_egg_naga [default: true]": true, + "spawn_egg_flying_pig [default: true]": true, + "spawn_egg_jungle_skeleton [default: true]": true, + "spawn_egg_skull [default: true]": true + }, + "firefly [default: true]": true, + "hydrogen_jellyfish [default: true]": true, + "naga [default: true]": true, + "flying_pig [default: true]": true, + "jungle_skeleton [default: true]": true, + "skull [default: true]": true +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/blue_skies-client.toml b/archive/mythos_dmms2024/tree/client-overrides/config/blue_skies-client.toml new file mode 100644 index 0000000..14774c1 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/blue_skies-client.toml @@ -0,0 +1,37 @@ + +[Visuals] + # + # Should blue skies override the title screen panorama. + # Default: true + custom_panorama = false + # + # Whether or not brightness should be capped when inside the dimensions for aesthetic purposes. + # Default: true + limit_brightness = true + +["Inventory Tabs"] + # + # If set to true, inventory tabs will use simple buttons that can be placed anywhere on the screen. + # Default: false + use_simple_inventory_tabs = false + + ["Inventory Tabs"."Sliding Tabs"] + # + # If set to true, inventory tabs appear on the bottom left corner instead of the bottom right. + # Default: false + left_align = true + + ["Inventory Tabs".Buttons] + # + # The x position of the inventory tabs. + # Default: -88 + x = -88 + # + # The y position of the inventory tabs. + # Default: -83 + y = -83 + # + # If set to true, inventory tabs are sorted vertically. If set to false, they are sorted horizontally. + # Default: false + is_vertical = false + diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/camerautils/camerautils.properties b/archive/mythos_dmms2024/tree/client-overrides/config/camerautils/camerautils.properties new file mode 100644 index 0000000..6766aae --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/camerautils/camerautils.properties @@ -0,0 +1,25 @@ +smoothness=0.0 +min_smoothness=40.0 +max_smoothness=100.0 +cinematic_camera_modifier=1.0 +zoom=1.0 +zoom_sensitivity=0.01 +third_person_zoom=4.0 +third_person_zoom_sensitivity=0.1 +third_person_cam_1_offset_x=1.2000000000000002 +third_person_cam_1_offset_y=-0.5 +third_person_cam_1_offset_z=-0.4 +third_person_cam_1_inverted=true +third_person_cam_1_hide_gui=true +third_person_cam_1_rotation_x=-3.0 +third_person_cam_2_offset_x=-4.0 +third_person_cam_2_offset_y=0.0 +third_person_cam_2_offset_z=0.0 +third_person_cam_2_inverted=false +third_person_cam_2_hide_gui=false +third_person_cam_2_rotation_x=0.0 +modifier_key=RIGHT_ALT +gui_opacity=1.0 +zoom_animation_from=1.0 +zoom_animation_to=1.0 +zoom_animation_duration=1 diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/capes.json5 b/archive/mythos_dmms2024/tree/client-overrides/config/capes.json5 new file mode 100644 index 0000000..0bf5504 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/capes.json5 @@ -0,0 +1,11 @@ +{ + "clientCapeType": "CUSTOM", + "enableOptifine": false, + "enableLabyMod": false, + "enableWynntils": false, + "enableMinecraftCapesMod": false, + "enableCosmetica": false, + "enableCloaksPlus": false, + "enableCustom": true, + "enableElytraTexture": true +} diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/cull-less-leaves.json b/archive/mythos_dmms2024/tree/client-overrides/config/cull-less-leaves.json new file mode 100644 index 0000000..537fbf6 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/cull-less-leaves.json @@ -0,0 +1,4 @@ +{ + "enabled": true, + "depth": 2 +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/dungeonsartifacts-client.toml b/archive/mythos_dmms2024/tree/client-overrides/config/dungeonsartifacts-client.toml new file mode 100644 index 0000000..1b03b44 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/dungeonsartifacts-client.toml @@ -0,0 +1,7 @@ + +["Configs for Dungeons Artifacts"] + #default: -94 + "Soul HUD X" = -1 + #default: 54 + "Soul HUD Y" = 50 + diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/dynamic_fps.json b/archive/mythos_dmms2024/tree/client-overrides/config/dynamic_fps.json new file mode 100644 index 0000000..81f58d3 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/dynamic_fps.json @@ -0,0 +1 @@ +{"idle_time":0,"states":{"hovered":{"graphics_state":"default","show_toasts":true,"run_garbage_collector":false,"frame_rate_target":60,"volume_multipliers":{"extrasounds$chat":1.0,"neutral":1.0,"hostile":1.0,"players":1.0,"extrasounds$chat_mention":1.0,"voice":1.0,"extrasounds$action":1.0,"weather":1.0,"extrasounds$hotbar":1.0,"extrasounds$master":1.0,"extrasounds$item_drop":1.0,"extrasounds$inventory":1.0,"extrasounds$effects":1.0,"master":1.0,"records":1.0,"blocks":1.0,"ambient":1.0,"music":1.0,"extrasounds$typing":1.0}},"unfocused":{"graphics_state":"default","show_toasts":false,"run_garbage_collector":false,"frame_rate_target":1,"volume_multipliers":{"extrasounds$chat":1.0,"neutral":1.0,"hostile":1.0,"players":1.0,"extrasounds$chat_mention":1.0,"voice":1.0,"extrasounds$action":1.0,"weather":1.0,"extrasounds$hotbar":1.0,"extrasounds$master":1.0,"extrasounds$item_drop":1.0,"extrasounds$inventory":1.0,"extrasounds$effects":1.0,"master":0.25,"records":1.0,"blocks":1.0,"ambient":1.0,"music":1.0,"extrasounds$typing":1.0}},"abandoned":{"graphics_state":"default","show_toasts":false,"run_garbage_collector":false,"frame_rate_target":10,"volume_multipliers":{"extrasounds$chat":1.0,"neutral":1.0,"hostile":1.0,"players":1.0,"extrasounds$chat_mention":1.0,"voice":1.0,"extrasounds$action":1.0,"weather":1.0,"extrasounds$hotbar":1.0,"extrasounds$master":1.0,"extrasounds$item_drop":1.0,"extrasounds$inventory":1.0,"extrasounds$effects":1.0,"master":1.0,"records":1.0,"blocks":1.0,"ambient":1.0,"music":1.0,"extrasounds$typing":1.0}},"invisible":{"graphics_state":"default","show_toasts":false,"run_garbage_collector":false,"frame_rate_target":1,"volume_multipliers":{"extrasounds$chat":1.0,"neutral":1.0,"hostile":1.0,"players":1.0,"extrasounds$chat_mention":1.0,"voice":1.0,"extrasounds$action":1.0,"weather":1.0,"extrasounds$hotbar":1.0,"extrasounds$master":1.0,"extrasounds$item_drop":1.0,"extrasounds$inventory":1.0,"extrasounds$effects":1.0,"master":0.25,"records":1.0,"blocks":1.0,"ambient":1.0,"music":1.0,"extrasounds$typing":1.0}}}}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/dynamiccrosshair.json5 b/archive/mythos_dmms2024/tree/client-overrides/config/dynamiccrosshair.json5 new file mode 100644 index 0000000..4c62021 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/dynamiccrosshair.json5 @@ -0,0 +1,142 @@ +{ + "dynamicCrosshair": "Disabled", + "disableDebugCrosshair": false, + "thirdPersonCrosshair": false, + "hideWithScreen": true, + "hideWithMap": true, + "crosshairConfig": { + "onBlock": "IfTargeting", + "onEntity": true, + "holdingTool": "Always", + "holdingMeleeWeapon": true, + "meleeWeaponOnEntity": false, + "meleeWeaponOnBreakableBlock": false, + "holdingRangedWeapon": "IfInteractable", + "holdingThrowable": "IfInteractable", + "holdingShield": true, + "holdingBlock": "IfInteractable", + "holdingUsableItem": "IfInteractable", + "forceHoldingSpyglass": false + }, + "color": { + "crosshairColor": "Unchanged", + "customColor": -5588020, + "forceColor": false + }, + "dynamicCrosshairStyle": true, + "crosshairStyle": { + "regular": { + "style": "Cross", + "color": { + "crosshairColor": "Unchanged", + "customColor": -5588020, + "forceColor": false + } + }, + "onBlock": { + "style": "Cross", + "color": { + "crosshairColor": "Unchanged", + "customColor": -5588020, + "forceColor": false + } + }, + "onEntity": { + "style": "DiagonalCross", + "color": { + "crosshairColor": "Unchanged", + "customColor": -5588020, + "forceColor": false + } + }, + "holdingTool": { + "style": "Square", + "color": { + "crosshairColor": "Unchanged", + "customColor": -5588020, + "forceColor": false + } + }, + "holdingMeleeWeapon": { + "style": "Cross", + "color": { + "crosshairColor": "Unchanged", + "customColor": -5588020, + "forceColor": false + } + }, + "holdingRangedWeapon": { + "style": "DiagonalCross", + "color": { + "crosshairColor": "Unchanged", + "customColor": -5588020, + "forceColor": false + } + }, + "holdingThrowable": { + "style": "Circle", + "color": { + "crosshairColor": "Unchanged", + "customColor": -5588020, + "forceColor": false + } + }, + "holdingBlock": { + "style": "Diamond", + "color": { + "crosshairColor": "Unchanged", + "customColor": -5588020, + "forceColor": false + } + } + }, + "crosshairModifiers": { + "modInteractable": { + "style": "Brackets", + "color": { + "crosshairColor": "Unchanged", + "customColor": -5588020, + "forceColor": false + } + }, + "modUsableItem": { + "style": "RoundBrackets", + "color": { + "crosshairColor": "Unchanged", + "customColor": -5588020, + "forceColor": false + } + }, + "modShield": { + "style": "BracketsBottom", + "color": { + "crosshairColor": "Unchanged", + "customColor": -5588020, + "forceColor": false + } + }, + "modCorrectTool": { + "style": "Dot", + "color": { + "crosshairColor": "Unchanged", + "customColor": -5588020, + "forceColor": false + } + }, + "modIncorrectTool": { + "style": "DiagonalCross", + "color": { + "crosshairColor": "Unchanged", + "customColor": -5588020, + "forceColor": false + } + } + }, + "enableTweaks": true, + "additionalTools": [], + "additionalMeleeWeapons": [], + "additionalRangedWeapons": [], + "additionalThrowables": [], + "additionalUsableItems": [], + "additionalInteractableBlocks": [] +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/effective-client.toml b/archive/mythos_dmms2024/tree/client-overrides/config/effective-client.toml new file mode 100644 index 0000000..c0d7450 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/effective-client.toml @@ -0,0 +1,31 @@ + +["Entity Splash"] + #Generates Entity Splashes. + splashes = true + #Defines Water Splash Transparent Channel. + #Range: 0.0 ~ 1.0 + splashAlpha = 0.6 + +[Cascades] + #Processes Cascades + cascades = true + #Defines Cascade Sound Volume. + #Range: 0.0 ~ 100.0 + "cascade volume" = 2.0 + #Defines Cascade Sound Reach, Measured By Blocks. + #Range: 0.0 ~ 256.0 + "cascade sound range" = 40.0 + #Defines Cascade Particle Amount. + #Range: 0 ~ 100 + "cascade particles" = 5 + +["Water Effects"] + #Defines Ripple Particle Amount Display On Calm Water. + #Zero Means No Ripple Particles. + #Range: 0 ~ 256 + "ripple abundance" = 1 + #Defines Splash Particle Display Amount Around Flowing Water. + #Zero Means No Splash Particles. + #Range: 0 ~ 65536 + "splash abundance" = 5 + diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/embeddium-options.json b/archive/mythos_dmms2024/tree/client-overrides/config/embeddium-options.json new file mode 100644 index 0000000..c7f6556 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/embeddium-options.json @@ -0,0 +1,30 @@ +{ + "quality": { + "weather_quality": "FANCY", + "leaves_quality": "FANCY", + "enable_vignette": true, + "use_quad_normals_for_shading": false + }, + "advanced": { + "enable_memory_tracing": false, + "use_advanced_staging_buffers": true, + "disable_incompatible_mod_warnings": false, + "cpu_render_ahead_limit": 3 + }, + "performance": { + "chunk_builder_threads": 1, + "always_defer_chunk_updates_v2": true, + "animate_only_visible_textures": true, + "use_entity_culling": true, + "use_fog_occlusion": true, + "use_block_face_culling": true, + "use_compact_vertex_format": false, + "use_translucent_face_sorting_v2": true, + "use_no_error_g_l_context": true + }, + "notifications": { + "force_disable_donation_prompts": false, + "has_cleared_donation_button": false, + "has_seen_donation_prompt": false + } +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/emi.css b/archive/mythos_dmms2024/tree/client-overrides/config/emi.css new file mode 100644 index 0000000..e5abbf6 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/emi.css @@ -0,0 +1,475 @@ +/** EMI Config */ + +#general { + /** + * Whether EMI is enabled and visible. + */ + enabled: true; + + /** + * Whether cheating in items is enabled. + */ + cheat-mode: false; + + /** + * How much EMI should use tooltips and popups to show controls and information. + */ + help-level: normal; + + /** + * Where EMI should pull stacks from to populate the index. + */ + index-source: creative; + + /** + * Whether normal search queries should include the tooltip. + */ + search-tooltip-by-default: true; + + /** + * Whether normal search queries should include the mod name. + */ + search-mod-name-by-default: false; + + /** + * Whether normal search queries should include the stack's tags. + */ + search-tags-by-default: false; +} + +#ui { + /** + * Which action should be performed when clicking the recipe book. + */ + recipe-book-action: toggle-craftables; + + /** + * Where to display status effects in the inventory. + */ + effect-location: top; + + /** + * Whether to display a gray overlay when hovering over a stack. + */ + show-hover-overlay: true; + + /** + * Whether to add mod name to tooltips + */ + append-mod-id: true; + + /** + * Whether to add mod name to item tooltips, in case another mod provides behavior + */ + append-item-mod-id: true; + + /** + * Prevents recipes being quick crafted from shifting around under the cursor. + */ + miscraft-prevention: true; + + /** + * The unit to display fluids as. + */ + fluid-unit: millibuckets; + + /** + * Whether to use the batched render system. Batching is faster, but may have + * incompatibilities with shaders or other mods. + */ + use-batched-renderer: true; + + /** + * Whether to have the search bar in the center of the screen, instead of to the + * side. + */ + center-search-bar: true; + + /** + * Which sidebar type to switch to when searching. + */ + search-sidebar-focus: index; + + /** + * Which sidebar type to focus when the search is empty. + */ + empty-search-sidebar-focus: none; + + /** + * The maximum height the recipe screen will grow to be if space is available in + * pixels. + */ + maximum-recipe-screen-height: 256; + + /** + * The minimum width of the recipe screen in pixels. Controls how many tabs there + * can be, and where the page switching buttons go. The default is 176, the width + * of most screens. + */ + minimum-recipe-screen-width: 176; + + /** + * The amount of vertical margin to give in the recipe screen. + */ + vertical-margin: 20; + + /** + * Where to show workstations in the recipe screen + */ + workstation-location: bottom; + + /** + * Display cost per batch when hovering a recipe output + */ + show-cost-per-batch: true; + + /** + * Whether recipes should have a button to set as default. + */ + recipe-default-button: true; + + /** + * Whether recipes should have a button to show the recipe tree. + */ + recipe-tree-button: true; + + /** + * Whether recipes should have a button to fill the ingredients in a handler. + */ + recipe-fill-button: true; + + /** + * Whether recipes should have a button to take a screenshot of the recipe. + */ + recipe-screenshot-button: false; + + /** + * The GUI scale at which recipe screenshots are saved. Use 0 to use the current + * GUI scale. + */ + recipe-screenshot-scale: 0; + + /** + * The pages in the left sidebar + */ + left-sidebar-pages: none; + + /** + * The subpanels in the left sidebar + */ + left-sidebar-subpanels: none; + + /** + * How many columns and rows of ingredients to limit the left sidebar to + */ + left-sidebar-size: 12, 100; + + /** + * How much space to maintain between the left sidebar and obstructions, in pixels + */ + left-sidebar-margins: 2, 2, 2, 2; + + /** + * Where to position the left sidebar + */ + left-sidebar-align: left, top; + + /** + * Whether to render the header buttons and page count for the left sidebar + */ + left-sidebar-header: visible; + + /** + * Which theme to use for the left sidebar + */ + left-sidebar-theme: transparent; + + /** + * The pages in the right sidebar + */ + right-sidebar-pages: index, craftables; + + /** + * The subpanels in the right sidebar + */ + right-sidebar-subpanels: none; + + /** + * How many columns and rows of ingredients to limit the right sidebar to + */ + right-sidebar-size: 12, 100; + + /** + * How much space to maintain between the right sidebar and obstructions, in pixels + */ + right-sidebar-margins: 2, 2, 2, 2; + + /** + * Where to position the right sidebar + */ + right-sidebar-align: right, top; + + /** + * Whether to render the header buttons and page count for the right sidebar + */ + right-sidebar-header: visible; + + /** + * Which theme to use for the right sidebar + */ + right-sidebar-theme: transparent; + + /** + * The pages in the top sidebar + */ + top-sidebar-pages: none; + + /** + * The subpanels in the top sidebar + */ + top-sidebar-subpanels: none; + + /** + * How many columns and rows of ingredients to limit the top sidebar to + */ + top-sidebar-size: 9, 9; + + /** + * How much space to maintain between the top sidebar and obstructions, in pixels + */ + top-sidebar-margins: 2, 2, 2, 2; + + /** + * Where to position the top sidebar + */ + top-sidebar-align: center, center; + + /** + * Whether to render the header buttons and page count for the top sidebar + */ + top-sidebar-header: visible; + + /** + * Which theme to use for the top sidebar + */ + top-sidebar-theme: transparent; + + /** + * The pages in the bottom sidebar + */ + bottom-sidebar-pages: none; + + /** + * The subpanels in the bottom sidebar + */ + bottom-sidebar-subpanels: none; + + /** + * How many columns and rows of ingredients to limit the bottom sidebar to + */ + bottom-sidebar-size: 9, 9; + + /** + * How much space to maintain between the bottom sidebar and obstructions, in + * pixels + */ + bottom-sidebar-margins: 2, 2, 2, 2; + + /** + * Where to position the bottom sidebar + */ + bottom-sidebar-align: center, center; + + /** + * Whether to render the header buttons and page count for the bottom sidebar + */ + bottom-sidebar-header: visible; + + /** + * Which theme to use for the bottom sidebar + */ + bottom-sidebar-theme: transparent; +} + +#binds { + /** + * Toggle the visibility of EMI. + */ + toggle-visibility: "ctrl key.keyboard.o"; + + /** + * Focuse the search bar. + */ + focus-search: "ctrl key.keyboard.f"; + + /** + * Clears the search bar. + */ + clear-search: "key.keyboard.unknown"; + + /** + * Display the recipes for creating a stack. + */ + view-recipes: "key.keyboard.r"; + view-recipes: "key.mouse.left"; + + /** + * Display the recipes that can be created using a stack. + */ + view-uses: "key.keyboard.u"; + view-uses: "key.mouse.right"; + + /** + * Favorite the item to display on the side of the screen opposite of recipies for + * quick access. + */ + favorite: "key.keyboard.unknown"; + + /** + * Set the default recipe for a given stack in the output of a recipe to that + * recipe. + */ + default-stack: "ctrl key.mouse.left"; + + /** + * Display the recipe tree for a given stack. + */ + view-stack-tree: "key.keyboard.unknown"; + + /** + * Display the recipe tree. + */ + view-tree: "key.keyboard.unknown"; + + /** + * Return to the previous page in EMI. + */ + back: "key.keyboard.backspace"; + + /** + * Return to the next page in EMI after going back. + */ + forward: "key.keyboard.unknown"; + + /** + * When on a stack with an associated recipe: + * Move ingredients for a single result. + */ + craft-one: "key.mouse.left"; + + /** + * When on a stack with an associated recipe: + * Move ingredients for as many results as possible. + */ + craft-all: "shift key.mouse.left"; + + /** + * When on a stack with an associated recipe: + * Move ingredients for a single result and put in inventory if possible. + */ + craft-one-to-inventory: "key.keyboard.unknown"; + + /** + * When on a stack with an associated recipe: + * Move ingredients for as many results as possible and put in inventory if + * possible. + */ + craft-all-to-inventory: "key.keyboard.unknown"; + + /** + * When on a stack with an associated recipe: + * Move ingredients for a single result and put in cursor if possible. + */ + craft-one-to-cursor: "ctrl key.mouse.left"; + + /** + * Display the recipe that will be used to craft on a stack with no recipe context. + */ + show-craft: "key.keyboard.left.shift"; + + /** + * Cheat in one of an item into the inventory. + */ + cheat-one-to-inventory: "ctrl key.mouse.right"; + + /** + * Cheat in a stack of an item into the inventory. + */ + cheat-stack-to-inventory: "ctrl key.mouse.left"; + + /** + * Cheat in one of an item into the cursor. + */ + cheat-one-to-cursor: "ctrl key.mouse.middle"; + + /** + * Cheat in a stack of an item into the cursor. + */ + cheat-stack-to-cursor: "key.keyboard.unknown"; + + /** + * Delete the stack in the cursor when hovering the index + */ + delete-cursor-stack: "key.mouse.left"; + + /** + * Copies the hovered recipe's ID to the clipboard + */ + copy-recipe-id: "key.keyboard.unknown"; + + /** + * In edit mode, hide the hovered stack + */ + hide-stack: "ctrl key.mouse.left"; + + /** + * In edit mode, hide stacks with the hovered stack's id + */ + hide-stack-by-id: "ctrl shift key.mouse.left"; +} + +#dev { + /** + * Whether development functions should be enabled. Not recommended for general + * play. + */ + dev-mode: false; + + /** + * Whether editing the index is enabled + */ + edit-mode: false; + + /** + * Whether to log untranslated tags as warnings. + */ + log-untranslated-tags: false; + + /** + * Whether to log ingredients that don't have a representative tag as warnings. + */ + log-non-tag-ingredients: false; + + /** + * Whether hovering the output of a recipe should show the recipe's EMI ID. + */ + show-recipe-ids: false; + + /** + * Whether to display additional widgets added to recipes from other mods. + * These are typically developer facing and compatibility related, and not useful + * for players. + */ + show-recipe-decorators: false; + + /** + * Whether stacks in the index should display a highlight if they have a recipe + * default. + */ + highlight-defaulted: false; + + /** + * Whether to display exclusion areas + */ + highlight-exclusion-areas: false; +} diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/explorerscompass-client.toml b/archive/mythos_dmms2024/tree/client-overrides/config/explorerscompass-client.toml new file mode 100644 index 0000000..dc6cb6a --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/explorerscompass-client.toml @@ -0,0 +1,13 @@ + +[Client] + #Displays Explorer's Compass information on the HUD even while chat is open. + displayWithChatOpen = true + #Attempts to translate structure names before fixing the unlocalized names. Translations may not be available for all structures. + translateStructureNames = true + #The line offset for information rendered on the HUD. + #Range: 0 ~ 50 + overlayLineOffset = 18 + #The side for information rendered on the HUD. Ex: LEFT, RIGHT + #Allowed Values: LEFT, RIGHT + overlaySide = "RIGHT" + diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/fallingleaves-client.toml b/archive/mythos_dmms2024/tree/client-overrides/config/fallingleaves-client.toml new file mode 100644 index 0000000..e4d6188 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/fallingleaves-client.toml @@ -0,0 +1,32 @@ +#modifies the size of the leaves +#Range: 1 ~ 20 +leafSize = 4 +#modifies how long it takes for the leaves to disappear +#Values over 2000 are not recommend +#Range: > 100 +leafLifespan = 200 +#modifies the amount of leaves that are spawning +#Values over 10000 are not recommend +#Range: > 0 +leafSpawnRate = 12 +#modifier the amount of leaves are spawning from conifer trees +#Values over 10000 are not recommend +#Range: > 0 +coniferLeafSpawnRate = 2 +#whether player placed blocks should also drop leaves +dropFromPlayerPlacedBlocks = true +#how much room below the leaves block is needed for the leaves to spawn +#Range: 1 ~ 20 +minimumFreeSpaceBelow = 1 +#disable wind effects +disableWind = false +#windless dimensions +windlessDimension = ["minecraft:the_nether", "minecraft:the_end"] + +["Serene Seasons"] + #spawnrate modifier per season/subseason + #Format: '<season>:<modifier>'; eg 'SUMMER:0.23' + #Subseasons override seasons + #Allowed seasons: SPRING,SUMMER,AUTUMN,WINTER,EARLY_SPRING,MID_SPRING,LATE_SPRING,EARLY_SUMMER,MID_SUMMER,LATE_SUMMER,EARLY_AUTUMN,MID_AUTUMN,LATE_AUTUMN,EARLY_WINTER,MID_WINTER,LATE_WINTER + seasonFallRate = ["SPRING:0", "AUTUMN:1", "SUMMER:0.2", "WINTER:0.2"] + diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/firstperson.json b/archive/mythos_dmms2024/tree/client-overrides/config/firstperson.json new file mode 100755 index 0000000..f623f35 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/firstperson.json @@ -0,0 +1,19 @@ +{ + "configVersion": 2, + "enabledByDefault": false, + "xOffset": 0, + "sneakXOffset": 0, + "sitXOffset": 0, + "renderStuckFeatures": true, + "vanillaHands": false, + "doubleHands": false, + "autoVanillaHands": [ + "twilightforest:filled_ore_map", + "twilightforest:filled_magic_map", + "twilightforest:filled_maze_map", + "antiqueatlas:antique_atlas" + ], + "autoToggleModItems": [ + "exposure:camera" + ] +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/forge-client.toml b/archive/mythos_dmms2024/tree/client-overrides/config/forge-client.toml new file mode 100644 index 0000000..7f0f3d9 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/forge-client.toml @@ -0,0 +1,24 @@ + +#Client only settings, mostly things related to rendering +[client] + #Enable Forge to queue all chunk updates to the Chunk Update thread. + #May increase FPS significantly, but may also cause weird rendering lag. + #Not recommended for computers without a significant number of cores available. + alwaysSetupTerrainOffThread = false + #EXPERIMENTAL: Enable the Forge block rendering pipeline - fixes the lighting of custom models. + experimentalForgeLightPipelineEnabled = true + #When enabled, Forge will show any warnings that occurred during loading. + showLoadWarnings = true + #Set to true to use a combined DEPTH_STENCIL attachment instead of two separate ones. + useCombinedDepthStencilAttachment = false + #[DEPRECATED] Does nothing anymore, IPv6 addresses will be compressed always + compressLanIPv6Addresses = true + #During block model baking, manually calculates the normal for all faces. + #This was the default behavior of forge between versions 31.0 and 47.1. + #May result in differences between vanilla rendering and forge rendering. + #Will only produce differences for blocks that contain non-axis aligned faces. + #You will need to reload your resources to see results. + calculateAllNormals = false + #When enabled, a slightly biased Direction#getNearest calculation will be used to prevent normal fighting on 45 degree angle faces. + stabilizeDirectionGetNearest = true + diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/freecam.json5 b/archive/mythos_dmms2024/tree/client-overrides/config/freecam.json5 new file mode 100644 index 0000000..1e4afed --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/freecam.json5 @@ -0,0 +1,30 @@ +{ + "movement": { + "flightMode": "DEFAULT", + "horizontalSpeed": 0.4, + "verticalSpeed": 0.4 + }, + "collision": { + "ignoreTransparent": true, + "ignoreOpenable": true, + "ignoreAll": false, + "alwaysCheck": false + }, + "visual": { + "perspective": "INSIDE", + "showPlayer": true, + "showHand": false, + "fullBright": false, + "showSubmersion": false + }, + "utility": { + "disableOnDamage": true, + "freezePlayer": false, + "allowInteract": false, + "interactionMode": "CAMERA" + }, + "notification": { + "notifyFreecam": true, + "notifyTripod": true + } +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/iceandfire-client.toml b/archive/mythos_dmms2024/tree/client-overrides/config/iceandfire-client.toml new file mode 100644 index 0000000..e123a4c --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/iceandfire-client.toml @@ -0,0 +1,9 @@ + +[general] + #Whether to display the dragon on the main menu or not + "Custom main menu" = false + #True if riding dragons should make the player take a 3rd person view automatically. + "Auto 3rd person when riding dragon" = true + #Whether to use the vanilla font in the bestiary or not + "Use Vanilla Font" = false + diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/illuminations.properties b/archive/mythos_dmms2024/tree/client-overrides/config/illuminations.properties new file mode 100644 index 0000000..8d8fd80 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/illuminations.properties @@ -0,0 +1,266 @@ +#Tue May 14 23:00:27 EDT 2024 +chorus-petal-spawn-multiplier=1 +debug-mode=false +density=125 +display-cosmetics=true +display-donation-toast=true +eyes-in-the-dark-spawn-rate=LOW +firefly-rainbow=false +firefly-spawn-always=false +firefly-spawn-underground=false +firefly-white-alpha=100 +halloween-features=ENABLE +minecraft\:badlands-firefly-color=889300 +minecraft\:badlands-firefly-spawn-rate=DISABLE +minecraft\:badlands-glowworm-spawn-rate=DISABLE +minecraft\:badlands-plankton-spawn-rate=DISABLE +minecraft\:bamboo-jungle-firefly-color=ff21 +minecraft\:bamboo-jungle-firefly-spawn-rate=MEDIUM +minecraft\:bamboo-jungle-glowworm-spawn-rate=DISABLE +minecraft\:bamboo-jungle-plankton-spawn-rate=DISABLE +minecraft\:basalt-deltas-firefly-color=ff8000 +minecraft\:basalt-deltas-firefly-spawn-rate=DISABLE +minecraft\:basalt-deltas-glowworm-spawn-rate=DISABLE +minecraft\:basalt-deltas-plankton-spawn-rate=DISABLE +minecraft\:beach-firefly-color=bfff00 +minecraft\:beach-firefly-spawn-rate=DISABLE +minecraft\:beach-glowworm-spawn-rate=DISABLE +minecraft\:beach-plankton-spawn-rate=DISABLE +minecraft\:birch-forest-firefly-color=e4ff00 +minecraft\:birch-forest-firefly-spawn-rate=MEDIUM +minecraft\:birch-forest-glowworm-spawn-rate=DISABLE +minecraft\:birch-forest-plankton-spawn-rate=DISABLE +minecraft\:cold-ocean-firefly-color=bfff00 +minecraft\:cold-ocean-firefly-spawn-rate=DISABLE +minecraft\:cold-ocean-glowworm-spawn-rate=DISABLE +minecraft\:cold-ocean-plankton-spawn-rate=DISABLE +minecraft\:crimson-forest-firefly-color=ff8000 +minecraft\:crimson-forest-firefly-spawn-rate=LOW +minecraft\:crimson-forest-glowworm-spawn-rate=DISABLE +minecraft\:crimson-forest-plankton-spawn-rate=DISABLE +minecraft\:dark-forest-firefly-color=6900 +minecraft\:dark-forest-firefly-spawn-rate=MEDIUM +minecraft\:dark-forest-glowworm-spawn-rate=DISABLE +minecraft\:dark-forest-plankton-spawn-rate=DISABLE +minecraft\:deep-cold-ocean-firefly-color=bfff00 +minecraft\:deep-cold-ocean-firefly-spawn-rate=DISABLE +minecraft\:deep-cold-ocean-glowworm-spawn-rate=DISABLE +minecraft\:deep-cold-ocean-plankton-spawn-rate=DISABLE +minecraft\:deep-dark-firefly-color=29ddeb +minecraft\:deep-dark-firefly-spawn-rate=LOW +minecraft\:deep-dark-glowworm-spawn-rate=DISABLE +minecraft\:deep-dark-plankton-spawn-rate=DISABLE +minecraft\:deep-frozen-ocean-firefly-color=bfff00 +minecraft\:deep-frozen-ocean-firefly-spawn-rate=DISABLE +minecraft\:deep-frozen-ocean-glowworm-spawn-rate=DISABLE +minecraft\:deep-frozen-ocean-plankton-spawn-rate=DISABLE +minecraft\:deep-lukewarm-ocean-firefly-color=bfff00 +minecraft\:deep-lukewarm-ocean-firefly-spawn-rate=DISABLE +minecraft\:deep-lukewarm-ocean-glowworm-spawn-rate=DISABLE +minecraft\:deep-lukewarm-ocean-plankton-spawn-rate=DISABLE +minecraft\:deep-ocean-firefly-color=bfff00 +minecraft\:deep-ocean-firefly-spawn-rate=DISABLE +minecraft\:deep-ocean-glowworm-spawn-rate=DISABLE +minecraft\:deep-ocean-plankton-spawn-rate=DISABLE +minecraft\:desert-firefly-color=ffa755 +minecraft\:desert-firefly-spawn-rate=MEDIUM +minecraft\:desert-glowworm-spawn-rate=DISABLE +minecraft\:desert-plankton-spawn-rate=DISABLE +minecraft\:dripstone-caves-firefly-color=bfff00 +minecraft\:dripstone-caves-firefly-spawn-rate=DISABLE +minecraft\:dripstone-caves-glowworm-spawn-rate=DISABLE +minecraft\:dripstone-caves-plankton-spawn-rate=DISABLE +minecraft\:end-barrens-firefly-color=8000ff +minecraft\:end-barrens-firefly-spawn-rate=DISABLE +minecraft\:end-barrens-glowworm-spawn-rate=DISABLE +minecraft\:end-barrens-plankton-spawn-rate=DISABLE +minecraft\:end-highlands-firefly-color=8000ff +minecraft\:end-highlands-firefly-spawn-rate=DISABLE +minecraft\:end-highlands-glowworm-spawn-rate=DISABLE +minecraft\:end-highlands-plankton-spawn-rate=DISABLE +minecraft\:end-midlands-firefly-color=8000ff +minecraft\:end-midlands-firefly-spawn-rate=DISABLE +minecraft\:end-midlands-glowworm-spawn-rate=DISABLE +minecraft\:end-midlands-plankton-spawn-rate=DISABLE +minecraft\:eroded-badlands-firefly-color=889300 +minecraft\:eroded-badlands-firefly-spawn-rate=DISABLE +minecraft\:eroded-badlands-glowworm-spawn-rate=DISABLE +minecraft\:eroded-badlands-plankton-spawn-rate=DISABLE +minecraft\:flower-forest-firefly-color=ff7fed +minecraft\:flower-forest-firefly-spawn-rate=MEDIUM +minecraft\:flower-forest-glowworm-spawn-rate=DISABLE +minecraft\:flower-forest-plankton-spawn-rate=DISABLE +minecraft\:forest-firefly-color=bfff00 +minecraft\:forest-firefly-spawn-rate=MEDIUM +minecraft\:forest-glowworm-spawn-rate=DISABLE +minecraft\:forest-plankton-spawn-rate=DISABLE +minecraft\:frozen-ocean-firefly-color=bfff00 +minecraft\:frozen-ocean-firefly-spawn-rate=DISABLE +minecraft\:frozen-ocean-glowworm-spawn-rate=DISABLE +minecraft\:frozen-ocean-plankton-spawn-rate=DISABLE +minecraft\:frozen-peaks-firefly-color=bfff +minecraft\:frozen-peaks-firefly-spawn-rate=DISABLE +minecraft\:frozen-peaks-glowworm-spawn-rate=DISABLE +minecraft\:frozen-peaks-plankton-spawn-rate=DISABLE +minecraft\:frozen-river-firefly-color=bfff +minecraft\:frozen-river-firefly-spawn-rate=DISABLE +minecraft\:frozen-river-glowworm-spawn-rate=DISABLE +minecraft\:frozen-river-plankton-spawn-rate=DISABLE +minecraft\:grove-firefly-color=bfff +minecraft\:grove-firefly-spawn-rate=DISABLE +minecraft\:grove-glowworm-spawn-rate=DISABLE +minecraft\:grove-plankton-spawn-rate=DISABLE +minecraft\:ice-spikes-firefly-color=bfff +minecraft\:ice-spikes-firefly-spawn-rate=DISABLE +minecraft\:ice-spikes-glowworm-spawn-rate=DISABLE +minecraft\:ice-spikes-plankton-spawn-rate=DISABLE +minecraft\:jagged-peaks-firefly-color=bfff +minecraft\:jagged-peaks-firefly-spawn-rate=DISABLE +minecraft\:jagged-peaks-glowworm-spawn-rate=DISABLE +minecraft\:jagged-peaks-plankton-spawn-rate=DISABLE +minecraft\:jungle-firefly-color=ff21 +minecraft\:jungle-firefly-spawn-rate=MEDIUM +minecraft\:jungle-glowworm-spawn-rate=DISABLE +minecraft\:jungle-plankton-spawn-rate=DISABLE +minecraft\:lukewarm-ocean-firefly-color=bfff00 +minecraft\:lukewarm-ocean-firefly-spawn-rate=DISABLE +minecraft\:lukewarm-ocean-glowworm-spawn-rate=DISABLE +minecraft\:lukewarm-ocean-plankton-spawn-rate=DISABLE +minecraft\:lush-caves-firefly-color=f2b646 +minecraft\:lush-caves-firefly-spawn-rate=MEDIUM +minecraft\:lush-caves-glowworm-spawn-rate=DISABLE +minecraft\:lush-caves-plankton-spawn-rate=DISABLE +minecraft\:mangrove-swamp-firefly-color=bfff00 +minecraft\:mangrove-swamp-firefly-spawn-rate=HIGH +minecraft\:mangrove-swamp-glowworm-spawn-rate=DISABLE +minecraft\:mangrove-swamp-plankton-spawn-rate=DISABLE +minecraft\:meadow-firefly-color=4cae88 +minecraft\:meadow-firefly-spawn-rate=LOW +minecraft\:meadow-glowworm-spawn-rate=DISABLE +minecraft\:meadow-plankton-spawn-rate=DISABLE +minecraft\:mushroom-fields-firefly-color=ff7f8f +minecraft\:mushroom-fields-firefly-spawn-rate=LOW +minecraft\:mushroom-fields-glowworm-spawn-rate=DISABLE +minecraft\:mushroom-fields-plankton-spawn-rate=DISABLE +minecraft\:nether-wastes-firefly-color=ff8000 +minecraft\:nether-wastes-firefly-spawn-rate=DISABLE +minecraft\:nether-wastes-glowworm-spawn-rate=DISABLE +minecraft\:nether-wastes-plankton-spawn-rate=DISABLE +minecraft\:ocean-firefly-color=bfff00 +minecraft\:ocean-firefly-spawn-rate=DISABLE +minecraft\:ocean-glowworm-spawn-rate=DISABLE +minecraft\:ocean-plankton-spawn-rate=DISABLE +minecraft\:old-growth-birch-forest-firefly-color=e4ff00 +minecraft\:old-growth-birch-forest-firefly-spawn-rate=MEDIUM +minecraft\:old-growth-birch-forest-glowworm-spawn-rate=DISABLE +minecraft\:old-growth-birch-forest-plankton-spawn-rate=DISABLE +minecraft\:old-growth-pine-taiga-firefly-color=bfff00 +minecraft\:old-growth-pine-taiga-firefly-spawn-rate=LOW +minecraft\:old-growth-pine-taiga-glowworm-spawn-rate=DISABLE +minecraft\:old-growth-pine-taiga-plankton-spawn-rate=DISABLE +minecraft\:old-growth-spruce-taiga-firefly-color=bfff00 +minecraft\:old-growth-spruce-taiga-firefly-spawn-rate=LOW +minecraft\:old-growth-spruce-taiga-glowworm-spawn-rate=DISABLE +minecraft\:old-growth-spruce-taiga-plankton-spawn-rate=DISABLE +minecraft\:plains-firefly-color=91bd59 +minecraft\:plains-firefly-spawn-rate=LOW +minecraft\:plains-glowworm-spawn-rate=DISABLE +minecraft\:plains-plankton-spawn-rate=DISABLE +minecraft\:river-firefly-color=bfff00 +minecraft\:river-firefly-spawn-rate=MEDIUM +minecraft\:river-glowworm-spawn-rate=DISABLE +minecraft\:river-plankton-spawn-rate=DISABLE +minecraft\:savanna-firefly-color=889300 +minecraft\:savanna-firefly-spawn-rate=LOW +minecraft\:savanna-glowworm-spawn-rate=DISABLE +minecraft\:savanna-plankton-spawn-rate=DISABLE +minecraft\:savanna-plateau-firefly-color=889300 +minecraft\:savanna-plateau-firefly-spawn-rate=DISABLE +minecraft\:savanna-plateau-glowworm-spawn-rate=DISABLE +minecraft\:savanna-plateau-plankton-spawn-rate=DISABLE +minecraft\:small-end-islands-firefly-color=8000ff +minecraft\:small-end-islands-firefly-spawn-rate=DISABLE +minecraft\:small-end-islands-glowworm-spawn-rate=DISABLE +minecraft\:small-end-islands-plankton-spawn-rate=DISABLE +minecraft\:snowy-beach-firefly-color=bfff +minecraft\:snowy-beach-firefly-spawn-rate=DISABLE +minecraft\:snowy-beach-glowworm-spawn-rate=DISABLE +minecraft\:snowy-beach-plankton-spawn-rate=DISABLE +minecraft\:snowy-plains-firefly-color=bfff +minecraft\:snowy-plains-firefly-spawn-rate=DISABLE +minecraft\:snowy-plains-glowworm-spawn-rate=DISABLE +minecraft\:snowy-plains-plankton-spawn-rate=DISABLE +minecraft\:snowy-slopes-firefly-color=bfff +minecraft\:snowy-slopes-firefly-spawn-rate=DISABLE +minecraft\:snowy-slopes-glowworm-spawn-rate=DISABLE +minecraft\:snowy-slopes-plankton-spawn-rate=DISABLE +minecraft\:snowy-taiga-firefly-color=bfff00 +minecraft\:snowy-taiga-firefly-spawn-rate=LOW +minecraft\:snowy-taiga-glowworm-spawn-rate=DISABLE +minecraft\:snowy-taiga-plankton-spawn-rate=DISABLE +minecraft\:soul-sand-valley-firefly-color=ffff +minecraft\:soul-sand-valley-firefly-spawn-rate=DISABLE +minecraft\:soul-sand-valley-glowworm-spawn-rate=DISABLE +minecraft\:soul-sand-valley-plankton-spawn-rate=DISABLE +minecraft\:sparse-jungle-firefly-color=ff21 +minecraft\:sparse-jungle-firefly-spawn-rate=MEDIUM +minecraft\:sparse-jungle-glowworm-spawn-rate=DISABLE +minecraft\:sparse-jungle-plankton-spawn-rate=DISABLE +minecraft\:stony-peaks-firefly-color=bfff00 +minecraft\:stony-peaks-firefly-spawn-rate=DISABLE +minecraft\:stony-peaks-glowworm-spawn-rate=DISABLE +minecraft\:stony-peaks-plankton-spawn-rate=DISABLE +minecraft\:stony-shore-firefly-color=bfff00 +minecraft\:stony-shore-firefly-spawn-rate=DISABLE +minecraft\:stony-shore-glowworm-spawn-rate=DISABLE +minecraft\:stony-shore-plankton-spawn-rate=DISABLE +minecraft\:sunflower-plains-firefly-color=91bd59 +minecraft\:sunflower-plains-firefly-spawn-rate=LOW +minecraft\:sunflower-plains-glowworm-spawn-rate=DISABLE +minecraft\:sunflower-plains-plankton-spawn-rate=DISABLE +minecraft\:swamp-firefly-color=bfff00 +minecraft\:swamp-firefly-spawn-rate=HIGH +minecraft\:swamp-glowworm-spawn-rate=DISABLE +minecraft\:swamp-plankton-spawn-rate=DISABLE +minecraft\:taiga-firefly-color=bfff00 +minecraft\:taiga-firefly-spawn-rate=LOW +minecraft\:taiga-glowworm-spawn-rate=DISABLE +minecraft\:taiga-plankton-spawn-rate=DISABLE +minecraft\:the-end-firefly-color=8000ff +minecraft\:the-end-firefly-spawn-rate=DISABLE +minecraft\:the-end-glowworm-spawn-rate=DISABLE +minecraft\:the-end-plankton-spawn-rate=DISABLE +minecraft\:the-void-firefly-color=ffffff +minecraft\:the-void-firefly-spawn-rate=DISABLE +minecraft\:the-void-glowworm-spawn-rate=DISABLE +minecraft\:the-void-plankton-spawn-rate=DISABLE +minecraft\:warm-ocean-firefly-color=bfff00 +minecraft\:warm-ocean-firefly-spawn-rate=DISABLE +minecraft\:warm-ocean-glowworm-spawn-rate=DISABLE +minecraft\:warm-ocean-plankton-spawn-rate=DISABLE +minecraft\:warped-forest-firefly-color=8080 +minecraft\:warped-forest-firefly-spawn-rate=LOW +minecraft\:warped-forest-glowworm-spawn-rate=DISABLE +minecraft\:warped-forest-plankton-spawn-rate=DISABLE +minecraft\:windswept-forest-firefly-color=bfff00 +minecraft\:windswept-forest-firefly-spawn-rate=LOW +minecraft\:windswept-forest-glowworm-spawn-rate=DISABLE +minecraft\:windswept-forest-plankton-spawn-rate=DISABLE +minecraft\:windswept-gravelly-hills-firefly-color=bfff00 +minecraft\:windswept-gravelly-hills-firefly-spawn-rate=DISABLE +minecraft\:windswept-gravelly-hills-glowworm-spawn-rate=DISABLE +minecraft\:windswept-gravelly-hills-plankton-spawn-rate=DISABLE +minecraft\:windswept-hills-firefly-color=bfff00 +minecraft\:windswept-hills-firefly-spawn-rate=LOW +minecraft\:windswept-hills-glowworm-spawn-rate=DISABLE +minecraft\:windswept-hills-plankton-spawn-rate=DISABLE +minecraft\:windswept-savanna-firefly-color=889300 +minecraft\:windswept-savanna-firefly-spawn-rate=LOW +minecraft\:windswept-savanna-glowworm-spawn-rate=DISABLE +minecraft\:windswept-savanna-plankton-spawn-rate=DISABLE +minecraft\:wooded-badlands-firefly-color=889300 +minecraft\:wooded-badlands-firefly-spawn-rate=DISABLE +minecraft\:wooded-badlands-glowworm-spawn-rate=DISABLE +minecraft\:wooded-badlands-plankton-spawn-rate=DISABLE +view-auras-fp=false +will-o-wisps-spawn-rate=MEDIUM diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/jade/jade.json b/archive/mythos_dmms2024/tree/client-overrides/config/jade/jade.json new file mode 100644 index 0000000..d92265c --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/jade/jade.json @@ -0,0 +1,41 @@ +{ + "general": { + "debug": false, + "itemModNameTooltip": false, + "bossBarOverlapMode": "PUSH_DOWN", + "builtinCamouflage": true, + "ttsMode": "PRESS", + "fluidMode": "ANY", + "reachDistance": 0.0, + "displayEntities": true, + "displayBosses": true, + "displayMode": "TOGGLE", + "displayTooltip": true, + "displayBlocks": true, + "hideFromDebug": true, + "hideFromTabList": true, + "enableTextToSpeech": false, + "hintOverlayToggle": true, + "hintNarratorToggle": true, + "previewOverlay": true + }, + "overlay": { + "alpha": 0.75, + "iconMode": "TOP", + "animation": true, + "disappearingDelay": 0.0, + "overlaySquare": true, + "flipMainHand": false, + "autoScaleThreshold": 0.4, + "overlayPosY": 0.99, + "overlayScale": 1.0, + "overlayAnchorX": 0.5, + "overlayAnchorY": 0.1, + "activeTheme": "jade:create", + "themesHash": -328442023, + "overlayPosX": 0.5 + }, + "formatting": { + "modName": "§9§o%s" + } +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/litematica.json b/archive/mythos_dmms2024/tree/client-overrides/config/litematica.json new file mode 100644 index 0000000..ac9b11d --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/litematica.json @@ -0,0 +1,354 @@ +{ + "Colors": { + "areaSelectionBoxSideColor": "#30FFFFFF", + "hightlightBlockInInventoryColor": "#30FF30FF", + "materialListHudItemCountsColor": "#FFFFAA00", + "schematicRebuildBreakPlaceOverlayColor": "#4C33CC33", + "schematicRebuildBreakExceptPlaceOverlayColor": "#4CF03030", + "schematicRebuildReplaceOverlayColor": "#4CF0A010", + "schematicOverlayColorExtra": "#4CFF4CE6", + "schematicOverlayColorMissing": "#2C33B3E6", + "schematicOverlayColorWrongBlock": "#4CFF3333", + "schematicOverlayColorWrongState": "#4CFF9010" + }, + "Generic": { + "areaSelectionsPerWorld": true, + "changeSelectedCornerOnMove": true, + "cloneAtOriginalPosition": false, + "commandDisableFeedback": true, + "commandFillNoChunkClamp": false, + "commandUseWorldEdit": false, + "customSchematicBaseDirectoryEnabled": false, + "debugLogging": false, + "easyPlaceFirst": true, + "easyPlaceHoldEnabled": true, + "easyPlaceMode": false, + "easyPlaceSinglePlayerHandling": true, + "easyPlaceProtocolVersion": "auto", + "easyPlaceVanillaReach": false, + "executeRequireHoldingTool": true, + "fixChestMirror": true, + "fixRailRotation": true, + "generateLowercaseNames": false, + "highlightBlockInInventory": false, + "itemUsePacketCheckBypass": true, + "layerModeFollowsPlayer": false, + "pasteAlwaysUseFill": false, + "pasteIgnoreBlockEntitiesEntirely": false, + "pasteIgnoreBlockEntitiesFromFill": true, + "pasteIgnoreCommandLimitWithNbtRestore": true, + "pasteIgnoreEntities": false, + "pasteIgnoreInventories": false, + "pasteNbtRestoreBehavior": "none", + "pasteToMcFunctionFiles": false, + "pasteUseFillCommand": true, + "pasteUsingCommandsInSp": false, + "pickBlockAvoidDamageable": true, + "pickBlockAvoidTools": false, + "pickBlockEnabled": true, + "pickBlockShulkers": false, + "placementReplaceBehavior": "all", + "placementRestriction": false, + "placementRestrictionWarn": "actionbar", + "renderMaterialListInGuis": true, + "renderThreadNoTimeout": true, + "signTextPaste": true, + "toolItemEnabled": true, + "unhideSchematicVCS": false, + "pasteReplaceBehavior": "none", + "selectionCornersMode": "corners", + "commandFillMaxVolume": 32768, + "commandLimitPerTick": 24, + "commandNameClone": "clone", + "commandNameFill": "fill", + "commandNameSetblock": "setblock", + "commandNameSummon": "summon", + "commandTaskInterval": 1, + "customSchematicBaseDirectory": "/mnt/ssd/PrismLauncher/instances/modpack2024_testing3/.minecraft/schematics", + "easyPlaceSwapInterval": 0, + "pickBlockableSlots": "1,2,3,4,5", + "toolItem": "minecraft:stick" + }, + "Hotkeys": { + "addSelectionBox": { + "keys": "" + }, + "cloneSelection": { + "keys": "" + }, + "deleteSelectionBox": { + "keys": "" + }, + "easyPlaceUseKey": { + "keys": "" + }, + "easyPlaceToggle": { + "keys": "" + }, + "executeOperation": { + "keys": "" + }, + "invertGhostBlockRenderState": { + "keys": "" + }, + "invertOverlayRenderState": { + "keys": "" + }, + "layerModeNext": { + "keys": "" + }, + "layerModePrevious": { + "keys": "" + }, + "layerNext": { + "keys": "" + }, + "layerPrevious": { + "keys": "" + }, + "layerSetHere": { + "keys": "" + }, + "nudgeSelectionNegative": { + "keys": "" + }, + "nudgeSelectionPositive": { + "keys": "" + }, + "moveEntireSelection": { + "keys": "" + }, + "openGuiAreaSettings": { + "keys": "" + }, + "openGuiLoadedSchematics": { + "keys": "" + }, + "openGuiMainMenu": { + "keys": "" + }, + "openGuiMaterialList": { + "keys": "" + }, + "openGuiPlacementSettings": { + "keys": "" + }, + "openGuiSchematicPlacements": { + "keys": "" + }, + "openGuiSchematicProjects": { + "keys": "" + }, + "openGuiSchematicVerifier": { + "keys": "" + }, + "openGuiSelectionManager": { + "keys": "" + }, + "openGuiSettings": { + "keys": "" + }, + "operationModeChangeModifier": { + "keys": "" + }, + "pickBlockFirst": { + "keys": "" + }, + "pickBlockLast": { + "keys": "" + }, + "pickBlockToggle": { + "keys": "" + }, + "renderInfoOverlay": { + "keys": "" + }, + "renderOverlayThroughBlocks": { + "keys": "" + }, + "rerenderSchematic": { + "keys": "" + }, + "saveAreaAsInMemorySchematic": { + "keys": "" + }, + "saveAreaAsSchematicToFile": { + "keys": "" + }, + "schematicEditBreakPlaceAll": { + "keys": "" + }, + "schematicEditBreakAllExcept": { + "keys": "" + }, + "schematicEditBreakPlaceDirection": { + "keys": "" + }, + "schematicEditReplaceAll": { + "keys": "" + }, + "schematicEditReplaceBlock": { + "keys": "" + }, + "schematicEditReplaceDirection": { + "keys": "" + }, + "schematicVersionCycleModifier": { + "keys": "" + }, + "schematicVersionCycleNext": { + "keys": "" + }, + "schematicVersionCyclePrevious": { + "keys": "" + }, + "selectionGrabModifier": { + "keys": "" + }, + "selectionGrow": { + "keys": "" + }, + "selectionGrowModifier": { + "keys": "" + }, + "selectionNudgeModifier": { + "keys": "" + }, + "selectionModeCycle": { + "keys": "" + }, + "selectionShrink": { + "keys": "" + }, + "setAreaOrigin": { + "keys": "" + }, + "setSelectionBoxPosition1": { + "keys": "" + }, + "setSelectionBoxPosition2": { + "keys": "" + }, + "toggleAllRendering": { + "keys": "" + }, + "toggleAreaSelectionBoxesRendering": { + "keys": "" + }, + "toggleInfoOverlayRendering": { + "keys": "" + }, + "toggleOverlayRendering": { + "keys": "" + }, + "toggleOverlayOutlineRendering": { + "keys": "" + }, + "toggleOverlaySideRendering": { + "keys": "" + }, + "togglePlacementBoxesRendering": { + "keys": "" + }, + "togglePlacementRestriction": { + "keys": "" + }, + "toggleSchematicBlockRendering": { + "keys": "" + }, + "toggleSchematicRendering": { + "keys": "" + }, + "toggleSignTextPaste": { + "keys": "" + }, + "toggleTranslucentRendering": { + "keys": "" + }, + "toggleVerifierOverlayRendering": { + "keys": "" + }, + "toolEnabledToggle": { + "keys": "" + }, + "toolPlaceCorner1": { + "keys": "" + }, + "toolPlaceCorner2": { + "keys": "" + }, + "toolSelectElements": { + "keys": "" + }, + "toolSelectModifierBlock1": { + "keys": "" + }, + "toolSelectModifierBlock2": { + "keys": "" + }, + "unloadCurrentSchematic": { + "keys": "" + } + }, + "InfoOverlays": { + "blockInfoLinesEnabled": true, + "blockInfoOverlayEnabled": true, + "infoOverlaysTargetFluids": false, + "statusInfoHud": false, + "statusInfoHudAuto": true, + "verifierOverlayEnabled": true, + "warnDisabledRendering": true, + "blockInfoLinesAlignment": "top_right", + "blockInfoOverlayAlignment": "top_center", + "infoHudAlignment": "bottom_right", + "toolHudAlignment": "bottom_left", + "blockInfoLinesOffsetX": 4, + "blockInfoLinesOffsetY": 4, + "blockInfoLinesFontScale": 0.5, + "blockInfoOverlayOffsetY": 6, + "infoHudMaxLines": 10, + "infoHudOffsetX": 1, + "infoHudOffsetY": 1, + "infoHudScale": 1.0, + "materialListHudMaxLines": 10, + "materialListHudScale": 1.0, + "toolHudOffsetX": 1, + "toolHudOffsetY": 1, + "toolHudScale": 1.0, + "verifierErrorHilightAlpha": 0.2, + "verifierErrorHilightMaxPositions": 1000 + }, + "Visuals": { + "enableRendering": false, + "enableSchematicRendering": true, + "enableAreaSelectionBoxesRendering": true, + "enablePlacementBoxesRendering": true, + "enableSchematicBlocksRendering": true, + "enableSchematicOverlay": true, + "ignoreExistingFluids": false, + "overlayReducedInnerSides": false, + "renderAreaSelectionBoxSides": true, + "renderBlocksAsTranslucent": false, + "renderCollidingSchematicBlocks": false, + "renderErrorMarkerConnections": false, + "renderErrorMarkerSides": true, + "renderPlacementBoxSides": false, + "renderPlacementEnclosingBox": true, + "renderPlacementEnclosingBoxSides": false, + "renderTranslucentBlockInnerSides": false, + "schematicOverlayEnableOutlines": true, + "schematicOverlayEnableSides": true, + "schematicOverlayModelOutline": true, + "schematicOverlayModelSides": true, + "schematicOverlayRenderThroughBlocks": false, + "schematicOverlayTypeExtra": true, + "schematicOverlayTypeMissing": true, + "schematicOverlayTypeWrongBlock": true, + "schematicOverlayTypeWrongState": true, + "schematicVerifierUseBlockModels": false, + "ghostBlockAlpha": 0.5, + "placementBoxSideAlpha": 0.2, + "schematicOverlayOutlineWidth": 1.0, + "schematicOverlayOutlineWidthThrough": 3.0 + } +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/naturescompass-client.toml b/archive/mythos_dmms2024/tree/client-overrides/config/naturescompass-client.toml new file mode 100644 index 0000000..6017db6 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/naturescompass-client.toml @@ -0,0 +1,13 @@ + +[Client] + #Displays Nature's Compass information even while chat is open. + displayWithChatOpen = true + #Fixes biome names by adding missing spaces. Ex: ForestHills becomes Forest Hills + fixBiomeNames = true + #The line offset for information rendered on the HUD. + #Range: 0 ~ 50 + overlayLineOffset = 18 + #The side for information rendered on the HUD. Ex: LEFT, RIGHT + #Allowed Values: LEFT, RIGHT + overlaySide = "RIGHT" + diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/notenoughanimations.json b/archive/mythos_dmms2024/tree/client-overrides/config/notenoughanimations.json new file mode 100644 index 0000000..a683528 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/notenoughanimations.json @@ -0,0 +1,50 @@ +{ + "configVersion": 11, + "animationSmoothingSpeed": 0.2, + "holdingItems": [ + "minecraft:clock", + "minecraft:recovery_compass", + "minecraft:soul_lantern", + "minecraft:compass", + "minecraft:torch", + "minecraft:lantern", + "minecraft:soul_torch" + ], + "enableAnimationSmoothing": true, + "enableInWorldMapRendering": true, + "enableOffhandHiding": true, + "enableRotationLocking": true, + "enableLadderAnimation": true, + "ladderAnimationAmplifier": 0.35, + "ladderAnimationArmHeight": 1.7, + "ladderAnimationArmSpeed": 2.0, + "enableRotateToLadder": true, + "enableEatDrinkAnimation": true, + "enableRowBoatAnimation": false, + "enableHorseAnimation": true, + "dontHoldItemsInBed": true, + "freezeArmsInBed": true, + "rotationLock": "NONE", + "showLastUsedSword": false, + "sheathSwords": [ + "minecraft:golden_sword", + "minecraft:iron_sword", + "minecraft:wooden_sword", + "minecraft:stone_sword", + "minecraft:diamond_sword", + "minecraft:netherite_sword" + ], + "enableCrawlingAnimation": true, + "holdUpItemsMode": "CONFIG", + "holdUpItemOffset": 0.0, + "itemSwapAnimation": true, + "tweakElytraAnimation": true, + "petAnimation": true, + "fallingAnimation": false, + "freezingAnimation": true, + "huggingAnimation": false, + "narutoRunning": false, + "enableInWorldBookRendering": false, + "disableLegSmoothing": true, + "bowAnimation": "CUSTOM_V1" +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/oculus.properties b/archive/mythos_dmms2024/tree/client-overrides/config/oculus.properties new file mode 100755 index 0000000..483e751 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/oculus.properties @@ -0,0 +1,8 @@ +#This file stores configuration options for Iris, such as the currently active shaderpack +#Tue May 14 08:50:32 EDT 2024 +colorSpace=SRGB +disableUpdateMessage=true +enableDebugOptions=false +maxShadowRenderDistance=26 +shaderPack=sora_1.12_fix.zip +enableShaders=false diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/paperdoll.json b/archive/mythos_dmms2024/tree/client-overrides/config/paperdoll.json new file mode 100644 index 0000000..04309c3 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/paperdoll.json @@ -0,0 +1,12 @@ +{ + "dollEnabled": true, + "location": "TOP_LEFT", + "dollXOffset": 5, + "dollYOffset": -14, + "dollSize": -6, + "dollLookingSides": 20, + "dollLookingUpDown": -20, + "dollHeadMode": "FREE", + "autoHide": false, + "hideInF5": false +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/reignitedhud-client.toml b/archive/mythos_dmms2024/tree/client-overrides/config/reignitedhud-client.toml new file mode 100644 index 0000000..dca185d --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/reignitedhud-client.toml @@ -0,0 +1,39 @@ + +["Reignited HUD"] + + ["Reignited HUD".player] + #Toggle Player Skins + skin = true + #Toggle Player Username + username = true + #Toggle Player Health + health = true + #Toggle Player Air Supply + air = true + + ["Reignited HUD".armor] + #Toggle Armor Level Display + level = true + #Toggle Armor Toughness Display + toughness = true + + ["Reignited HUD".food] + #Toggle Food Level Display + value = true + #Toggle Food Saturation Display + saturation = true + + ["Reignited HUD".item] + #Toggle Items Durability Display + equipment = true + #Toggle Items Durability Display + hand = true + + ["Reignited HUD".misc] + #Toggle Active Effects Display + effect = true + #Toggle Mount Information Display + mount = true + #Toggle Clock Display + time = true + diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/sound_physics_remastered/allowed_sounds.properties b/archive/mythos_dmms2024/tree/client-overrides/config/sound_physics_remastered/allowed_sounds.properties new file mode 100755 index 0000000..8ddf9df --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/sound_physics_remastered/allowed_sounds.properties @@ -0,0 +1,3883 @@ +# Allowed sounds +# Set to 'false' to disable sound physics for that sound + +minecraft\:entity.parrot.imitate.vindicator=true +aether\:music.menu=true +alexscaves\:vesper_flap=true +minecraft\:item.bucket.fill=true +twilightforest\:entity.twilightforest.loyal_zombie.summon=true +minecraft\:entity.sniffer.digging=true +vs_clockwork\:physics_infuser_windup=true +minecraft\:block.lodestone.place=true +minecraft\:music.overworld.bamboo_jungle=true +minecraft\:entity.hoglin.death=true +deeperdarker\:entity.shriek_worm.death=true +alexsmobs\:end_pirate_door=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 +rats\:block.rats.rat_trap.open=true +minecraft\:block.bamboo_wood_pressure_plate.click_on=true +alexscaves\:mine_guardian_hurt=true +minecraft\:block.note_block.banjo=true +unusualprehistory\:eryon_hurt=true +minecraft\:entity.llama.step=true +twilightforest\:block.twilightforest.reappearing_block.reappear=true +alexsmobs\:komodo_dragon_idle=true +twilightforest\:item.twilightforest.knightmetal_armor.equip=true +minecraft\:item.flintandsteel.use=true +minecraft\:entity.shulker.open=true +minecraft\:block.note_block.imitate.creeper=true +marvelous_menagerie\:thylacine_hurt=true +undergarden\:music.undergarden=true +illagerinvasion\:entity.sorcerer.celebrate=true +minecraft\:entity.camel.eat=true +unusualprehistory\:anuro_death=true +minecraft\:entity.magma_cube.hurt_small=true +illagerinvasion\:entity.invoker.big_cast=true +undergarden\:entity.stoneborn.chant=true +blue_skies\:entity.diophyde_prowler.hurt=true +blue_skies\:item.spear.hit=true +minecraft\:entity.sniffer.step=true +aether\:entity.mimic.death=true +blue_skies\:entity.summoner.prepare_attack=true +vs_clockwork\:welder_whirr=true +minecraft\:entity.silverfish.death=true +minecraft\:entity.axolotl.splash=true +alexscaves\:forsaken_hurt=true +minecraft\:block.frogspawn.hatch=true +endermanoverhaul\:dark_oak_enderman_ambient=true +minecraft\:block.froglight.hit=true +unusualprehistory\:eryon_death=true +supplementaries\:block.jar.break=true +alexscaves\:azure_neodymium_push_loop=true +aquaculture\:fish_ambient=true +alexscaves\:vesper_idle=true +minecraft\:block.nether_sprouts.place=true +graveyard\:entity.corrupted_illager.hurt=true +minecraft\:block.gilded_blackstone.step=true +minecraft\:entity.armor_stand.hit=true +minecraft\:ambient.basalt_deltas.loop=true +marvelous_menagerie\:creature_flops=true +alexsmobs\:sugar_glider_hurt=true +alexsmobs\:orca_die=true +minecraft\:block.sculk_vein.place=true +blue_skies\:block.moonstone_lantern.hit=true +blue_skies\:entity.alchemist.prepare_rocks=true +create\:whistle_low=true +twilightforest\:item.twilightforest.block_and_chain.fire=true +twilightforest\:entity.twilightforest.lich.pop_mob=true +twilightforest\:block.twilightforest.reactor.ambient=true +minecraft\:entity.chicken.step=true +crittersandcompanions\:entity.sea_bunny.death=true +naturalist\:entity.lion.ambient=true +betterend\:betterend.ambient.dust_wastelands=true +blue_skies\:block.mud.break=true +minecraft\:entity.cat.beg_for_food=true +minecraft\:entity.camel.hurt=true +minecraft\:entity.zombie.break_wooden_door=true +create\:mechanical_press_activation_belt_compounded_1=true +rats\:entity.rats.biplane.hurt=true +dungeonsweaponry\:geomancer_wall_spawn=true +minecraft\:entity.sniffer.digging_stop=true +rats\:entity.rats.biplane.shoot=true +gateways\:gate_warp=true +minecraft\:ambient.warped_forest.mood=true +biomesoplenty\:music.nether.visceral_heap=true +naturalist\:entity.alligator.egg_hatch=true +unusualprehistory\:sludge_slap=true +blue_skies\:entity.alchemist.death=true +minecraft\:block.wood.place=true +twilightforest\:entity.twilightforest.alpha_yeti.grab=true +alexsmobs\:mimic_octopus_hurt=true +deeperdarker\:entity.snapper.ambient=true +alexscaves\:notor_death=true +minecraft\:entity.horse.jump=true +dungeonsweaponry\:emerald_pot_break=true +unusualprehistory\:sludge_slam=true +exposure\:item.camera.dial_click=true +naturalist\:entity.boar.hurt=true +endermanoverhaul\:dark_oak_enderman_darkness=true +minecraft\:entity.parrot.imitate.pillager=true +naturalist\:entity.bird.ambient_robin=true +alexscaves\:watcher_idle=true +minecraft\:entity.ravager.death=true +endermanoverhaul\:plant_enderman_hurt=true +minecraft\:block.grindstone.use=true +aether\:entity.aerbunny.death=true +spelunkery\:bonk=true +twilightforest\:entity.twilightforest.snow_queen.attack=true +twilightforest\:item.twilightforest.flask.crack=true +minecraft\:block.candle.step=true +illagerinvasion\:entity.provoker.death=true +blue_skies\:music.brightlands=true +minecraft\:block.cherry_sapling.step=true +minecraft\:entity.armor_stand.fall=true +minecraft\:block.netherite_block.place=true +rats\:entity.rats.neoratlantean.death=true +naturalist\:entity.bear.eat=true +alexscaves\:luxtructosaurus_tail=true +minecraft\:block.cherry_wood.break=true +rats\:entity.rats.ratfish.flop=true +twilightforest\:item.twilightforest.moonworm.squish=true +minecraft\:entity.generic.big_fall=true +minecraft\:block.cherry_leaves.hit=true +twilightforest\:entity.twilightforest.hostile_wolf.target=true +undergarden\:entity.nargoyle.attack=true +alexscaves\:nucleeper_charge=true +minecraft\:entity.wandering_trader.no=true +minecraft\:entity.tadpole.flop=true +naturalist\:entity.duck.hurt=true +minecraft\:block.netherrack.place=true +twilightforest\:entity.twilightforest.minoshroom.death=true +blue_skies\:item.spear.hit_ground=true +minecraft\:block.ladder.step=true +undergarden\:ambient.spires_addition=true +alexscaves\:deep_one_hostile=true +marvelous_menagerie\:dolphin_blowhole=true +unusualprehistory\:hwacha_shoot=true +twilightforest\:block.twilightforest.door.reappear=true +minecraft\:item.hoe.till=true +minecraft\:block.tuff.step=true +alexscaves\:grottoceratops_attack=true +alexscaves\:luxtructosaurus_jump=true +minecraft\:block.wart_block.step=true +rats\:item.rats.rat_flute.no_funny=true +minecraft\:entity.turtle.hurt=true +graveyard\:entity.revenant.hurt=true +aether\:entity.sheepuff.shear=true +illagerinvasion\:entity.invoker.summon_cast=true +crittersandcompanions\:entity.leaf_insect.hurt=true +alexscaves\:forsaken_aoe=true +minecraft\:entity.villager.celebrate=true +minecraft\:block.lodestone.break=true +alexscaves\:mine_guardian_land_hurt=true +blue_skies\:block.mud.place=true +alexscaves\:tremorzilla_bite=true +rats\:entity.rats.plague_doctor.summon=true +earthtojavamobs\:entity.melon_golem.charge=true +blue_skies\:entity.artificial_golem.deactivate=true +alexsmobs\:dropbear_idle=true +minecraft\:entity.parrot.imitate.wither=true +ribbits\:entity.ribbit.death=true +undergarden\:ambient.dense_forest_addition=true +rats\:block.rats.rat_trap.close=true +aether\:entity.phyg.saddle=true +alexsmobs\:elephant_trumpet=true +twilightforest\:entity.twilightforest.snow_queen.death=true +minecraft\:block.sculk_sensor.clicking_stop=true +endermanoverhaul\:soul_pearl_hit=true +minecraft\:entity.vex.death=true +aether\:entity.whirlwind.drop=true +twilightforest\:entity.twilightforest.carminite_golem.step=true +minecraft\:entity.bee.loop=true +minecraft\:block.beehive.work=true +illagerinvasion\:entity.sorcerer.idle=true +blue_skies\:entity.alchemist.prepare_conversion=true +minecraft\:entity.horse.ambient=true +twilightforest\:entity.twilightforest.knight_phantom.axe=true +minecraft\:entity.ender_dragon.death=true +alexscaves\:magnetron_assemble=true +minecraft\:entity.strider.retreat=true +minecraft\:entity.cow.step=true +alexsmobs\:guster_idle=true +minecraft\:entity.allay.item_taken=true +minecraft\:block.note_block.imitate.zombie=true +minecraft\:entity.mooshroom.convert=true +deeperdarker\:block.sculk_stone.fall=true +unusualprehistory\:talpanas_hurt=true +twilightforest\:entity.twilightforest.hedge_spider.step=true +minecraft\:block.sculk_sensor.step=true +blue_skies\:entity.alchemist.cast_spell=true +marvelous_menagerie\:josepho_death=true +minecraft\:block.bell.resonate=true +minecraft\:entity.mooshroom.milk=true +minecraft\:block.dispenser.fail=true +blue_skies\:item.arc.nature_equip=true +minecraft\:entity.goat.screaming.prepare_ram=true +minecraft\:block.nether_sprouts.break=true +deeperdarker\:entity.angler_fish.hurt=true +minecraft\:item.crossbow.shoot=true +blue_skies\:entity.nyctofly.death=true +minecraft\:entity.bee.sting=true +alexscaves\:spelunkery_table_tablet_insert=true +minecraft\:block.chest.open=true +naturalist\:entity.snake.hiss=true +minecraft\:block.netherite_block.break=true +aether\:item.armor.equip_sentry=true +alexscaves\:sea_staff_bubble=true +blue_skies\:block.star_emitter.use=true +twilightforest\:entity.twilightforest.redcap.hurt=true +alexsmobs\:transmute_item=true +minecraft\:block.sculk_vein.break=true +naturalist\:entity.duck.death=true +minecraft\:block.fire.ambient=true +twilightforest\:entity.twilightforest.carminite_ghastling.warn=true +minecraft\:block.wooden_trapdoor.open=true +betterend\:betterend.record.grasping_at_stars=true +undergarden\:entity.sploogie.death=true +create_dd\:creatvedite_step=true +immersive_weathering\:icicle_crack=true +twilightforest\:entity.twilightforest.winter_wolf.ambient=true +minecraft\:entity.fox.aggro=true +chimes\:block.amethyst.shimmering=true +blue_skies\:block.everdawn.portal.travel=true +minecraft\:entity.player.levelup=true +minecraft\:entity.glow_item_frame.place=true +minecraft\:entity.parrot.imitate.wither_skeleton=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 +betterend\:betterend.ambient.amber_land=true +alexsmobs\:gelada_monkey_hurt=true +farmersdelight\:block.tomato_bush.pick_tomatoes=true +minecraft\:item.trident.riptide_3=true +alexscaves\:ferrouslime_combine=true +minecraft\:item.trident.riptide_2=true +minecraft\:block.pointed_dripstone.fall=true +minecraft\:entity.piglin_brute.hurt=true +aether\:item.swet_ball.use=true +alexsmobs\:bunfungus_attack=true +minecraft\:entity.fox.eat=true +alexscaves\:neodymium_breaking=true +minecraft\:block.azalea.break=true +minecraft\:entity.armor_stand.place=true +alexsmobs\:grizzly_bear_hurt=true +deeperdarker\:entity.stalker.hurt=true +minecraft\:item.trident.riptide_1=true +rats\:entity.rats.neoratlantean.loop=true +minecraft\:block.mud_bricks.step=true +twilightforest\:environment.twilightforest.acid_rain=true +undergarden\:block.gronglet.ambient=true +alexsmobs\:murmur_attack=true +betternether\:betternether.mob.naga_idle=true +supplementaries\:block.jar.cookie=true +minecraft\:block.netherite_block.step=true +alexsmobs\:hummingbird_loop=true +dungeonsweaponry\:vanguard_death=true +furniture\:cabinet_close=true +minecraft\:block.deepslate.hit=true +unusualprehistory\:palaeo_bite=true +undergarden\:entity.rotwalker.step=true +graveyard\:entity.acolyte.hurt=true +minecraft\:entity.warden.sniff=true +twilightforest\:entity.twilightforest.minoshroom.hurt=true +aether\:entity.sentry.death=true +supplementaries\:block.present.open=true +undergarden\:entity.stoneborn.angry=true +minecraft\:entity.polar_bear.ambient_baby=true +minecraft\:block.sculk.hit=true +blue_skies\:block.everbright.portal=true +aether\:entity.slider.hurt=true +alexscaves\:tripodfish_flop=true +minecraft\:entity.warden.nearby_closer=true +naturalist\:entity.zebra.breathe=true +minecraft\:block.hanging_roots.fall=true +unusualprehistory\:giganto_trade=true +create\:controller_take=true +minecraft\:block.bamboo_wood.break=true +minecraft\:entity.parrot.imitate.ender_dragon=true +minecraft\:block.water.ambient=true +minecraft\:entity.donkey.eat=true +tropicraft\:frogspit=true +earthtojavamobs\:entity.jumbo_rabbit.ambient=true +minecraft\:ambient.underwater.enter=true +minecraft\:entity.puffer_fish.hurt=true +minecraft\:entity.piglin.celebrate=true +graveyard\:entity.ghoul.ambient=true +minecraft\:entity.guardian.death=true +minecraft\:entity.camel.dash_ready=true +minecraft\:entity.iron_golem.repair=true +minecraft\:block.shulker_box.close=true +undergarden\:entity.smog_mog.death=true +alexscaves\:metal_barrel_lid=true +illagerinvasion\:entity.surrendered.hurt=true +alexsmobs\:rattlesnake_hurt=true +minecraft\:entity.guardian.flop=true +minecraft\:entity.glow_item_frame.remove_item=true +alexsmobs\:platypus_hurt=true +minecraft\:entity.salmon.hurt=true +unusualfishmod\:sawing=true +create\:clipboard_erase=true +minecraft\:entity.turtle.shamble_baby=true +create\:mixing=true +create\:confirm=true +alexsmobs\:april_fools_power_outage=true +supplementaries\:block.turntable.cat=true +farmersdelight\:entity.rotten_tomato.hit=true +blue_skies\:entity.crystal_camel.step=true +alexscaves\:sea_staff_cast=true +rats\:entity.rats.rat.teleport=true +doapi\:cooking_pot_boiling=true +graveyard\:entity.lich.heal=true +twilightforest\:block.twilightforest.core.transformation=true +undergarden\:entity.forgotten_guardian.step=true +minecraft\:entity.hoglin.retreat=true +minecraft\:block.roots.fall=true +aether\:entity.valkyrie_queen.hurt=true +alexscaves\:cave_book_open=true +deeperdarker\:entity.shattered.hurt=true +minecraft\:block.flowering_azalea.break=true +minecraft\:block.nether_wood.step=true +unusualprehistory\:raptor_idle=true +alexscaves\:hullbreaker_land_death=true +minecraft\:block.sculk_shrieker.hit=true +undergarden\:entity.forgotten.step=true +twilightforest\:entity.twilightforest.blockchain_goblin.hurt=true +alexscaves\:atlatitan_tail=true +minecraft\:block.hanging_roots.hit=true +aether\:entity.valkyrie.hurt=true +illagerinvasion\:entity.firecaller.death=true +minecraft\:item.trident.throw=true +minecraft\:entity.armor_stand.break=true +minecraft\:entity.player.attack.nodamage=true +blue_skies\:entity.stonelet.death=true +mcwwindows\:block.blinds_open=true +twilightforest\:block.twilightforest.ghast_trap.on=true +minecraft\:entity.cow.milk=true +unusualprehistory\:giganto_hurt=true +minecraft\:block.nylium.fall=true +minecraft\:block.sculk.step=true +alexscaves\:primordial_caves_ambience_additions=true +artifacts\:entity.mimic.open=true +naturalist\:entity.lion.roar=true +alexsmobs\:mosquito_hurt=true +minecraft\:ui.toast.in=true +alexsmobs\:rattlesnake_attack=true +twilightforest\:entity.twilightforest.minotaur.step=true +rats\:entity.rats.black_death.death=true +twilightforest\:entity.twilightforest.death_tome.death=true +alexscaves\:tremorzilla_beam_loop=true +minecraft\:entity.enderman.ambient=true +minecraft\:item.crossbow.loading_start=true +minecraft\:entity.shulker.shoot=true +minecraft\:entity.drowned.swim=true +undergarden\:entity.mog.death=true +blue_skies\:entity.alchemist.hurt=true +graveyard\:entity.lich.phase_three=true +minecraft\:entity.parrot.imitate.ghast=true +minecraft\:block.honey_block.step=true +ribbits\:entity.ribbit.step=true +aether\:entity.sentry.hurt=true +naturalist\:entity.tortoise.egg_break=true +alexscaves\:watcher_scare=true +minecraft\:entity.squid.ambient=true +twilightforest\:entity.twilightforest.winter_wolf.shoot=true +blue_skies\:entity.emberback.death=true +aether\:item.lightning_knife.shoot=true +crittersandcompanions\:entity.otter.eat=true +blue_skies\:entity.artificial_golem.attack=true +minecraft\:block.respawn_anchor.set_spawn=true +minecraft\:block.wooden_pressure_plate.click_off=true +crittersandcompanions\:entity.ferret.ambient=true +alexscaves\:atlatitan_death=true +minecraft\:entity.villager.work_fisherman=true +minecraft\:music.overworld.forest=true +minecraft\:item.trident.return=true +minecraft\:entity.turtle.egg_crack=true +undergarden\:entity.mog.ambient=true +marvelous_menagerie\:creature_swim=true +rats\:entity.rats.rat_beast.growl=true +alexscaves\:amber_monolith_summon=true +undergarden\:entity.forgotten.ambient=true +twilightforest\:entity.twilightforest.naga.rattle=true +twilightforest\:entity.twilightforest.yeti.hurt=true +minecraft\:block.mud.step=true +undergarden\:music.disc.relict=true +twilightforest\:entity.twilightforest.alpha_yeti.death=true +alexscaves\:submarine_light_off=true +minecraft\:entity.camel.stand=true +minecraft\:block.nether_gold_ore.step=true +twilightforest\:block.twilightforest.jet.start=true +minecraft\:entity.spider.ambient=true +alexsmobs\:toucan_idle=true +marvelous_menagerie\:caris_armor_repair=true +minecraft\:block.bamboo_wood.place=true +naturalist\:entity.catfish.flop=true +supplementaries\:block.jar.place=true +exposure\:block.lightroom.print=true +twilightforest\:entity.twilightforest.goblin_knight.ambient=true +minecraft\:block.fungus.step=true +blue_skies\:music.generic_defeat=true +blue_skies\:block.mud.step=true +alexscaves\:spelunkery_table_attempt_fail=true +minecraft\:entity.tropical_fish.death=true +alexsmobs\:raccoon_idle=true +minecraft\:block.moss_carpet.step=true +minecraft\:ambient.crimson_forest.mood=true +doapi\:typewriter=true +minecraft\:block.bamboo_wood_hanging_sign.hit=true +minecraft\:entity.hostile.death=true +twilightforest\:block.twilightforest.vanish.vanish=true +minecraft\:entity.warden.roar=true +aether\:entity.zephyr.death=true +undergarden\:entity.rotbeast.step=true +minecraft\:block.flowering_azalea.place=true +twilightforest\:entity.twilightforest.maze_slime.squish=true +minecraft\:entity.minecart.inside.underwater=true +minecraft\:entity.strider.hurt=true +alexscaves\:forlorn_hollows_ambience_mood=true +twilightforest\:item.twilightforest.ice_bomb.fired=true +alexscaves\:geothermal_vent_bubble_underwater=true +alexscaves\:forsaken_spawn=true +minecraft\:entity.evoker.prepare_attack=true +blue_skies\:entity.arachnarch.death=true +aquaculture\:bobber_land_lava=true +alexscaves\:forsaken_grab=true +aether\:entity.moa.saddle=true +minecraft\:entity.horse.angry=true +minecraft\:entity.zoglin.ambient=true +blue_skies\:block.keystone.teleport=true +exposure\:item.camera.shutter_close=true +dungeonsweaponry\:vanguard_walk=true +minecraft\:block.soul_sand.fall=true +alexscaves\:underzealot_attack=true +create\:mechanical_press_activation_belt=true +minecraft\:entity.strider.saddle=true +minecraft\:entity.zombie_horse.hurt=true +undergarden\:item.blisterberry_bush.pick=true +rats\:entity.rats.plague_cloud.death=true +alexsmobs\:lobster_hurt=true +alexscaves\:beholder_breaking=true +minecraft\:block.enchantment_table.use=true +undergarden\:entity.nargoyle.death=true +minecraft\:entity.frog.long_jump=true +minecraft\:entity.hostile.splash=true +alexscaves\:flood_basalt_break=true +minecraft\:block.wood.step=true +minecraft\:entity.goat.screaming.hurt=true +minecraft\:block.bamboo_wood_hanging_sign.step=true +minecraft\:block.note_block.guitar=true +minecraft\:entity.rabbit.hurt=true +alexsmobs\:bunfungus_jump=true +minecraft\:entity.wandering_trader.reappeared=true +betterend\:betterend.entity.dragonfly=true +alexscaves\:tremorzilla_beam_start=true +minecraft\:item.honey_bottle.drink=true +alexsmobs\:seal_idle=true +minecraft\:entity.turtle.death=true +unusualprehistory\:encrusted_spit=true +blue_skies\:music.poison_dungeon_ambience=true +minecraft\:entity.fox.ambient=true +minecraft\:entity.villager.work_farmer=true +twilightforest\:item.twilightforest.shield.shatter=true +blue_skies\:entity.emberback.spray=true +aquaculture\:bobber_bait=true +aquaculture\:jellyfish_flop=true +chimes\:block.bamboo.chime=true +aether\:item.dart_shooter.shoot=true +blue_skies\:entity.gatekeeper.idle=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 +graveyard\:entity.lich.hunt=true +minecraft\:entity.axolotl.idle_water=true +supplementaries\:block.clock.tick_1=true +supplementaries\:block.clock.tick_2=true +alexscaves\:notor_hurt=true +minecraft\:music.overworld.grove=true +rats\:music_disc.rats.mice_on_venus=true +minecraft\:block.note_block.didgeridoo=true +alexscaves\:brainiac_lick=true +blue_skies\:entity.starlit_crusher.prepare_large_growth=true +aether\:entity.aerbunny.hurt=true +minecraft\:entity.vex.hurt=true +minecraft\:block.fence_gate.open=true +alexscaves\:tremorzilla_idle=true +aether\:ui.toast.aether_bronze=true +blue_skies\:entity.reindeer.idle=true +unusualprehistory\:barina_hurt=true +alexsmobs\:flutter_no=true +blue_skies\:entity.crynocerous.hurt=true +minecraft\:block.sniffer_egg.plop=true +minecraft\:block.chain.step=true +crittersandcompanions\:entity.bite_attack=true +minecraft\:block.lava.pop=true +twilightforest\:block.twilightforest.door.activate=true +alexscaves\:corrodent_teeth=true +alexscaves\:subterranodon_hurt=true +alexscaves\:gloomoth_death=true +ribbits\:entity.ribbit.hurt=true +twilightforest\:block.twilightforest.portal.whoosh=true +minecraft\:block.amethyst_block.hit=true +minecraft\:block.beacon.ambient=true +crittersandcompanions\:entity.otter.hurt=true +create\:saw_activate_wood=true +minecraft\:entity.guardian.hurt_land=true +marvelous_menagerie\:steller_hurt=true +minecraft\:entity.panda.death=true +earthtojavamobs\:entity.jolly_llama.eat=true +natures_spirit\:music.overworld.alpine=true +alexscaves\:tube_worm_step=true +twilightforest\:entity.twilightforest.winter_wolf.hurt=true +minecraft\:block.nether_ore.fall=true +minecraft\:block.soul_soil.place=true +graveyard\:entity.revenant.step=true +alexscaves\:sea_pig_hurt=true +illagerinvasion\:entity.invoker.fangs=true +undergarden\:entity.gloomper.ambient=true +dungeonsweaponry\:enchanter_death=true +graveyard\:entity.ghouling.spawn=true +undergarden\:music.disc.limax_maximus=true +minecraft\:block.wooden_button.click_on=true +minecraft\:block.shroomlight.break=true +gateways\:gate_start=true +minecraft\:entity.squid.hurt=true +alexscaves\:abyssal_chasm_ambience=true +minecraft\:block.cherry_wood_trapdoor.open=true +naturalist\:entity.bear.death=true +alexscaves\:sea_pig_death=true +minecraft\:block.muddy_mangrove_roots.fall=true +graveyard\:entity.lich.levitation=true +minecraft\:entity.shulker.hurt_closed=true +graveyard\:entity.lich.hurt=true +blue_skies\:block.tool_box.use_falsite=true +twilightforest\:entity.twilightforest.knight_phantom.hurt=true +minecraft\:entity.parrot.imitate.hoglin=true +alexsmobs\:bear_dust=true +twilightforest\:entity.twilightforest.pinch_beetle.hurt=true +alexscaves\:deep_one_knight_hurt=true +doapi\:drawer_close=true +alexsmobs\:hummingbird_hurt=true +minecraft\:entity.magma_cube.death_small=true +aether\:entity.valkyrie.death=true +minecraft\:entity.phantom.hurt=true +minecraft\:block.candle.hit=true +create\:saw_activate_stone=true +deeperdarker\:item.transmitter.link=true +minecraft\:entity.allay.ambient_with_item=true +alexscaves\:hullbreaker_death=true +minecraft\:entity.slime.death=true +twilightforest\:entity.twilightforest.helmet_crab.death=true +undergarden\:entity.rotwalker.ambient=true +effective\:ambience.small_splash=true +minecraft\:block.moss_carpet.place=true +twilightforest\:block.twilightforest.beanstalk.grow=true +undergarden\:entity.gwib.death=true +crittersandcompanions\:entity.leaf_insect.death=true +tropicraft\:bongo.high=true +twilightforest\:entity.twilightforest.hostile_wolf.death=true +minecraft\:block.bamboo.hit=true +illagerinvasion\:entity.invoker.hurt=true +minecraft\:block.bamboo_wood_pressure_plate.click_off=true +supplementaries\:item.wrench.hit=true +rats\:entity.rats.rat.santa=true +blue_skies\:block.moonstone_lantern.place=true +alexscaves\:primitive_club_hit=true +minecraft\:music_disc.blocks=true +unusualprehistory\:giganto_death=true +aquaculture\:fish_mount_placed=true +endermanoverhaul\:summoner_pearl_hit=true +minecraft\:entity.glow_squid.ambient=true +minecraft\:item.honeycomb.wax_on=true +minecraft\:entity.wither.break_block=true +minecraft\:block.ender_chest.close=true +twilightforest\:item.twilightforest.charm.keep=true +twilightforest\:entity.twilightforest.carminite_ghastguard.ambient=true +cave_dweller\:spotted=true +blue_skies\:entity.frost_spirit.death=true +minecraft\:item.armor.equip_diamond=true +minecraft\:block.nether_wood.place=true +alexsmobs\:mudskipper_walk=true +minecraft\:entity.blaze.shoot=true +minecraft\:entity.sheep.shear=true +minecraft\:block.beacon.activate=true +minecraft\:entity.turtle.egg_hatch=true +unusualprehistory\:sludge_death=true +minecraft\:block.redstone_torch.burnout=true +alexsmobs\:moose_hurt=true +minecraft\:entity.zombified_piglin.angry=true +minecraft\:block.moss.step=true +blue_skies\:entity.alchemist.celebrate=true +alexscaves\:flood_basalt_place=true +minecraft\:entity.cat.hiss=true +minecraft\:block.nether_wart.break=true +minecraft\:entity.goat.long_jump=true +rats\:entity.rats.neoratlantean.summon=true +aether\:item.armor.equip_zanite=true +tropicraft\:headlaughing=true +blue_skies\:entity.polargeist.attack=true +naturalist\:item.bucket.fill_snail=true +trackwork\:spring_tool=true +alexsmobs\:caiman_idle=true +twilightforest\:entity.twilightforest.yeti.grab=true +goated\:geep.hurt=true +minecraft\:block.sniffer_egg.crack=true +minecraft\:entity.endermite.ambient=true +twilightforest\:entity.twilightforest.carminite_broodling.hurt=true +minecraft\:block.ancient_debris.step=true +create\:slime_added=true +minecraft\:block.polished_deepslate.step=true +minecraft\:block.bamboo_wood.fall=true +blue_skies\:entity.alchemist.prepare_regen=true +alexscaves\:raycat_tame_idle=true +alexsmobs\:alligator_snapping_turtle_hurt=true +furniture\:coffer_open=true +unusualprehistory\:palaeo_hurt=true +alexscaves\:magnetic_caves_ambience=true +railways\:handcar_cogs=true +minecraft\:entity.bat.death=true +twilightforest\:block.twilightforest.jet.pop=true +minecraft\:item.bottle.fill=true +undergarden\:entity.gloomper.hop=true +alexscaves\:boundroid_chain_loop=true +enhancedai\:creeper_cena_fuse=true +minecraft\:entity.strider.step=true +betterend\:betterend.ambient.megalake_grove=true +minecraft\:entity.panda.aggressive_ambient=true +aether\:block.dungeon_trap.trigger=true +twilightforest\:entity.twilightforest.goblin_knight.muffled.death=true +minecraft\:block.big_dripleaf.hit=true +doapi\:dinner_bell=true +minecraft\:entity.husk.converted_to_zombie=true +minecraft\:entity.villager.work_cleric=true +minecraft\:entity.piglin_brute.death=true +minecraft\:entity.llama.death=true +minecraft\:entity.piglin.hurt=true +twilightforest\:entity.twilightforest.maze_slime.hurt=true +undergarden\:ambient.abyss=true +marvelous_menagerie\:egg_armor=true +blue_skies\:music.brittlebush=true +alexscaves\:acid_corrosion=true +minecraft\:music.overworld.lush_caves=true +alexscaves\:forsaken_death=true +minecraft\:entity.boat.paddle_land=true +minecraft\:entity.frog.tongue=true +graveyard\:block.coffin.close=true +minecraft\:entity.fox.sniff=true +blue_skies\:entity.crystal_camel.idle=true +undergarden\:ambient.abyss_addition=true +minecraft\:entity.wither_skeleton.step=true +minecraft\:entity.drowned.hurt_water=true +alexsmobs\:spectre_hurt=true +twilightforest\:entity.twilightforest.minion.ambient=true +betterend\:betterend.music.forest=true +minecraft\:entity.sheep.hurt=true +minecraft\:block.metal.fall=true +minecraft\:entity.ender_dragon.growl=true +minecraft\:entity.vindicator.hurt=true +twilightforest\:entity.twilightforest.wraith.hurt=true +create\:blaze_munch=true +undergarden\:entity.muncher.hurt=true +blue_skies\:entity.jelly_drifter.hurt=true +create_connected\:elevator_music=true +alexscaves\:notor_flying=true +duckling\:quack=true +minecraft\:item.bucket.fill_fish=true +minecraft\:block.moss_carpet.break=true +mcwwindows\:block.blinds_close=true +undergarden\:entity.gloomper.hurt=true +undergarden\:ambient.sea_addition=true +alexsmobs\:maned_wolf_idle=true +minecraft\:block.nether_wood_hanging_sign.break=true +deeperdarker\:block.vase.step=true +undergarden\:ambient.fields_addition=true +minecraft\:block.soul_sand.hit=true +exposure\:item.photograph.break=true +alexsmobs\:blue_jay_idle=true +alexscaves\:tremorsaurus_death=true +minecraft\:block.soul_soil.break=true +alexsmobs\:bone_serpent_idle=true +create\:mechanical_press_activation_compounded_1=true +minecraft\:block.ladder.hit=true +minecraft\:entity.polar_bear.warning=true +minecraft\:entity.piglin_brute.converted_to_zombified=true +additional_lights\:undo=true +naturalist\:entity.bird.death=true +minecraft\:entity.parrot.imitate.elder_guardian=true +twilightforest\:entity.twilightforest.king_spider.step=true +minecraft\:music.overworld.flower_forest=true +blue_skies\:block.moonstone_lantern.break=true +minecraft\:item.ink_sac.use=true +minecraft\:entity.witch.death=true +alexscaves\:mine_guardian_scan=true +alexsmobs\:giant_squid_games=true +naturalist\:entity.bear.ambient_baby=true +minecraft\:entity.sheep.ambient=true +blue_skies\:entity.sliv.idle=true +unusualprehistory\:ulugh_hurt=true +minecraft\:entity.snow_golem.shear=true +unusualprehistory\:antarcto_hurt=true +minecraft\:block.azalea_leaves.step=true +alexscaves\:tephra_hit=true +minecraft\:item.armor.equip_chain=true +earthtojavamobs\:entity.melon_golem.seed.hit=true +twilightforest\:entity.twilightforest.boar.hurt=true +alexscaves\:gossamer_worm_death=true +minecraft\:entity.zombie_villager.hurt=true +minecraft\:item.bucket.empty_milk=true +minecraft\:entity.dolphin.eat=true +minecraft\:entity.evoker.hurt=true +rats\:entity.rats.ratlantean_spirit.death=true +minecraft\:item.bucket.fill_lava=true +twilightforest\:entity.twilightforest.knight_phantom.ambient=true +alexscaves\:dark_cloud_disappear=true +minecraft\:entity.generic.small_fall=true +unusualfishmod\:crab_chatter=true +minecraft\:block.chiseled_bookshelf.hit=true +createbigcannons\:flak_round_explosion=true +alexsmobs\:tusklin_idle=true +unusualprehistory\:paracer_hurt=true +minecraft\:block.chain.break=true +alexsmobs\:tarantula_hawk_hurt=true +twilightforest\:block.twilightforest.builder.on=true +minecraft\:entity.ravager.hurt=true +rats\:entity.rats.ratlantean_ratbot.ambient=true +twilightforest\:entity.twilightforest.bighorn_sheep.ambient=true +alexsmobs\:mimicube_jump=true +minecraft\:block.wooden_button.click_off=true +undergarden\:ambient.mood=true +tropicraft\:ashen_laugh=true +marvelous_menagerie\:josepho_hurt=true +alexscaves\:radgill_hurt=true +deeperdarker\:entity.stalker.ambient=true +alexscaves\:tremorsaurus_roar=true +minecraft\:entity.bee.loop_aggressive=true +duckling\:deep_quack=true +minecraft\:block.scaffolding.hit=true +betternether\:betternether.ambient.nether_jungle=true +minecraft\:event.raid.horn=true +twilightforest\:entity.twilightforest.skeleton_druid.shoot=true +earthtojavamobs\:entity.skeleton_wolf.growl=true +minecraft\:entity.goat.screaming.death=true +minecraft\:block.anvil.destroy=true +alexsmobs\:shoebill_hurt=true +alexscaves\:nuclear_explosion_ringing=true +undergarden\:music.disc.mammoth=true +undergarden\:entity.rotbeast.hurt=true +alexscaves\:nucleeper_hurt=true +minecraft\:block.cherry_wood.place=true +minecraft\:block.hanging_roots.break=true +minecraft\:block.netherrack.break=true +twilightforest\:entity.twilightforest.minoshroom.slam=true +deeperdarker\:music.otherside.echoing_forest=true +alexscaves\:toxic_caves_ambience_mood=true +minecraft\:entity.piglin.death=true +rats\:block.rats.cheese_cauldron.nether_cheese_made=true +blue_skies\:music.generic_boss=true +twilightforest\:entity.twilightforest.hydra.warn=true +createbigcannons\:machine_gun_round_flyby=true +minecraft\:entity.warden.listening_angry=true +minecraft\:entity.player.breath=true +alexsmobs\:murmur_idle=true +illagerinvasion\:entity.archivist.death=true +blue_skies\:entity.gatekeeper.cast_spell=true +marvelous_menagerie\:dodo_idle=true +blue_skies\:entity.artificial_golem.hurt=true +twilightforest\:entity.twilightforest.tiny_bird.takeoff=true +naturalist\:entity.bear.spit=true +blue_skies\:music.brisegel=true +earthtojavamobs\:entity.jolly_llama.detect_fern=true +rats\:entity.rats.pied_piper.death=true +earthtojavamobs\:entity.fancy_chicken.ambient=true +alexscaves\:magnetron_step=true +alexscaves\:magic_conch_summon=true +minecraft\:block.spore_blossom.hit=true +rats\:entity.rats.black_death.hurt=true +minecraft\:entity.axolotl.attack=true +alexsmobs\:underminer_idle=true +minecraft\:entity.turtle.hurt_baby=true +alexsmobs\:moose_jostle=true +minecraft\:entity.horse.land=true +minecraft\:entity.parrot.step=true +minecraft\:music.dragon=true +minecraft\:block.big_dripleaf.place=true +supplementaries\:block.bellows.blow=true +minecraft\:block.basalt.fall=true +furniture\:grandfathers_clock_ticking=true +minecraft\:entity.player.big_fall=true +minecraft\:block.stone_button.click_off=true +minecraft\:entity.chicken.egg=true +minecraft\:block.amethyst_cluster.hit=true +minecraft\:block.ladder.break=true +rats\:entity.rats.ratlantean_automaton.ambient=true +deeperdarker\:entity.shattered.notice=true +berry_good\:music_disc.fox=true +minecraft\:entity.glow_item_frame.break=true +minecraft\:item.crossbow.hit=true +alexscaves\:tremorsaurus_idle=true +graveyard\:entity.lich.scare=true +minecraft\:entity.elder_guardian.hurt_land=true +rats\:entity.rats.black_death.ambient=true +minecraft\:block.end_portal.spawn=true +minecraft\:music.overworld.snowy_slopes=true +blue_skies\:entity.crogre.idle=true +naturalist\:entity.snail.forward=true +alexscaves\:brainiac_hurt=true +alexsmobs\:farseer_beam=true +twilightforest\:entity.twilightforest.blockchain_goblin.ambient=true +alexscaves\:geothermal_vent_bubble=true +furniture\:coffer_close=true +unusualprehistory\:hwacha_hurt=true +blue_skies\:music.turquoise=true +minecraft\:block.sculk.break=true +minecraft\:entity.zombie_villager.converted=true +minecraft\:block.chain.place=true +biomeswevegone\:music_disc.pixie_club=true +undergarden\:ambient.bog_addition=true +aether\:entity.slider.ambient=true +peculiarprimordials\:anhinga=true +alexscaves\:flood_basalt_breaking=true +alexsmobs\:mosquito_die=true +blue_skies\:ambient.snow_wind.additions=true +minecraft\:entity.zombie_villager.ambient=true +minecraft\:entity.enderman.death=true +create\:contraption_assemble=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 +alexscaves\:luxtructosaurus_stomp=true +doapi\:breath=true +minecraft\:block.big_dripleaf.tilt_down=true +twilightforest\:entity.twilightforest.carminite_broodling.death=true +minecraft\:block.hanging_roots.place=true +undergarden\:ambient.frostfields_addition=true +unusualprehistory\:pachy_headbutt=true +deeperdarker\:block.vase.hit=true +alexscaves\:forlorn_hollows_music=true +blue_skies\:ambient.rain.drizzle=true +minecraft\:block.note_block.xylophone=true +aether\:entity.aerbunny.lift=true +ribbits\:music.ribbit.guitar=false +goated\:geep.long_jump=true +alexsmobs\:laviathan_hurt=true +vs_clockwork\:designator_select_start=true +earthtojavamobs\:entity.moobloom.plant=true +alexscaves\:hullbreaker_hurt=true +alexscaves\:forsaken_step=true +dungeonsweaponry\:enchanter_hurt=true +earthtojavamobs\:entity.jumbo_rabbit.hurt=true +minecraft\:entity.vex.ambient=true +minecraft\:block.dripstone_block.break=true +additional_lights\:change=true +blue_skies\:entity.villager.work_alchemist=true +aether\:item.armor.equip_gravitite=true +exposure\:item.camera.button_click=true +alexscaves\:gossamer_worm_hurt=true +minecraft\:block.shroomlight.place=true +minecraft\:entity.guardian.ambient_land=true +unusualprehistory\:paracer_death=true +rats\:entity.rats.neoratlantean.ambient=true +illagerinvasion\:entity.invoker.ambient=true +minecraft\:entity.generic.eat=true +twilightforest\:item.twilightforest.charm.life=true +minecraft\:block.weeping_vines.step=true +aether\:block.altar.crackle=true +minecraft\:block.cherry_wood.hit=true +illagerinvasion\:entity.basher.death=true +twilightforest\:block.twilightforest.vanish.unlock=true +minecraft\:entity.husk.step=true +minecraft\:entity.zombie.death=true +create\:wrench_rotate=true +earthtojavamobs\:entity.fancy_chicken.flee=true +minecraft\:block.sculk_catalyst.hit=true +goated\:geep.infestation=true +rats\:block.rats.air_raid.siren=true +aquaculture\:fish_flop=true +dungeonsweaponry\:mountaineer_hurt=true +spelunkery\:portal_fluid_bottle_fill=true +blue_skies\:entity.infested_swarmer.bite=true +marvelous_menagerie\:large_footsteps=true +twilightforest\:entity.twilightforest.hydra.death=true +minecraft\:entity.allay.item_given=true +minecraft\:entity.wolf.howl=true +blue_skies\:entity.villager.work_nightwatcher=true +minecraft\:entity.iron_golem.death=true +spelunkery\:portal_fluid_submerge=true +naturalist\:entity.bird.fly=true +twilightforest\:item.twilightforest.transformation_powder.use=true +minecraft\:music.overworld.jungle=true +doapi\:cooking_pot_hit=true +alexscaves\:spelunkery_table_paper_insert=true +minecraft\:block.chiseled_bookshelf.pickup=true +supplementaries\:block.crank=true +minecraft\:entity.item_frame.remove_item=true +minecraft\:entity.warden.ambient=true +betterend\:betterend.music.caves=true +minecraft\:block.flowering_azalea.hit=true +alexscaves\:resistor_shield_azure_loop=true +doapi\:beer_elemental_ambient=true +minecraft\:entity.iron_golem.damage=true +minecraft\:block.beehive.enter=true +minecraft\:entity.elder_guardian.curse=true +rats\:entity.rats.rat.death=true +minecraft\:block.coral_block.fall=true +minecraft\:block.nether_wood.break=true +alexscaves\:peering_coprolith_step=true +minecraft\:block.sculk.place=true +alexscaves\:quarry_crush=true +alexscaves\:tremorzilla_roar=true +illagerinvasion\:entity.invoker.shield_create=true +aether\:ui.toast.aether_general=true +createbigcannons\:fire_autocannon=true +minecraft\:entity.generic.splash=true +alexscaves\:mine_guardian_death=true +unusualprehistory\:crocarina=true +minecraft\:block.sculk_catalyst.place=true +goated\:geep.death=true +naturalist\:entity.zebra.jump=true +minecraft\:entity.frog.ambient=true +minecraft\:entity.slime.squish=true +minecraft\:block.sniffer_egg.hatch=true +aquaculture\:bottle_open=true +aether\:entity.flying_cow.hurt=true +twilightforest\:entity.twilightforest.maze_slime_small.hurt=true +blue_skies\:entity.villager.work_stargazer=true +vinery\:block.grapevine_pot.squeeze=true +minecraft\:entity.bat.loop=true +dungeonsweaponry\:geomancer_bomb_spawn=true +deeperdarker\:entity.leech.hurt=true +alexsmobs\:gazelle_hurt=true +vs_clockwork\:thick_fluid_empty=true +minecraft\:block.amethyst_block.step=true +minecraft\:block.decorated_pot.break=true +undergarden\:entity.brute.death=true +alexscaves\:tremorzilla_death=true +minecraft\:block.metal.hit=true +blue_skies\:entity.frost_spirit.free=true +alexsmobs\:potoo_call=true +alexsmobs\:roadrunner_idle=true +minecraft\:block.big_dripleaf.break=true +twilightforest\:item.twilightforest.flask.fill=true +alexscaves\:abyssmarine_glow_off=true +blue_skies\:entity.starlit_crusher.idle=true +aether\:entity.phyg.death=true +alexscaves\:submarine_hit=true +exposure\:item.camera.release_button_click=true +unusualprehistory\:megather_idle=true +aether\:block.aether_portal.travel=true +rats\:item.rats.ratlantean_flame.shoot=true +deeperdarker\:music.otherside.overcast_columns=true +minecraft\:block.ladder.place=true +undergarden\:entity.forgotten_guardian.hurt=true +minecraft\:block.dripstone_block.place=true +biomesoplenty\:music.nether.undergrowth=true +twilightforest\:entity.twilightforest.alpha_yeti.pant=true +vs_clockwork\:doink=true +alexsmobs\:skunk_hurt=true +chimes\:block.iron.tie=true +minecraft\:block.soul_soil.fall=true +minecraft\:block.big_dripleaf.fall=true +minecraft\:block.stone_button.click_on=true +minecraft\:entity.slime.squish_small=true +betterend\:betterend.ambient.glowing_grasslands=true +minecraft\:entity.villager.work_cartographer=true +minecraft\:entity.warden.nearby_closest=true +minecraft\:block.fence_gate.close=true +minecraft\:entity.mule.ambient=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.dolphin.jump=true +unusualprehistory\:tar_pop=true +alexsmobs\:potoo_hurt=true +minecraft\:block.sculk_catalyst.fall=true +betterend\:betterend.record.strange_and_alien=true +supplementaries\:block.gunpowder.ignite=true +graveyard\:entity.reaper.hurt=true +minecraft\:block.ancient_debris.break=true +alexscaves\:galena_gauntlet_stop=true +undergarden\:entity.rotling.death=true +blue_skies\:entity.stardust_ram.idle=true +minecraft\:block.chiseled_bookshelf.break=true +minecraft\:block.cherry_leaves.fall=true +alexscaves\:moth_ball_place=true +graveyard\:entity.corrupted_illager.death=true +minecraft\:block.azalea_leaves.break=true +twilightforest\:entity.twilightforest.kobold.munch=true +minecraft\:entity.hostile.big_fall=true +minecraft\:entity.turtle.death_baby=true +marvelous_menagerie\:baby_elephant_bird_idle=true +undergarden\:ambient.gronglegrowth_addition=true +spelunkery\:portal_fluid_ambient=true +alexscaves\:lanternfish_hurt=true +minecraft\:entity.cod.death=true +dungeonsweaponry\:wraith_idle=true +blue_skies\:entity.azulfo.hurt=true +minecraft\:block.scaffolding.fall=true +create\:cranking=true +minecraft\:entity.splash_potion.throw=true +unusualprehistory\:raptor_search=true +minecraft\:entity.dolphin.splash=true +twilightforest\:entity.twilightforest.boar.step=true +undergarden\:block.undergarden_portal.travel=true +aether\:item.music_disc.high=true +alexsmobs\:crow_idle=true +minecraft\:entity.wither.ambient=true +graveyard\:entity.reaper.charge=true +undergarden\:block.undergarden_portal.activate=true +alexsmobs\:flutter_yes=true +minecraft\:entity.creeper.primed=true +beachparty\:radio_tropical=true +minecraft\:entity.horse.eat=true +endermanoverhaul\:cave_enderman_ambient=true +twilightforest\:entity.twilightforest.parrot.imitate.hydra=true +twilightforest\:entity.twilightforest.minotaur.ambient=true +minecraft\:entity.polar_bear.ambient=true +minecraft\:block.nether_wood_button.click_off=true +minecraft\:entity.frog.step=true +alexscaves\:scrap_metal_step=true +minecraft\:entity.wolf.ambient=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 +betternether\:betternether.mob.naga_attack=true +minecraft\:entity.phantom.ambient=true +minecraft\:entity.cat.death=true +tropicraft\:bongo.low=true +minecraft\:entity.goat.screaming.ambient=true +dungeonsweaponry\:vanguard_hurt=true +blue_skies\:entity.infested_swarmer.idle=true +unusualprehistory\:coty_idle=true +neapolitan\:entity.chimpanzee.step=true +createbigcannons\:fluid_shell_explosion=true +rats\:entity.rats.rat.coin=true +blue_skies\:entity.crynocerous.idle=true +naturalist\:entity.bass.flop=true +minecraft\:entity.generic.hurt=true +minecraft\:entity.turtle.egg_break=true +blue_skies\:entity.reindeer.hurt=true +alexscaves\:relicheirus_hurt=true +alexscaves\:tremorzilla_hurt=true +minecraft\:entity.elder_guardian.death_land=true +minecraft\:entity.magma_cube.death=true +createbigcannons\:water_fluid_release=true +twilightforest\:entity.twilightforest.yeti.death=true +undergarden\:entity.forgotten.hurt=true +deeperdarker\:ambient.otherside.additions=true +graveyard\:entity.acolyte.death=true +blue_skies\:entity.starlit_crusher.stunned=true +minecraft\:item.spyglass.stop_using=true +blue_skies\:entity.spewter.hurt=true +blue_skies\:entity.spewter.grow=true +alexscaves\:subterranodon_idle=true +unusualprehistory\:pachy_hurt=true +supplementaries\:block.rope.slide=true +blue_skies\:entity.starlit_crusher.prepare_small_growth=true +alexsmobs\:murmur_anger=true +minecraft\:ambient.crimson_forest.loop=true +unusualprehistory\:ulugh_step=true +alexsmobs\:elephant_idle=true +alexscaves\:teletor_death=true +minecraft\:block.cherry_wood_button.click_on=true +undergarden\:entity.gwibling.hurt=true +marvelous_menagerie\:steller_idle=true +twilightforest\:entity.twilightforest.king_spider.hurt=true +graveyard\:entity.lich.phase_two=true +minecraft\:block.pumpkin.carve=true +minecraft\:block.vine.fall=true +unusualprehistory\:talpanas_panic=true +twilightforest\:entity.twilightforest.raven.caw=true +unusualprehistory\:tail_swipe=true +minecraft\:block.cherry_wood_trapdoor.close=true +minecraft\:item.shield.block=true +minecraft\:block.note_block.snare=true +twilightforest\:entity.twilightforest.snow_guardian.hurt=true +marvelous_menagerie\:ophthalmo_death=true +undergarden\:entity.rotbeast.death=true +minecraft\:block.grass.break=true +minecraft\:block.metal.place=true +minecraft\:block.vine.hit=true +minecraft\:entity.zombie_horse.ambient=true +twilightforest\:entity.twilightforest.carminite_broodling.step=true +unusualprehistory\:brachi_toss=true +alexscaves\:tremorzilla_eat=true +twilightforest\:block.twilightforest.smoker.start=true +twilightforest\:entity.twilightforest.parrot.imitate.kobold=true +alexscaves\:spelunkery_table_tablet_remove=true +minecraft\:entity.wandering_trader.yes=true +alexscaves\:subterranodon_attack=true +minecraft\:entity.blaze.burn=true +alexscaves\:atlatitan_kick=true +minecraft\:entity.mooshroom.suspicious_milk=true +minecraft\:entity.zombie.infect=true +artifacts\:entity.mimic.hurt=true +alexscaves\:sulfur_place=true +alexsmobs\:hummingbird_idle=true +minecraft\:block.sand.fall=true +minecraft\:item.bundle.remove_one=true +minecraft\:entity.hoglin.hurt=true +minecraft\:block.polished_deepslate.place=true +unusualprehistory\:barina_idle=true +alexscaves\:hazmat_block_break=true +blue_skies\:entity.starlit_crusher.root=true +alexscaves\:subterranodon_flap=true +minecraft\:entity.squid.squirt=true +twilightforest\:entity.twilightforest.skeleton_druid.step=true +alexscaves\:vallumraptor_attack=true +endermanoverhaul\:cave_enderman_hurt=true +tropicraft\:iggyliving=true +minecraft\:ui.toast.challenge_complete=true +alexscaves\:atlatitan_stomp=true +minecraft\:entity.guardian.death_land=true +minecraft\:block.pink_petals.place=true +minecraft\:block.cherry_wood_pressure_plate.click_off=true +minecraft\:entity.hoglin.converted_to_zombified=true +minecraft\:music_disc.stal=true +aether\:item.armor.equip_neptune=true +create\:mixing_compounded_1=true +minecraft\:entity.parrot.imitate.zoglin=true +minecraft\:entity.fish.swim=true +blue_skies\:item.arc.aquatic_equip=true +alexsmobs\:rattlesnake_loop=true +minecraft\:entity.sniffer.drop_seed=true +neapolitan\:entity.chimpanzee.swing=true +alexscaves\:sulfur_break=true +unusualprehistory\:trike_death=true +alexscaves\:uranium_hum=true +twilightforest\:entity.twilightforest.parrot.imitate.ice_core=true +minecraft\:block.lantern.step=true +alexscaves\:forsaken_bite=true +rats\:music_disc.rats.living_mice=true +minecraft\:block.note_block.harp=true +minecraft\:entity.axolotl.death=true +blue_skies\:entity.player.spit=true +graveyard\:entity.ghoul.roar=true +alexsmobs\:seagull_idle=true +minecraft\:entity.skeleton_horse.gallop_water=true +blue_skies\:entity.jelly_drifter.idle=true +minecraft\:music_disc.mellohi=true +minecraft\:entity.drowned.ambient=true +alexsmobs\:straddler_hurt=true +minecraft\:entity.elder_guardian.ambient=true +blue_skies\:entity.nested_spider.idle=true +dungeonsartifacts\:corrupted_beacon=true +minecraft\:block.rooted_dirt.place=true +aether\:entity.moa.step=true +alexscaves\:resistor_shield_slam=true +minecraft\:block.azalea_leaves.place=true +exposure\:item.camera.viewfinder_close=true +minecraft\:music.credits=true +minecraft\:entity.zombie.converted_to_drowned=true +farmersdelight\:block.cabinet.open=true +alexsmobs\:bone_serpent_hurt=true +twilightforest\:entity.twilightforest.dwarf_rabbit.death=true +alexscaves\:gammaroach_attack=true +minecraft\:entity.zombified_piglin.ambient=true +alexscaves\:hullbreaker_land_idle=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 +alexscaves\:luxtructosaurus_snort=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\:entity.firework_rocket.large_blast=true +minecraft\:item.crossbow.quick_charge_3=true +alexscaves\:underzealot_transformation=true +minecraft\:entity.spider.step=true +minecraft\:entity.illusioner.mirror_move=true +minecraft\:block.pointed_dripstone.drip_lava_into_cauldron=true +create\:steam=true +minecraft\:entity.slime.hurt_small=true +alexsmobs\:rain_frog_hurt=true +minecraft\:entity.wolf.death=true +undergarden\:entity.scintling.step=true +minecraft\:block.pointed_dripstone.land=true +unusualprehistory\:smilodon_hurt=true +aquaculture\:fish_mount_add_item=true +graveyard\:block.bone.ambient=true +alexsmobs\:froststalker_hurt=true +biomesoplenty\:block.pus_bubble.pop=true +unusualprehistory\:antarcto_idle=true +alexscaves\:hologram_stop=true +blue_skies\:music.nature_dungeon_ambience=true +minecraft\:entity.puffer_fish.sting=true +alexscaves\:hazmat_block_place=true +graveyard\:entity.revenant.death=true +unusualprehistory\:austro_idle=true +minecraft\:block.deepslate_tiles.fall=true +undergarden\:entity.sploogie.ambient=true +minecraft\:block.bubble_column.upwards_inside=true +minecraft\:entity.horse.gallop=true +rats\:effect.rats.potion_effect.end=true +alexsmobs\:maraca=true +twilightforest\:entity.twilightforest.fire_beetle.hurt=true +twilightforest\:item.twilightforest.flask.break=true +moyai\:record.moyai_boom=true +alexscaves\:scarlet_neodymium_pull_loop=true +alexscaves\:deep_one_hurt=true +twilightforest\:entity.twilightforest.alpha_yeti.ice=true +earthtojavamobs\:entity.cluckshroom.lay_mushroom=true +alexscaves\:abyssal_chasm_music=true +alexsmobs\:rocky_roller_earthquake=true +minecraft\:block.grass.place=true +minecraft\:entity.evoker.ambient=true +alexsmobs\:leafcutter_ant_queen_hurt=true +twilightforest\:entity.twilightforest.ur_ghast.death=true +minecraft\:block.bamboo_wood_trapdoor.open=true +rats\:entity.rats.rattling_gun.shoot=true +alexsmobs\:mungus_idle=true +alexscaves\:nuclear_furnace_active_supercritical=true +dungeonsartifacts\:totem_of_regeneration=true +exposure\:item.camera.film_removed=true +minecraft\:block.cave_vines.hit=true +blue_skies\:entity.nested_spider.death=true +twilightforest\:entity.twilightforest.tear.break=true +aether\:entity.swet.squish=true +undergarden\:entity.stoneborn.confused=true +minecraft\:entity.cat.hurt=true +minecraft\:entity.hoglin.angry=true +blue_skies\:entity.shade_monitor.idle=true +minecraft\:entity.ghast.death=true +minecraft\:music_disc.mall=true +graveyard\:block.coffin.open=true +minecraft\:entity.shulker_bullet.hurt=true +minecraft\:music.game=true +alexscaves\:relicheirus_scratch=true +minecraft\:item.bucket.empty=true +graveyard\:entity.lich.theme_01=true +minecraft\:block.sculk_shrieker.step=true +minecraft\:entity.hostile.small_fall=true +blue_skies\:block.crystallized_plant.break=true +twilightforest\:entity.twilightforest.snow_queen.break=true +alexscaves\:corrodent_death=true +create_dd\:creatvedite_hit=true +alexscaves\:pewen_branch_break=true +alexscaves\:spelunkery_table_paper_remove=true +alexscaves\:hullbreaker_attack=true +unusualprehistory\:megalania_hurt=true +twilightforest\:block.twilightforest.bug.squish=true +blue_skies\:entity.gatekeeper.no=true +minecraft\:entity.warden.nearby_close=true +alexsmobs\:mungus_laser_end=true +alexscaves\:luxtructosaurus_roar=true +unusualprehistory\:rex_tail_swipe=true +minecraft\:block.cave_vines.place=true +blue_skies\:entity.player.prepare_summoning=true +alexscaves\:beholder_break=true +betterend\:betterend.ambient.chorus_forest=true +rats\:entity.rats.pirat.shoot=true +alexsmobs\:tasmanian_devil_roar=true +minecraft\:block.azalea.fall=true +undergarden\:entity.rotling.ambient=true +alexscaves\:beholder_view_idle=true +minecraft\:block.nether_wood_hanging_sign.step=true +undergarden\:entity.brute.ambient=true +minecraft\:block.nether_wood_hanging_sign.place=true +alexscaves\:raycat_hurt=true +create\:schematicannon_launch_block=true +minecraft\:block.bamboo_wood_trapdoor.close=true +twilightforest\:music_disc.twilightforest.home=true +blue_skies\:entity.armored_frost_spirit.death=true +minecraft\:entity.villager.work_butcher=true +biomeswevegone\:oddion.happy=true +naturalist\:entity.bird.eat=true +minecraft\:entity.player.attack.knockback=true +naturalist\:entity.zebra.ambient=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.strider.eat=true +dungeonsweaponry\:wraith_teleport_out=true +minecraft\:entity.player.hurt_drown=true +alexscaves\:submarine_place=true +blue_skies\:music.nature_boss=true +twilightforest\:entity.twilightforest.ice.death=true +minecraft\:block.cherry_sapling.hit=true +alexscaves\:deep_one_mage_admire=true +blue_skies\:entity.jelly_drifter.death=true +blue_skies\:block.keystone.unlock=true +illagerinvasion\:entity.firecaller.idle=true +rats\:entity.rats.dutchrat.laugh=true +minecraft\:block.cherry_leaves.place=true +minecraft\:block.bamboo.fall=true +alexscaves\:luxtructosaurus_idle=true +biomesoplenty\:music_disc.wanderer=true +alexscaves\:nuclear_bomb_breaking=true +twilightforest\:entity.twilightforest.parrot.imitate.mosquito=true +naturalist\:entity.dragonfly.loop=true +aether\:entity.mimic.hurt=true +deeperdarker\:entity.angler_fish.flop=true +minecraft\:music.overworld.meadow=true +minecraft\:entity.player.attack.sweep=true +minecraft\:block.soul_soil.hit=true +minecraft\:entity.evoker.death=true +minecraft\:entity.goat.ambient=true +blue_skies\:entity.infested_swarmer.death=true +aether\:entity.thunder_crystal.explode=true +minecraft\:entity.sniffer.hurt=true +betterend\:betterend.record.endseeker=true +minecraft\:block.glass.break=true +twilightforest\:entity.twilightforest.kobold.hurt=true +graveyard\:entity.corrupted_illager.step=true +minecraft\:block.cherry_leaves.break=true +alexscaves\:underzealot_hurt=true +unusualprehistory\:ulugh_bite=true +minecraft\:block.flowering_azalea.step=true +minecraft\:entity.skeleton_horse.swim=true +minecraft\:block.mangrove_roots.place=true +minecraft\:entity.drowned.hurt=true +tropicraft\:trade_winds=true +naturalist\:entity.deer.ambient=true +twilightforest\:block.twilightforest.slider.move=true +minecraft\:entity.parrot.imitate.zombie_villager=true +naturalist\:entity.vulture.ambient=true +minecraft\:block.anvil.fall=true +rats\:entity.rats.rat.transfer=true +duckling\:quackling_death=true +twilightforest\:entity.twilightforest.king_spider.death=true +exposure\:item.camera.filter_remove=true +minecraft\:block.chiseled_bookshelf.insert=true +minecraft\:block.iron_trapdoor.close=true +minecraft\:block.sculk_shrieker.shriek=true +minecraft\:entity.dolphin.attack=true +minecraft\:block.frogspawn.break=true +crittersandcompanions\:entity.shima_enaga.ambient=true +alexsmobs\:void_worm_idle=true +blue_skies\:entity.starlit_crusher.prepare_owls=true +alexsmobs\:skunk_spray=true +create\:train=true +alexscaves\:boundroid_dazed=true +minecraft\:entity.parrot.eat=true +earthtojavamobs\:entity.skeleton_wolf.ambient=true +minecraft\:item.bone_meal.use=true +minecraft\:block.small_dripleaf.fall=true +marvelous_menagerie\:elephant_bird_idle=true +twilightforest\:block.twilightforest.torchberry.harvest=true +alexscaves\:hazmat_block_breaking=true +aether\:entity.sheepuff.death=true +minecraft\:entity.vindicator.celebrate=true +minecraft\:entity.ocelot.ambient=true +rats\:entity.rats.rat.hurt=true +naturalist\:entity.alligator.ambient_baby=true +minecraft\:music.overworld.badlands=true +minecraft\:block.cave_vines.break=true +minecraft\:entity.player.attack.weak=true +minecraft\:entity.firework_rocket.shoot=true +minecraft\:block.deepslate_bricks.step=true +alexsmobs\:soul_vulture_hurt=true +rats\:entity.rats.dutchrat.hurt=true +minecraft\:entity.lightning_bolt.thunder=true +minecraft\:entity.parrot.ambient=true +betterend\:betterend.entity.shadow_walker_death=true +minecraft\:block.cherry_wood.step=true +minecraft\:block.stem.break=true +supplementaries\:music.pancake=true +undergarden\:entity.rotling.step=true +minecraft\:block.suspicious_gravel.fall=true +minecraft\:block.amethyst_cluster.place=true +exposure\:item.camera.shutter_open=true +minecraft\:entity.drowned.death_water=true +minecraft\:entity.cat.purr=true +undergarden\:block.virulent.flow=true +minecraft\:block.sculk_sensor.place=true +twilightforest\:block.twilightforest.ghast_trap.spindown=true +undergarden\:music.disc.gloomper_anthem=true +rats\:block.rats.rat_trap.remove_bait=true +minecraft\:entity.item_frame.add_item=true +graveyard\:entity.wraith.ambient=true +twilightforest\:entity.twilightforest.yeti.throw=true +minecraft\:block.dripstone_block.step=true +minecraft\:block.glass.fall=true +blue_skies\:entity.arachnarch.attack=true +alexscaves\:unrefined_waste_step=true +minecraft\:block.lodestone.step=true +aether\:entity.sentry.jump=true +minecraft\:entity.panda.step=true +naturalist\:entity.snail.back=true +aether\:entity.cockatrice.ambient=true +alexscaves\:toxic_caves_ambience=true +minecraft\:block.mud_bricks.place=true +alexscaves\:desolate_dagger_hit=true +minecraft\:block.packed_mud.break=true +unusualprehistory\:dunk_death=true +blue_skies\:music.blinding_boss=true +twilightforest\:entity.twilightforest.towerwood_borer.death=true +aether\:entity.sheepuff.ambient=true +rats\:item.rats.ectoplasm.transform=true +minecraft\:entity.puffer_fish.blow_out=true +minecraft\:entity.parrot.imitate.vex=true +minecraft\:entity.fox.bite=true +minecraft\:ambient.warped_forest.loop=true +graveyard\:block.urn.open=true +alexsmobs\:capuchin_monkey_hurt=true +minecraft\:block.metal.break=true +beachparty\:radio_hawaii=true +minecraft\:ambient.crimson_forest.additions=true +blue_skies\:entity.arachnarch.charge=true +minecraft\:block.cherry_wood_fence_gate.close=true +blue_skies\:entity.crogre.hurt=true +graveyard\:entity.ghouling.groan=true +twilightforest\:entity.twilightforest.maze_slime_small.death=true +rats\:entity.rats.rat.growl=true +minecraft\:entity.fishing_bobber.throw=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.mud_bricks.break=true +minecraft\:entity.parrot.imitate.drowned=true +dungeonsweaponry\:wildfire_shieldbreak=true +minecraft\:block.chiseled_bookshelf.pickup.enchanted=true +alexsmobs\:tasmanian_devil_idle=true +minecraft\:entity.blaze.ambient=true +blue_skies\:entity.player.prepare_fluctuant_sphere=true +graveyard\:block.urn.close=true +minecraft\:entity.warden.step=true +minecraft\:block.packed_mud.step=true +minecraft\:entity.sheep.step=true +dungeonsartifacts\:harvester=true +minecraft\:entity.parrot.imitate.evoker=true +aether\:entity.swet.death=true +alexsmobs\:rhinoceros_idle=true +minecraft\:block.polished_deepslate.break=true +vs_clockwork\:designator_activate=true +alexscaves\:metal_scaffolding_climb=true +spelunkery\:portal_fluid_teleport=true +enhancedai\:wtf_boom_fuse=true +minecraft\:entity.horse.saddle=true +cave_dweller\:chase_1=true +minecraft\:block.lever.click=true +cave_dweller\:chase_4=true +undergarden\:block.undergarden_portal.ambient=true +cave_dweller\:chase_2=true +unusualprehistory\:beelze_attack=true +cave_dweller\:chase_3=true +minecraft\:block.roots.break=true +minecraft\:entity.silverfish.ambient=true +create\:fwoomp=true +naturalist\:entity.deer.hurt_baby=true +gardens_of_the_dead\:music.whistling_woods=true +doapi\:drawer_open=true +alexscaves\:gammaroach_step=true +supplementaries\:item.bomb=true +minecraft\:entity.zombified_piglin.death=true +minecraft\:block.amethyst_cluster.step=true +deeperdarker\:block.sculk_stone.break=true +minecraft\:ambient.soul_sand_valley.mood=true +twilightforest\:block.twilightforest.uncrafting_table.activate=true +marvelous_menagerie\:thylacine_alert=true +unusualprehistory\:austro_death=true +dungeonsartifacts\:soul_wizard_hurt=true +twilightforest\:entity.twilightforest.slime_beetle.squish=true +alexscaves\:teletor_idle=true +cave_dweller\:cavenoise_1=true +minecraft\:block.ancient_debris.place=true +cave_dweller\:cavenoise_2=true +twilightforest\:entity.twilightforest.hydra.growl=true +alexsmobs\:mantis_shrimp_snap=true +alexscaves\:toxic_caves_ambience_additions=true +minecraft\:entity.wither.death=true +minecraft\:block.sculk_sensor.break=true +cave_dweller\:cavenoise_3=true +aether\:entity.cockatrice.shoot=true +cave_dweller\:cavenoise_4=true +minecraft\:entity.ghast.scream=true +graveyard\:block.ossuary.open=true +aether\:entity.dart.hit=true +farmersdelight\:entity.rotten_tomato.throw=true +alexscaves\:drain_start=true +minecraft\:block.sculk_catalyst.bloom=true +betterend\:betterend.ambient.umbrella_jungle=true +supplementaries\:item.wrench.rotate=true +graveyard\:entity.lich.phase_three_attack=true +twilightforest\:entity.twilightforest.pinch_beetle.step=true +alexscaves\:primordial_caves_ambience_mood=true +minecraft\:block.mangrove_roots.break=true +tropicraft\:headshort=true +minecraft\:entity.rabbit.jump=true +blue_skies\:entity.emberback.idle=true +naturalist\:entity.bird.ambient_sparrow=true +blue_skies\:item.arc.runic_equip=true +twilightforest\:entity.twilightforest.knight_phantom.pickaxe=true +minecraft\:music.nether.basalt_deltas=true +minecraft\:entity.warden.tendril_clicks=true +rats\:entity.rats.plague_doctor.disappear=true +betterend\:betterend.ambient.foggy_mushroomland=true +minecraft\:block.gravel.step=true +create\:crafter_craft=true +minecraft\:entity.parrot.imitate.blaze=true +minecraft\:entity.sniffer.searching=true +aquaculture\:worm_farm_empty=true +minecraft\:entity.snow_golem.death=true +createbigcannons\:autocannon_round_flyby=true +minecraft\:block.anvil.break=true +alexscaves\:forsaken_idle=true +minecraft\:music.nether.nether_wastes=true +minecraft\:block.nether_bricks.place=true +twilightforest\:entity.twilightforest.carminite_golem.hurt=true +minecraft\:entity.zombified_piglin.hurt=true +minecraft\:entity.camel.dash=true +minecraft\:block.netherrack.fall=true +blue_skies\:block.rimestone.hit=true +illagerinvasion\:entity.basher.celebrate=true +minecraft\:block.deepslate_bricks.hit=true +minecraft\:block.lantern.break=true +deeperdarker\:item.transmitter.error=true +crittersandcompanions\:entity.ferret.hurt=true +dungeonsartifacts\:soul_wizard_summon=true +alexsmobs\:kangaroo_hurt=true +graveyard\:entity.ghouling.death=true +blue_skies\:entity.polargeist.hurt=true +twilightforest\:entity.twilightforest.alpha_yeti.roar=true +alexsmobs\:elephant_die=true +minecraft\:entity.turtle.lay_egg=true +naturalist\:entity.deer.hurt=true +undergarden\:ambient.wigglewood_forest_addition=true +alexsmobs\:skelewag_hurt=true +aquaculture\:fish_hurt=true +create\:train2=true +minecraft\:entity.firework_rocket.twinkle=true +minecraft\:block.spore_blossom.fall=true +earthtojavamobs\:entity.bone_spider.bone.stab=true +create\:train3=true +alexsmobs\:jerboa_hurt=true +minecraft\:block.netherite_block.hit=true +minecraft\:item.chorus_fruit.teleport=true +minecraft\:block.decorated_pot.hit=true +alexscaves\:ortholance_wave=true +create_dd\:rubber_place=true +blue_skies\:music.blinding_defeat=true +alexsmobs\:april_fools_music_box=true +alexscaves\:tremorzilla_tail_attack=true +minecraft\:block.gilded_blackstone.place=true +alexsmobs\:anaconda_attack=true +minecraft\:entity.salmon.flop=true +minecraft\:block.iron_door.close=true +twilightforest\:music_disc.twilightforest.maker=true +create\:whistle=true +doapi\:brewstation_process_failed=true +alexsmobs\:orca_idle=true +minecraft\:entity.ghast.hurt=true +blue_skies\:ambient.nature_dungeon.additions=true +minecraft\:block.packed_mud.place=true +alexscaves\:seeking_arrow_hit=true +minecraft\:block.azalea_leaves.hit=true +blue_skies\:entity.alchemist.prepare_attack=true +minecraft\:block.cave_vines.step=true +unusualprehistory\:palaeo_death=true +createbigcannons\:projectile_impact=true +minecraft\:item.goat_horn.sound.7=true +minecraft\:item.goat_horn.sound.6=true +minecraft\:item.goat_horn.sound.5=true +minecraft\:item.goat_horn.sound.4=true +biomeswevegone\:oddion.die=true +alexscaves\:thornwood_branch_break=true +minecraft\:block.polished_deepslate.hit=true +minecraft\:item.bundle.insert=true +unusualprehistory\:austro_bite=true +alexscaves\:magnetron_hurt=true +minecraft\:item.goat_horn.sound.3=true +ribbits\:music.ribbit.maraca=false +minecraft\:item.goat_horn.sound.2=true +minecraft\:item.goat_horn.sound.1=true +minecraft\:item.goat_horn.sound.0=true +naturalist\:entity.snake.rattle=true +minecraft\:block.pointed_dripstone.break=true +alexscaves\:gammaroach_idle=true +supplementaries\:block.rope.break=true +blue_skies\:entity.diophyde_prowler.lunge=true +alexscaves\:forsaken_leap=true +alexscaves\:vesper_scream=true +minecraft\:block.deepslate.fall=true +rats\:block.rats.trash_can.open=true +minecraft\:entity.wandering_trader.drink_milk=true +minecraft\:entity.parrot.imitate.creeper=true +alexscaves\:magnetic_caves_ambience_mood=true +minecraft\:entity.egg.throw=true +minecraft\:block.wool.break=true +minecraft\:entity.skeleton.shoot=true +dungeonsweaponry\:nameless_one_hurt=true +twilightforest\:entity.twilightforest.ice.hurt=true +minecraft\:entity.piglin_brute.step=true +chimes\:block.iron.chiming=true +blue_skies\:entity.starlit_crusher.attack=true +alexsmobs\:bison_idle=true +twilightforest\:entity.twilightforest.naga.hiss=true +minecraft\:block.weeping_vines.hit=true +minecraft\:entity.bee.hurt=true +minecraft\:block.frogspawn.step=true +farmersdelight\:block.stove.crackle=true +minecraft\:block.vine.place=true +crittersandcompanions\:entity.sea_bunny.hurt=true +minecraft\:item.crossbow.loading_end=true +chimes\:block.copper.chiming=true +twilightforest\:entity.twilightforest.parrot.imitate.minotaur=true +minecraft\:music.overworld.dripstone_caves=true +minecraft\:entity.player.attack.strong=true +crittersandcompanions\:entity.ferret.death=true +minecraft\:entity.panda.pre_sneeze=true +twilightforest\:entity.twilightforest.hydra.hurt=true +create\:controller_put=true +minecraft\:entity.cat.eat=true +betternether\:betternether.mob.jellyfish=true +earthtojavamobs\:entity.bone_spider.ambient=true +aquaculture\:fish_mount_broken=true +minecraft\:block.smithing_table.use=true +alexscaves\:boundroid_idle=true +minecraft\:block.stem.fall=true +twilightforest\:entity.twilightforest.ur_ghast.hurt=true +railways\:conductor_whistle=true +rats\:entity.rats.ratlantean_spirit.hurt=true +trackwork\:power_wrench=true +deeperdarker\:block.sculk_stone.place=true +unusualprehistory\:sludge_hurt=true +twilightforest\:entity.twilightforest.parrot.imitate.carminite_golem=true +biomeswevegone\:oddion.ambient=true +alexsmobs\:skreecher_detect=true +minecraft\:block.mangrove_roots.step=true +twilightforest\:entity.twilightforest.loyal_zombie.ambient=true +aether\:entity.aechor_plant.death=true +minecraft\:block.chorus_flower.death=true +minecraft\:entity.vindicator.ambient=true +minecraft\:entity.frog.hurt=true +aether\:entity.sun_spirit.shoot=true +minecraft\:entity.puffer_fish.blow_up=true +alexsmobs\:mungus_laser_loop=true +alexscaves\:spelunkery_table_crack=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 +illagerinvasion\:entity.sorcerer.hurt=true +alexscaves\:limestone_spear_hit=true +minecraft\:entity.elder_guardian.flop=true +alexsmobs\:music_wormboss=true +minecraft\:item.book.page_turn=true +minecraft\:block.pink_petals.hit=true +neapolitan\:entity.chimpanzee.hurt=true +alexsmobs\:caiman_splash=true +alexscaves\:gloomoth_hurt=true +minecraft\:entity.fox.sleep=true +goated\:geep.milk=true +minecraft\:entity.glow_squid.death=true +blue_skies\:entity.venom_spider.hurt=true +twilightforest\:entity.twilightforest.king_spider.ambient=true +minecraft\:entity.illusioner.cast_spell=true +minecraft\:entity.salmon.death=true +tropicraft\:iggyattack=true +minecraft\:block.anvil.place=true +minecraft\:block.brewing_stand.brew=true +minecraft\:block.bamboo.break=true +unusualprehistory\:brachi_hurt=true +minecraft\:block.shroomlight.fall=true +alexsmobs\:skreecher_call=true +create\:deny=true +rats\:entity.rats.plague_doctor.drink=true +alexscaves\:forsaken_screech=true +minecraft\:music_disc.chirp=true +twilightforest\:item.twilightforest.magnet.grab=true +earthtojavamobs\:entity.skeleton_wolf.howl=true +blue_skies\:entity.snow_owl.idle=true +chimes\:block.bamboo.tie=true +create\:depot_slide=true +minecraft\:entity.warden.agitated=true +minecraft\:entity.panda.worried_ambient=true +minecraft\:block.copper.step=true +twilightforest\:item.twilightforest.lamp.burn=true +graveyard\:entity.lich.corpse_spell=true +minecraft\:block.lodestone.hit=true +alexsmobs\:mimic_octopus_idle=true +alexscaves\:vallumraptor_call=true +undergarden\:entity.stoneborn.hurt=true +alexscaves\:mine_guardian_land_death=true +blue_skies\:entity.snow_owl.death=true +unusualprehistory\:brachi_step=true +minecraft\:entity.warden.sonic_boom=true +twilightforest\:entity.twilightforest.raven.squawk=true +minecraft\:entity.wither.spawn=true +unusualprehistory\:beelze_hurt=true +minecraft\:block.wool.place=true +peculiarprimordials\:saxophone=true +twilightforest\:entity.twilightforest.carminite_ghastguard.shoot=true +deeperdarker\:entity.shattered.ambient=true +minecraft\:block.gravel.break=true +minecraft\:block.vine.break=true +undergarden\:block.gronglet.burn=true +alexscaves\:beholder_exit=true +minecraft\:entity.wolf.growl=true +illagerinvasion\:entity.provoker.idle=true +rats\:entity.rats.rat.drink=true +minecraft\:item.axe.scrape=true +minecraft\:entity.evoker.celebrate=true +alexscaves\:grottoceratops_death=true +twilightforest\:entity.twilightforest.skeleton_druid.hurt=true +create_dd\:rubber_break=true +minecraft\:entity.drowned.shoot=true +minecraft\:entity.zombie.hurt=true +minecraft\:block.composter.ready=true +exposure\:item.camera.interplanar_projector.project=true +minecraft\:block.nether_bricks.step=true +minecraft\:entity.illusioner.ambient=true +minecraft\:ambient.nether_wastes.additions=true +alexscaves\:tremorsaurus_bite=true +alexsmobs\:fly_idle=true +unusualprehistory\:mammoth_hurt=true +minecraft\:entity.parrot.fly=true +minecraft\:entity.boat.paddle_water=true +alexscaves\:corrodent_attack=true +aether\:entity.flying_cow.death=true +alexscaves\:ferrouslime_move_loop=true +aether\:block.water.evaporate=true +rats\:entity.rats.ratlantean_ratbot.death=true +blue_skies\:entity.nyctofly.flying=true +minecraft\:entity.enderman.hurt=true +alexscaves\:watcher_attack=true +blue_skies\:entity.shrumpty.death=true +aether\:entity.aechor_plant.hurt=true +blue_skies\:entity.snow_owl.flap=true +minecraft\:block.sculk.charge=true +doapi\:brewstation_ambient=true +alexscaves\:brainiac_step=true +dungeonsartifacts\:death_cap_mushroom=true +minecraft\:entity.axolotl.idle_air=true +doapi\:cabinet_close=true +supplementaries\:block.rope.place=true +undergarden\:entity.sploogie.spit=true +graveyard\:block.bone.placed=true +alexscaves\:primal_magma_fissure_close=true +minecraft\:entity.panda.hurt=true +illagerinvasion\:entity.illager_brute.ambient=true +minecraft\:entity.shulker.close=true +alexscaves\:vesper_quiet_idle=true +unusualprehistory\:anuro_idle=true +twilightforest\:entity.twilightforest.dwarf_rabbit.hurt=true +minecraft\:block.bamboo.place=true +twilightforest\:entity.twilightforest.carminite_ghastling.death=true +minecraft\:block.pointed_dripstone.drip_water_into_cauldron=true +minecraft\:block.piston.extend=true +minecraft\:block.rooted_dirt.break=true +dungeonsweaponry\:necromancer_summon=true +alexscaves\:darkness_incarnate_idle=true +minecraft\:entity.goat.ram_impact=true +alexsmobs\:mudskipper_hurt=true +undergarden\:item.slingshot.draw=true +alexsmobs\:farseer_hurt=true +unusualprehistory\:giganto_idle=true +unusualprehistory\:kentro_idle=true +earthtojavamobs\:entity.furnace_golem.aggro=true +crittersandcompanions\:entity.dragonfly.ambient=true +supplementaries\:item.slingshot.release=true +minecraft\:entity.warden.hurt=true +minecraft\:block.wool.step=true +minecraft\:block.bamboo_wood_fence_gate.open=true +alexsmobs\:warped_toad_hurt=true +minecraft\:block.cherry_wood_hanging_sign.break=true +minecraft\:entity.creeper.hurt=true +alexscaves\:scrap_metal_break=true +minecraft\:block.note_block.imitate.piglin=true +minecraft\:item.bucket.empty_axolotl=true +betternether\:betternether.ambient.mushroom_forest=true +minecraft\:music.nether.warped_forest=true +earthtojavamobs\:entity.viler_witch.casting=true +alexscaves\:amber_breaking=true +minecraft\:entity.piglin_brute.angry=true +minecraft\:entity.spider.hurt=true +undergarden\:entity.dweller.step=true +undergarden\:entity.muncher.death=true +endermanoverhaul\:tall_enderman_stare=true +minecraft\:entity.player.splash.high_speed=true +blue_skies\:item.bag.open=true +minecraft\:entity.donkey.hurt=true +naturalist\:entity.boar.ambient=true +alexscaves\:ferrouslime_death=true +minecraft\:entity.sniffer.eat=true +unusualprehistory\:mammoth_death=true +alexscaves\:cinder_block_break=true +undergarden\:entity.rotling.hurt=true +twilightforest\:item.twilightforest.scepter.drain=true +undergarden\:entity.scintling.death=true +twilightforest\:entity.twilightforest.deer.hurt=true +twilightforest\:block.twilightforest.builder.create=true +deeperdarker\:item.transmitter.open=true +alexscaves\:deep_one_mage_idle=true +minecraft\:block.snow.step=true +alexscaves\:extinction_spear_hit=true +earthtojavamobs\:entity.jolly_llama.prance=true +artifacts\:entity.mimic.close=true +alexsmobs\:mimicube_hurt=true +biomeswevegone\:music.overworld.forgotten_forest=true +exposure\:item.photograph_frame.rotate_item=true +aether\:entity.moa.egg=true +minecraft\:block.anvil.use=true +minecraft\:item.goat_horn.play=true +minecraft\:entity.minecart.inside=true +minecraft\:block.nylium.place=true +ribbits\:music.ribbit.flute=false +minecraft\:entity.tadpole.hurt=true +minecraft\:block.big_dripleaf.tilt_up=true +deeperdarker\:entity.shriek_worm.ambient=true +naturalist\:entity.alligator.egg_crack=true +alexsmobs\:cachalot_whale_hurt=true +natures_spirit\:music.overworld.aspen=true +twilightforest\:entity.twilightforest.parrot.imitate.naga=true +twilightforest\:entity.twilightforest.slime_beetle.death=true +alexscaves\:deep_one_knight_admire=true +minecraft\:block.suspicious_sand.fall=true +alexscaves\:cinder_block_place=true +dungeonsartifacts\:iron_hide_amulet=true +crittersandcompanions\:entity.otter.death=true +minecraft\:entity.villager.hurt=true +tropicraft\:low_tide=true +minecraft\:entity.pillager.hurt=true +blue_skies\:entity.snow_owl.sing=true +twilightforest\:music_disc.twilightforest.motion=true +alexscaves\:resistor_shield_scarlet_loop=true +minecraft\:entity.cod.hurt=true +minecraft\:entity.parrot.imitate.skeleton=true +minecraft\:entity.piglin.angry=true +doapi\:beer_elemental_death=true +alexscaves\:underzealot_dig=true +alexsmobs\:blue_jay_song=true +alexscaves\:tremorzilla_stomp_attack=true +naturalist\:entity.zebra.death=true +unusualprehistory\:coty_death=true +minecraft\:block.powder_snow.fall=true +minecraft\:entity.warden.attack_impact=true +twilightforest\:entity.twilightforest.alpha_yeti.growl=true +minecraft\:block.muddy_mangrove_roots.break=true +alexscaves\:tremorzilla_scratch_attack=true +alexscaves\:nuclear_furnace_active=true +minecraft\:block.azalea.place=true +minecraft\:entity.ravager.ambient=true +ribbits\:music.ribbit.bass=false +minecraft\:ambient.underwater.exit=true +create\:crafter_click_compounded_1=true +rats\:entity.rats.ratlantean_ratbot.hurt=true +minecraft\:item.brush.brushing.sand=true +alexsmobs\:platypus_idle=true +twilightforest\:music_disc.twilightforest.superstitious=true +undergarden\:ambient.sea=true +blue_skies\:entity.starlit_crusher.step=true +alexscaves\:luxtructosaurus_boss_music=true +minecraft\:block.rooted_dirt.step=true +minecraft\:entity.axolotl.hurt=true +twilightforest\:entity.twilightforest.blockchain_goblin.death=true +twilightforest\:entity.twilightforest.fire_beetle.death=true +minecraft\:block.azalea.hit=true +alexscaves\:vesper_death=true +minecraft\:music.overworld.swamp=true +minecraft\:music.creative=true +minecraft\:entity.villager.work_fletcher=true +aether\:entity.slider.awaken=true +unusualprehistory\:dunk_hurt=true +aether\:item.music_disc.ascending_dawn=true +create\:haunted_bell_use=true +blue_skies\:block.keystone.locked=true +alexscaves\:hazmat_block_step=true +minecraft\:entity.allay.death=true +undergarden\:entity.minion.repair=true +minecraft\:music.overworld.desert=true +earthtojavamobs\:entity.bone_spider.spit=true +alexscaves\:nuclear_explosion=true +graveyard\:entity.nameless_hanged.interact=true +deeperdarker\:entity.angler_fish.death=true +minecraft\:block.nylium.break=true +betternether\:betternether.ambient.swampland=true +alexscaves\:luxtructosaurus_kick=true +unusualprehistory\:majunga_idle=true +minecraft\:item.axe.wax_off=true +unusualprehistory\:encrusted_hurt=true +minecraft\:entity.evoker.cast_spell=true +minecraft\:particle.soul_escape=true +minecraft\:block.chiseled_bookshelf.step=true +minecraft\:block.froglight.fall=true +minecraft\:entity.mule.chest=true +minecraft\:block.scaffolding.place=true +minecraft\:block.netherrack.hit=true +minecraft\:entity.wandering_trader.drink_potion=true +earthtojavamobs\:entity.jumbo_rabbit.jump=true +create\:contraption_assemble_compounded_1=true +twilightforest\:block.twilightforest.core.time=true +naturalist\:entity.firefly.hide=true +alexscaves\:tripodfish_hurt=true +alexscaves\:drain_stop=true +marvelous_menagerie\:elephant_bird_grumble=true +marvelous_menagerie\:dodo_death=true +minecraft\:block.cherry_wood_hanging_sign.hit=true +blue_skies\:block.food_prep_table.use=true +aether\:entity.cloud_crystal.explode=true +naturalist\:entity.bear.sniff=true +alexsmobs\:cachalot_whale_click=true +minecraft\:block.chiseled_bookshelf.place=true +minecraft\:block.cherry_wood_door.open=true +exposure\:item.camera.filter_insert=true +aether\:entity.moa.ambient=true +alexsmobs\:vine_lasso=true +blue_skies\:entity.villager.work_wrangler=true +alexsmobs\:sunbird_idle=true +twilightforest\:entity.twilightforest.hedge_spider.hurt=true +minecraft\:block.lantern.hit=true +minecraft\:entity.witch.throw=true +neapolitan\:item.banana_bunch.open=true +minecraft\:block.crop.break=true +minecraft\:entity.donkey.chest=true +alexsmobs\:underminer_step=true +alexscaves\:nuclear_furnace_active_subcritical=true +minecraft\:block.cherry_wood_hanging_sign.place=true +alexsmobs\:flutter_hurt=true +illagerinvasion\:item.lost_candle.coal=true +minecraft\:entity.drowned.step=true +undergarden\:entity.rotwalker.hurt=true +alexsmobs\:endergrade_idle=true +blue_skies\:entity.summoner.hurt=true +alexscaves\:tremorsaurus_stomp=true +create\:crafter_click=true +minecraft\:entity.shulker_bullet.hit=true +minecraft\:block.note_block.iron_xylophone=true +minecraft\:entity.vindicator.death=true +aether\:entity.moa.hurt=true +alexsmobs\:warped_mosco_idle=true +aether\:item.ambrosium_shard.use=true +minecraft\:block.nether_bricks.break=true +minecraft\:entity.warden.emerge=true +illagerinvasion\:entity.invoker.fangs_cast=true +naturalist\:entity.rubber_ducky.hurt=true +minecraft\:item.armor.equip_netherite=true +alexscaves\:corrodent_hurt=true +minecraft\:item.brush.brushing.sand.complete=true +createbigcannons\:projectile_splash=true +aether\:entity.aerwhale.death=true +marvelous_menagerie\:caris_armor_damage=true +blue_skies\:entity.nyctofly.bite=true +createbigcannons\:wood_splinters=true +minecraft\:block.barrel.open=true +createbigcannons\:smoke_shell_detonate=true +alexsmobs\:emu_hurt=true +minecraft\:entity.sheep.death=true +minecraft\:block.grass.step=true +unusualprehistory\:zulogae_disc=true +minecraft\:entity.dragon_fireball.explode=true +graveyard\:entity.revenant.ambient=true +illagerinvasion\:item.lost_candle.copper=true +blue_skies\:entity.starlit_crusher.prepare_hammer=true +minecraft\:entity.goat.horn_break=true +twilightforest\:entity.twilightforest.redcap.death=true +farmersdelight\:item.skillet.attack.strong=true +minecraft\:entity.iron_golem.hurt=true +minecraft\:entity.llama.spit=true +minecraft\:entity.slime.jump_small=true +unusualprehistory\:rex_idle=true +alexscaves\:dreadbow_release=true +minecraft\:entity.frog.lay_spawn=true +minecraft\:block.nether_wood_trapdoor.open=true +undergarden\:entity.rotbeast.ambient=true +minecraft\:block.lantern.place=true +deeperdarker\:entity.stalker.death=true +alexsmobs\:mantis_shrimp_hurt=true +minecraft\:block.wood.break=true +twilightforest\:entity.twilightforest.parrot.imitate.redcap=true +dungeonsweaponry\:wildfire_death=true +graveyard\:entity.ghouling.attack=true +alexscaves\:grottoceratops_call=true +minecraft\:block.scaffolding.break=true +minecraft\:block.composter.fill=true +blue_skies\:entity.arachnarch.hurt=true +minecraft\:item.book.put=true +aether\:entity.cloud_minion.shoot=true +alexscaves\:scrap_metal_place=true +additional_lights\:fire_extinguish=true +aether\:entity.moa.flap=true +marvelous_menagerie\:thylacine_yawn=true +blue_skies\:entity.summoner.celebrate=true +blue_skies\:music.whistleshell=true +chimes\:block.copper.chime=true +twilightforest\:entity.twilightforest.redcap.ambient=true +minecraft\:block.cherry_wood_fence_gate.open=true +aquaculture\:bobber_note_catch=true +minecraft\:entity.parrot.imitate.witch=true +minecraft\:entity.pillager.celebrate=true +minecraft\:block.chiseled_bookshelf.insert.enchanted=true +minecraft\:entity.mule.eat=true +graveyard\:entity.lich.spawn=true +blue_skies\:ambient.sandstorm_wind=true +naturalist\:entity.hippo.ambient=true +minecraft\:music.overworld.jagged_peaks=true +alexscaves\:extinction_spear_summon=true +endermanoverhaul\:ancient_pearl_hit=true +naturalist\:entity.bird.ambient_cardinal=true +alexsmobs\:jerboa_idle=true +minecraft\:block.bamboo_sapling.break=true +graveyard\:entity.lich.shoot_skull=true +alexsmobs\:gorilla_hurt=true +create\:clipboard_check=true +earthtojavamobs\:entity.moolip.plant=true +graveyard\:item.vial.splash=true +alexscaves\:toxic_caves_music=true +graveyard\:entity.lich.death=true +supplementaries\:block.faucet.turn=true +minecraft\:entity.skeleton_horse.hurt=true +minecraft\:block.powder_snow.break=true +alexsmobs\:music_disc_daze=true +alexscaves\:notor_idle=true +minecraft\:entity.mule.death=true +alexsmobs\:cosmaw_idle=true +aether\:entity.mimic.attack=true +undergarden\:entity.forgotten_guardian.attack=true +blue_skies\:block.everbright.portal.travel=true +alexsmobs\:roadrunner_meep=true +supplementaries\:block.sack.open=true +minecraft\:block.roots.hit=true +deeperdarker\:entity.shattered.death=true +rats\:block.rats.rat_trap.add_bait=true +alexscaves\:gloomoth_flap=true +blue_skies\:entity.stonelet.idle=true +alexscaves\:forlorn_hollows_ambience=true +minecraft\:entity.player.attack.crit=true +vs_clockwork\:supersonic=true +minecraft\:music.overworld.cherry_grove=true +create\:sanding_short=true +minecraft\:entity.camel.saddle=true +aether\:entity.valkyrie_queen.death=true +twilightforest\:entity.twilightforest.troll.throw_rock=true +alexscaves\:peering_coprolith_break=true +minecraft\:block.fungus.place=true +undergarden\:item.bucket.fill_virulent=true +minecraft\:entity.piglin.retreat=true +alexsmobs\:banana_slug_hurt=true +aether\:entity.cockatrice.hurt=true +alexscaves\:grottoceratops_idle=true +rats\:entity.rats.biplane.death=true +minecraft\:entity.skeleton_horse.step_water=true +minecraft\:music.menu=true +alexscaves\:metal_swarf_break=true +blue_skies\:entity.arachnarch.venom_drop=true +tropicraft\:headattack=true +rats\:entity.rats.plague_cloud.shoot=true +minecraft\:block.anvil.hit=true +twilightforest\:entity.twilightforest.lich.death=true +minecraft\:block.wood.fall=true +cave_dweller\:flee_2=true +twilightforest\:entity.twilightforest.parrot.imitate.alpha_yeti=true +cave_dweller\:flee_1=true +minecraft\:entity.goat.screaming.horn_break=true +blue_skies\:entity.emberback.flying=true +alexsmobs\:raccoon_hurt=true +alexsmobs\:moose_idle=true +supplementaries\:block.sack.place=true +undergarden\:entity.stoneborn.step=true +twilightforest\:entity.twilightforest.minion.summon=true +exposure\:item.photograph.rustle=true +twilightforest\:entity.twilightforest.snow_queen.hurt=true +twilightforest\:entity.twilightforest.minion.death=true +alexsmobs\:mungus_laser_grow=true +aquaculture\:jellyfish_collide=true +minecraft\:block.anvil.land=true +trackwork\:suspension_creak=true +minecraft\:item.firecharge.use=true +alexscaves\:spelunkery_table_fail=true +twilightforest\:entity.twilightforest.snow_guardian.death=true +minecraft\:block.pointed_dripstone.drip_lava=true +undergarden\:entity.gloomper.death=true +blue_skies\:entity.crogre.idle_happy=true +alexsmobs\:caiman_hurt=true +unusualprehistory\:rex_step=true +graveyard\:entity.lich.idle=true +minecraft\:entity.firework_rocket.twinkle_far=true +minecraft\:block.powder_snow.place=true +rats\:entity.rats.rat.ambient=true +alexscaves\:dark_cloud_idle=true +minecraft\:entity.illusioner.prepare_blindness=true +minecraft\:entity.camel.death=true +minecraft\:entity.llama.chest=true +minecraft\:block.ladder.fall=true +alexscaves\:sulfur_breaking=true +minecraft\:block.coral_block.break=true +minecraft\:block.soul_sand.step=true +twilightforest\:entity.twilightforest.goblin_knight.hurt=true +alexsmobs\:crocodile_hurt=true +minecraft\:entity.evoker.prepare_summon=true +rats\:entity.rats.rat_king.shoot=true +alexsmobs\:terrapin_hurt=true +alexsmobs\:enderiophage_hurt=true +minecraft\:entity.turtle.ambient_land=true +alexscaves\:gammaroach_hurt=true +aether\:block.aether_portal.trigger=true +minecraft\:block.bamboo_sapling.place=true +minecraft\:entity.piglin.admiring_item=true +minecraft\:block.calcite.fall=true +blue_skies\:entity.sliv.hurt=true +twilightforest\:entity.twilightforest.minion.step=true +minecraft\:entity.enderman.stare=true +aether\:entity.aerwhale.ambient=true +blue_skies\:entity.stardust_ram.death=true +beachparty\:radio_tune=true +mysterious_mountain_lib\:presented_by_zaia=true +minecraft\:block.wool.hit=true +alexscaves\:raycat_absorb=true +deeperdarker\:item.transmitter.unlink=true +crittersandcompanions\:entity.bubble_pop=true +alexsmobs\:fly_hurt=true +minecraft\:block.candle.fall=true +alexscaves\:underzealot_death=true +doapi\:brewstation_oven=true +minecraft\:block.packed_mud.hit=true +minecraft\:entity.phantom.flap=true +alexscaves\:boundroid_hurt=true +createbigcannons\:fire_big_cannon=true +minecraft\:block.cherry_sapling.fall=true +minecraft\:block.gilded_blackstone.fall=true +earthtojavamobs\:entity.melon_golem.attack=true +rats\:item.rats.rat_nugget.ore=true +minecraft\:entity.dolphin.play=true +twilightforest\:entity.twilightforest.snow_queen.ambient=true +minecraft\:block.note_block.bit=true +minecraft\:block.sculk_sensor.fall=true +blue_skies\:ambient.poison_dungeon.additions=true +unusualprehistory\:talpanas_death=true +minecraft\:block.basalt.step=true +minecraft\:entity.polar_bear.hurt=true +undergarden\:ambient.frost_mood=true +naturalist\:entity.zebra.angry=true +exposure\:item.photograph_frame.remove_item=true +alexscaves\:acid_burn=true +twilightforest\:entity.twilightforest.carminite_ghastguard.warn=true +artifacts\:generic.pop=true +minecraft\:entity.fox.screech=true +twilightforest\:entity.twilightforest.helmet_crab.step=true +undergarden\:entity.dweller.death=true +minecraft\:entity.vex.charge=true +twilightforest\:entity.twilightforest.mosquito.ambient=true +blue_skies\:entity.venom_spider.idle=true +minecraft\:entity.skeleton_horse.jump_water=true +dungeonsweaponry\:wildfire_shoot=true +minecraft\:entity.zombie_villager.death=true +create_dd\:creatvedite_place=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 +unusualprehistory\:brachi_idle=true +alexscaves\:primordial_caves_ambience=true +unusualprehistory\:rex_stomp_attack=true +unusualprehistory\:ulugh_idle=true +alexsmobs\:tendon_whip=true +alexsmobs\:anteater_hurt=true +minecraft\:block.sand.hit=true +minecraft\:entity.leash_knot.place=true +alexscaves\:disappointment=true +minecraft\:entity.warden.death=true +earthtojavamobs\:entity.bone_spider.death=true +minecraft\:item.armor.equip_leather=true +minecraft\:entity.endermite.death=true +aether\:item.accessory.equip_iron_pendant=true +graveyard\:entity.nameless_hanged.breath=true +minecraft\:block.respawn_anchor.ambient=true +blue_skies\:entity.polargeist.death=true +blue_skies\:music.gatekeepers_tale=true +minecraft\:block.deepslate.break=true +minecraft\:block.note_block.cow_bell=true +illagerinvasion\:entity.sorcerer.complete_cast=true +undergarden\:entity.sploogie.hurt=true +minecraft\:block.iron_door.open=true +minecraft\:block.fungus.break=true +minecraft\:entity.strider.happy=true +twilightforest\:block.twilightforest.casket.open=true +alexsmobs\:leafcutter_ant_hurt=true +alexscaves\:uranium_breaking=true +minecraft\:ambient.soul_sand_valley.additions=true +minecraft\:block.slime_block.place=true +graveyard\:entity.ghoul.step=true +dungeonsweaponry\:enchanter_enchant=true +illagerinvasion\:entity.firecaller.cast=true +furniture\:letsdo_theme=true +blue_skies\:entity.starlit_crusher.prepare_spin=true +alexsmobs\:giant_squid_hurt=true +aether\:entity.sheepuff.hurt=true +illagerinvasion\:entity.provoker.hurt=true +minecraft\:entity.ravager.stunned=true +minecraft\:block.nether_wood.fall=true +blue_skies\:ambient.snow_wind=true +undergarden\:block.virulent.bubble=true +twilightforest\:entity.twilightforest.maze_slime_small.squish=true +minecraft\:entity.dolphin.hurt=true +exposure\:item.camera.lens_insert=true +alexscaves\:submarine_light_on=true +minecraft\:entity.player.small_fall=true +minecraft\:entity.skeleton.step=true +alexscaves\:scrap_metal_breaking=true +minecraft\:music_disc.13=true +minecraft\:entity.bee.death=true +endermanoverhaul\:corrupted_pearl_hit=true +minecraft\:music_disc.11=true +blue_skies\:block.summoning_table.tome_change=true +minecraft\:block.calcite.break=true +rats\:entity.rats.ratfish.ambient=true +farmersdelight\:block.skillet.add_food=true +alexscaves\:tremorzilla_beam_end=true +minecraft\:block.nether_gold_ore.fall=true +alexscaves\:acid_swim=true +alexscaves\:submarine_creak=true +aether\:entity.slider.collide=true +minecraft\:block.wet_grass.fall=true +minecraft\:entity.pig.hurt=true +naturalist\:entity.alligator.ambient=true +aether\:entity.slider.move=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 +earthtojavamobs\:entity.skeleton_wolf.pant=true +minecraft\:block.tuff.fall=true +blue_skies\:entity.arachnarch.lunge=true +minecraft\:block.ancient_debris.hit=true +minecraft\:entity.frog.death=true +minecraft\:entity.endermite.hurt=true +create_dd\:creatvedite_fall=true +minecraft\:entity.evoker.prepare_wololo=true +earthtojavamobs\:entity.skeleton_wolf.whine=true +aether\:item.music_disc.aether_tune=true +crittersandcompanions\:entity.red_panda.death=true +alexscaves\:nuclear_bomb_break=true +betternether\:betternether.mob.skull_flight=true +alexsmobs\:maned_wolf_hurt=true +minecraft\:block.gravel.place=true +twilightforest\:music_disc.twilightforest.steps=true +minecraft\:block.deepslate_bricks.break=true +alexsmobs\:tusklin_hurt=true +alexscaves\:galena_gauntlet_use_loop=true +twilightforest\:entity.twilightforest.fire_beetle.shoot=true +minecraft\:entity.wolf.shake=true +minecraft\:entity.firework_rocket.launch=true +minecraft\:block.basalt.break=true +minecraft\:block.ender_chest.open=true +minecraft\:entity.piglin.jealous=true +minecraft\:block.sculk_sensor.hit=true +aether\:entity.swet.hurt=true +unusualprehistory\:encrusted_step=true +minecraft\:entity.camel.step_sand=true +alexsmobs\:snow_leopard_idle=true +twilightforest\:block.twilightforest.casket.close=true +rats\:entity.rats.plague_doctor.throw=true +twilightforest\:entity.twilightforest.tiny_bird.hurt=true +rats\:entity.rats.rat.dig=true +twilightforest\:entity.twilightforest.ur_ghast.warn=true +twilightforest\:entity.twilightforest.ur_ghast.ambient=true +minecraft\:block.dispenser.dispense=true +marvelous_menagerie\:josepho_idle=true +blue_skies\:entity.azulfo.death=true +minecraft\:block.sculk.fall=true +alexsmobs\:warped_toad_idle=true +minecraft\:item.bucket.empty_tadpole=true +minecraft\:block.moss_carpet.hit=true +minecraft\:entity.husk.ambient=true +minecraft\:entity.stray.step=true +minecraft\:entity.shulker.death=true +minecraft\:block.large_amethyst_bud.break=true +minecraft\:block.deepslate_bricks.place=true +twilightforest\:entity.twilightforest.mist_wolf.ambient=true +vs_clockwork\:designator_idle=true +minecraft\:entity.piglin_brute.ambient=true +minecraft\:entity.chicken.death=true +minecraft\:entity.spider.death=true +additional_lights\:fire_ignition_s=true +twilightforest\:entity.twilightforest.lich_clone.hurt=true +aether\:item.accessory.equip_ice_ring=true +minecraft\:ui.button.click=true +rats\:entity.rats.black_death.summon=true +farmersdelight\:item.skillet.attack.weak=true +naturalist\:entity.bear.hurt=true +twilightforest\:entity.twilightforest.goblin_knight.muffled.hurt=true +earthtojavamobs\:entity.lobber_zombie.attack=true +alexscaves\:dreadbow_rain=true +minecraft\:entity.generic.death=true +biomesoplenty\:music.nether.erupting_inferno=true +graveyard\:entity.ghouling.step=true +twilightforest\:entity.twilightforest.swarm_spider.ambient=true +minecraft\:block.bamboo_wood_button.click_off=true +minecraft\:block.sculk_vein.fall=true +unusualprehistory\:rex_boombox=true +minecraft\:block.wooden_trapdoor.close=true +minecraft\:block.shroomlight.hit=true +aether\:item.accessory.equip_gold_ring=true +undergarden\:ambient.undergarden=true +tropicraft\:buried_treasure=true +create_dd\:creatvedite_break=true +endermanoverhaul\:plant_enderman_ambient=true +doapi\:stove_crackling=true +minecraft\:block.honey_block.fall=true +blue_skies\:entity.crystal_camel.death=true +minecraft\:block.moss_carpet.fall=true +twilightforest\:entity.twilightforest.mist_wolf.hurt=true +minecraft\:entity.goat.prepare_ram=true +minecraft\:entity.hoglin.ambient=true +minecraft\:entity.llama.ambient=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 +mcwwindows\:block.window_close=true +minecraft\:block.metal.step=true +unusualprehistory\:rex_bite=true +minecraft\:entity.donkey.angry=true +blue_skies\:entity.artificial_golem.death=true +createbigcannons\:shell_flying=true +alexscaves\:tremorsaurus_hurt=true +blue_skies\:entity.alchemist.prepare_blindness=true +alexscaves\:brainiac_idle=true +aquaculture\:fish_death=true +blue_skies\:music.moonlit_bloom=true +minecraft\:block.wart_block.fall=true +rats\:entity.rats.ratfish.death=true +minecraft\:block.slime_block.break=true +alexscaves\:radrock_place=true +minecraft\:block.wet_grass.break=true +alexscaves\:amber_step=true +minecraft\:block.note_block.bass=true +betterend\:betterend.music.dark=true +twilightforest\:entity.twilightforest.skeleton_druid.death=true +attributeslib\:dodge=true +minecraft\:block.stem.hit=true +undergarden\:entity.dweller.hurt=true +unusualfishmod\:seafoam=true +aether\:music.aether=true +naturalist\:entity.alligator.death=true +alexscaves\:beholder_step=true +undergarden\:entity.gwibling.death=true +naturalist\:entity.alligator.hurt=true +minecraft\:entity.strider.ambient=true +minecraft\:entity.ghast.ambient=true +exposure\:item.camera.generic_click=true +undergarden\:entity.masticator.eat=true +dungeonsweaponry\:mountaineer_idle=true +minecraft\:ambient.underwater.loop=true +minecraft\:entity.experience_orb.pickup=true +crittersandcompanions\:entity.red_panda.ambient=true +twilightforest\:entity.twilightforest.winter_wolf.target=true +undergarden\:ambient.frost=true +minecraft\:block.hanging_roots.step=true +minecraft\:entity.skeleton.ambient=true +natures_spirit\:music.overworld.tropical=true +minecraft\:block.gilded_blackstone.break=true +alexscaves\:relicheirus_step=true +minecraft\:entity.magma_cube.jump=true +alexsmobs\:tiger_hurt=true +marvelous_menagerie\:steller_death=true +effective\:ambience.splash=true +naturalist\:entity.duck.ambient=true +minecraft\:block.end_portal_frame.fill=true +alexscaves\:fusion_music_disc=true +create\:cranking_compounded_1=true +minecraft\:item.elytra.flying=true +minecraft\:entity.goat.screaming.ram_impact=true +minecraft\:block.lava.ambient=true +earthtojavamobs\:entity.fancy_chicken.hurt=true +minecraft\:entity.rabbit.death=true +alexsmobs\:sugar_glider_idle=true +doapi\:cart_moving=true +twilightforest\:music_disc.twilightforest.radiance=true +minecraft\:block.cake.add_candle=true +minecraft\:block.slime_block.step=true +create\:crushing_3=true +create\:crushing_2=true +create\:crushing_1=true +alexsmobs\:laviathan_idle=true +blue_skies\:entity.crogre.jump=true +rats\:effect.rats.plague_spread=true +minecraft\:block.nether_wood_door.close=true +unusualprehistory\:trike_idle=true +alexscaves\:luxtructosaurus_breath=true +create\:whistle_train_low=true +minecraft\:entity.horse.breathe=true +twilightforest\:block.twilightforest.wrought_iron_fence.extend=true +minecraft\:block.note_block.chime=true +minecraft\:entity.cow.death=true +minecraft\:ambient.underwater.loop.additions=true +dungeonsweaponry\:wraith_teleport_in=true +minecraft\:entity.skeleton_horse.ambient_water=true +blue_skies\:entity.starlit_crusher.death=true +minecraft\:block.chain.hit=true +blue_skies\:block.alchemy_table.use=true +ribbits\:music.ribbit.bongo=false +peculiarprimordials\:frogsong=true +minecraft\:block.mud.hit=true +unusualfishmod\:small_enemy=true +create\:chiff=true +alexscaves\:luxtructosaurus_step=true +alexscaves\:deep_one_death=true +duckling\:duck_death=true +undergarden\:entity.muncher.ambient=true +undergarden\:entity.forgotten.death=true +minecraft\:block.note_block.imitate.wither_skeleton=true +minecraft\:item.bundle.drop_contents=true +alexscaves\:subterranodon_death=true +twilightforest\:entity.twilightforest.carminite_broodling.ambient=true +twilightforest\:item.twilightforest.scepter.pearl=true +minecraft\:block.stone.hit=true +minecraft\:block.nylium.step=true +alexscaves\:deep_one_mage_attack=true +endermanoverhaul\:icy_pearl_hit=true +cave_dweller\:dweller_death=true +neapolitan\:block.note_block.imitate.chimpanzee=true +naturalist\:entity.rhino.scrape=true +betterend\:betterend.ambient.umbra_valley=true +minecraft\:entity.cod.ambient=true +alexscaves\:radrock_break=true +alexscaves\:neodymium_step=true +minecraft\:entity.player.hurt_freeze=true +twilightforest\:entity.twilightforest.lich.teleport=true +blue_skies\:item.arc.ethereal_equip=true +alexscaves\:watcher_death=true +minecraft\:block.bell.use=true +alexscaves\:metal_swarf_place=true +minecraft\:block.large_amethyst_bud.place=true +minecraft\:block.weeping_vines.break=true +blue_skies\:entity.arachnarch.spit=true +alexsmobs\:sculk_boomer_fart=true +unusualprehistory\:hwacha_death=true +minecraft\:block.wet_grass.place=true +undergarden\:entity.masticator.hurt=true +alexscaves\:spelunkery_table_success_complete=true +minecraft\:item.bucket.fill_tadpole=true +earthtojavamobs\:entity.rainbow_sheep.ambient=true +alexscaves\:nuclear_bomb_place=true +minecraft\:item.bottle.fill_dragonbreath=true +twilightforest\:block.twilightforest.reappearing_block.vanish=true +alexscaves\:sulfur_step=true +create\:haunted_bell_convert=true +minecraft\:entity.pig.saddle=true +minecraft\:entity.parrot.imitate.guardian=true +alexscaves\:gossamer_worm_idle=true +alexsmobs\:bald_eagle_idle=true +minecraft\:entity.tadpole.death=true +blue_skies\:entity.starlit_crusher.hurt=true +alexscaves\:brainiac_death=true +undergarden\:entity.rotbeast.attack=true +alexscaves\:peering_coprolith_breaking=true +alexscaves\:relicheirus_topple=true +minecraft\:block.roots.step=true +minecraft\:block.fungus.hit=true +blue_skies\:entity.boss.spawn=true +minecraft\:entity.villager.work_shepherd=true +alexsmobs\:grizzly_bear_die=true +dungeonsweaponry\:nameless_one_death=true +blue_skies\:music.crystal_dunes=true +rats\:item.rats.rat_whistle.whistle=true +alexscaves\:corrodent_idle=true +alexsmobs\:cosmic_cod_hurt=true +alexscaves\:vallumraptor_idle=true +marvelous_menagerie\:thylacine_idle=true +farmersdelight\:block.cabinet.close=true +minecraft\:block.weeping_vines.place=true +twilightforest\:entity.twilightforest.mist_wolf.death=true +deeperdarker\:ambient.portal.groan=true +undergarden\:entity.masticator.step=true +undergarden\:entity.masticator.death=true +undergarden\:entity.forgotten_guardian.ambient=true +illagerinvasion\:entity.invoker.completecast=true +graveyard\:entity.ghouling.ambient=true +minecraft\:entity.wandering_trader.trade=true +rats\:entity.rats.ratfish.hurt=true +alexscaves\:luxtructosaurus_summon=true +create\:whistle_train_manual_low=true +minecraft\:block.nether_ore.hit=true +alexscaves\:magnetron_death=true +unusualprehistory\:raptor_death=true +minecraft\:block.sweet_berry_bush.pick_berries=true +alexsmobs\:mungus_hurt=true +alexscaves\:beholder_idle=true +minecraft\:entity.ender_dragon.ambient=true +minecraft\:block.stone.break=true +minecraft\:entity.ravager.celebrate=true +alexscaves\:deep_one_knight_attack=true +minecraft\:block.suspicious_gravel.break=true +twilightforest\:entity.twilightforest.bighorn_sheep.step=true +twilightforest\:entity.twilightforest.swarm_spider.step=true +minecraft\:block.mud.fall=true +earthtojavamobs\:entity.jolly_llama.bell=true +rats\:entity.rats.ratlantean_spirit.ambient=true +alexscaves\:submarine_destroy=true +blue_skies\:block.everdawn.portal=true +alexsmobs\:elephant_hurt=true +twilightforest\:entity.twilightforest.towerwood_borer.hurt=true +blue_skies\:entity.starlit_wall.grow=true +exposure\:item.camera.film_advance_last=true +farmersdelight\:block.skillet.sizzle=true +exposure\:item.camera.film_advance=true +rats\:entity.rats.rat.craft=true +blue_skies\:block.moonstone.break=true +deeperdarker\:block.vase.fall=true +minecraft\:entity.item_frame.break=true +supplementaries\:block.bellows.retract=true +blue_skies\:entity.starlit_crusher.hammer_smash=true +spelunkery\:knob=true +alexscaves\:nuclear_bomb_defuse=true +minecraft\:entity.fox.hurt=true +aether\:entity.zephyr.ambient=true +twilightforest\:item.twilightforest.block_and_chain.collide=true +naturalist\:entity.snake.hurt=true +create\:peculiar_bell_use=true +unusualprehistory\:barina_death=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 +marvelous_menagerie\:elephant_bird_death=true +minecraft\:block.honey_block.slide=true +minecraft\:entity.skeleton_horse.ambient=true +create\:potato_hit=true +supplementaries\:block.present.break=true +blue_skies\:entity.firefly.death=true +tropicraft\:dolphin=true +blue_skies\:block.rimestone.break=true +blue_skies\:block.mud.hit=true +minecraft\:block.rooted_dirt.hit=true +minecraft\:block.roots.place=true +minecraft\:block.mud.break=true +twilightforest\:music_disc.twilightforest.thread=true +alexscaves\:deep_one_knight_death=true +minecraft\:entity.arrow.hit_player=true +minecraft\:block.mud.place=true +marvelous_menagerie\:caris_armor_break=true +alexscaves\:mine_guardian_land_idle=true +farmersdelight\:block.cooking_pot.boil=true +minecraft\:entity.illusioner.death=true +minecraft\:entity.silverfish.hurt=true +minecraft\:item.spyglass.use=true +alexscaves\:tremorzilla_charge_complete=true +blue_skies\:entity.nyctofly.hurt=true +exposure\:item.camera.flash=true +supplementaries\:block.present.place=true +minecraft\:entity.iron_golem.step=true +minecraft\:block.blastfurnace.fire_crackle=true +minecraft\:block.chain.fall=true +minecraft\:block.honey_block.hit=true +minecraft\:entity.fox.teleport=true +alexscaves\:neodymium_break=true +minecraft\:block.portal.travel=true +minecraft\:item.brush.brushing.gravel.complete=true +minecraft\:entity.goat.screaming.eat=true +doapi\:water_sprinkler=true +rats\:block.rats.dutchrat_bell.ring=true +minecraft\:music_disc.otherside=true +minecraft\:entity.skeleton.hurt=true +minecraft\:block.nether_wood_door.open=true +minecraft\:block.big_dripleaf.step=true +alexsmobs\:rocky_roller_hurt=true +doapi\:beer_elemental_attack=true +twilightforest\:entity.twilightforest.snow_guardian.ambient=true +minecraft\:item.trident.hit_ground=true +minecraft\:item.brush.brushing.gravel=true +blue_skies\:block.rimestone.place=true +minecraft\:block.portal.ambient=true +minecraft\:block.snow.place=true +twilightforest\:entity.twilightforest.loyal_zombie.hurt=true +minecraft\:entity.stray.hurt=true +minecraft\:entity.ender_dragon.hurt=true +minecraft\:entity.sniffer.sniffing=true +minecraft\:entity.witch.ambient=true +biomeswevegone\:music.overworld.eroded_borealis=true +artifacts\:item.whoopee_cushion.fart=true +mcwwindows\:block.window_open=true +alexscaves\:darkness_incarnate_exit=true +unusualprehistory\:antarcto_death=true +minecraft\:block.respawn_anchor.deplete=true +unusualprehistory\:pachy_idle=true +minecraft\:block.candle.break=true +minecraft\:block.spore_blossom.break=true +minecraft\:block.amethyst_block.place=true +minecraft\:block.pointed_dripstone.drip_water=true +minecraft\:block.nether_gold_ore.break=true +alexsmobs\:void_portal_close=true +alexscaves\:uranium_break=true +alexscaves\:watcher_hurt=true +minecraft\:entity.ender_pearl.throw=true +minecraft\:block.tuff.break=true +graveyard\:entity.acolyte.ambient=true +minecraft\:intentionally_empty=true +unusualprehistory\:dunk_attack=true +rats\:block.rats.cheese_cauldron.cheese_made=true +minecraft\:block.fungus.fall=true +dungeonsartifacts\:soul_healer=true +supplementaries\:block.note_block.imitate.enderman=true +minecraft\:block.dispenser.launch=true +vs_clockwork\:physics_infuser_finish=true +alexscaves\:corrodent_dig_loop=true +minecraft\:entity.ravager.roar=true +minecraft\:block.note_block.imitate.ender_dragon=true +enhancedai\:creeper_cena_explode=true +create\:sanding_long=true +blue_skies\:entity.armored_frost_spirit.hurt=true +illagerinvasion\:entity.surrendered.ambient=true +minecraft\:entity.blaze.hurt=true +rats\:item.rats.dye_sponge.used=true +tropicraft\:page_flip=true +blue_skies\:entity.starlit_crusher.heal=true +blue_skies\:entity.player.cast_spell=true +illagerinvasion\:entity.illager_brute.hurt=true +minecraft\:entity.panda.bite=true +minecraft\:entity.parrot.imitate.silverfish=true +minecraft\:entity.wandering_trader.hurt=true +minecraft\:entity.dolphin.ambient_water=true +endermanoverhaul\:tall_enderman_ambient=true +twilightforest\:entity.twilightforest.shield.add=true +alexscaves\:neodymium_place=true +alexscaves\:acid_unsubmerge=true +unusualprehistory\:pachy_death=true +doapi\:brewstation_whistle=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.goat.death=true +minecraft\:block.bubble_column.bubble_pop=true +minecraft\:entity.phantom.swoop=true +illagerinvasion\:entity.surrendered.death=true +minecraft\:entity.parrot.imitate.phantom=true +alexsmobs\:underminer_hurt=true +minecraft\:music_disc.ward=true +aether\:ui.toast.aether_silver=true +deeperdarker\:music.otherside.deeplands=true +deeperdarker\:entity.snapper.hurt=true +minecraft\:entity.wither_skeleton.hurt=true +alexscaves\:boundroid_slam=true +minecraft\:block.azalea_leaves.fall=true +twilightforest\:entity.twilightforest.helmet_crab.hurt=true +minecraft\:block.tuff.hit=true +minecraft\:block.netherite_block.fall=true +minecraft\:entity.pig.step=true +minecraft\:entity.villager.yes=true +minecraft\:music.nether.soul_sand_valley=true +additional_lights\:fire_ignition_l=true +minecraft\:entity.llama.swag=true +rats\:entity.rats.rat.shoot=true +minecraft\:block.small_dripleaf.break=true +alexsmobs\:skreecher_clap=true +minecraft\:entity.villager.work_toolsmith=true +deeperdarker\:block.vase.place=true +blue_skies\:entity.nested_spider.hurt=true +minecraft\:block.bamboo_sapling.hit=true +alexscaves\:watcher_spawn=true +blue_skies\:music.mars=true +unusualprehistory\:austro_hurt=true +alexsmobs\:dropbear_hurt=true +earthtojavamobs\:entity.bone_spider.walk=true +alexscaves\:beholder_place=true +minecraft\:block.spore_blossom.place=true +twilightforest\:entity.twilightforest.hydra.shoot=true +alexscaves\:corrodent_dig_stop=true +minecraft\:entity.enderman.scream=true +minecraft\:entity.parrot.imitate.warden=true +alexscaves\:deep_one_mage_death=true +minecraft\:entity.minecart.riding=true +minecraft\:block.tuff.place=true +minecraft\:entity.illusioner.prepare_mirror=true +minecraft\:entity.elder_guardian.death=true +illagerinvasion\:entity.archivist.hurt=true +unusualprehistory\:talpanas_idle=true +twilightforest\:entity.twilightforest.carminite_golem.death=true +minecraft\:block.amethyst_block.break=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 +graveyard\:entity.lich.melee=true +alexscaves\:vesper_hurt=true +dungeonsartifacts\:wind_horn=true +alexsmobs\:gelada_monkey_idle=true +minecraft\:block.conduit.attack.target=true +minecraft\:entity.arrow.hit=true +undergarden\:item.slingshot.shoot=true +alexsmobs\:guster_hurt=true +minecraft\:entity.squid.death=true +alexsmobs\:cockroach_hurt=true +minecraft\:block.gilded_blackstone.hit=true +alexscaves\:dark_cloud_appear=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.panda.ambient=true +minecraft\:block.polished_deepslate.fall=true +graveyard\:entity.wraith.hurt=true +minecraft\:entity.dolphin.ambient=true +minecraft\:entity.parrot.imitate.zombie=true +minecraft\:block.snow.break=true +minecraft\:block.lily_pad.place=true +aether\:entity.zephyr.shoot=true +alexsmobs\:seagull_hurt=true +alexscaves\:nucleeper_idle=true +minecraft\:block.gravel.hit=true +blue_skies\:entity.summoner.prepare_summon=true +artifacts\:block.water.step=true +naturalist\:entity.tortoise.egg_hatch=true +minecraft\:entity.magma_cube.squish_small=true +minecraft\:entity.bee.pollinate=true +naturalist\:entity.lion.hurt=true +minecraft\:entity.ocelot.hurt=true +minecraft\:block.sand.place=true +alexsmobs\:anaconda_hurt=true +twilightforest\:block.twilightforest.door.vanish=true +farmersdelight\:block.cutting_board.knife=true +natures_spirit\:music.overworld.wisteria=true +minecraft\:block.weeping_vines.fall=true +minecraft\:block.soul_soil.step=true +minecraft\:block.bamboo_wood_hanging_sign.break=true +alexsmobs\:void_worm_hurt=true +marvelous_menagerie\:ophthalmo_hurt=true +deeperdarker\:block.vase.break=true +minecraft\:entity.wandering_trader.death=true +neapolitan\:item.ice_cubes.eat=true +minecraft\:entity.warden.dig=true +minecraft\:entity.guardian.attack=true +twilightforest\:entity.twilightforest.lich.hurt=true +alexscaves\:limestone_spear_throw=true +graveyard\:entity.reaper.ambient=true +illagerinvasion\:item.lost_candle.iron=true +aether\:block.freezer.crackle=true +minecraft\:ambient.nether_wastes.mood=true +goated\:geep.ambient=true +aether\:item.music_disc.chinchilla=true +minecraft\:block.bamboo_wood_button.click_on=true +minecraft\:block.respawn_anchor.charge=true +illagerinvasion\:entity.basher.hurt=true +alexscaves\:atlatitan_idle=true +minecraft\:block.pink_petals.break=true +naturalist\:entity.alligator.egg_break=true +aether\:entity.swet.attack=true +twilightforest\:entity.twilightforest.winter_wolf.death=true +minecraft\:entity.witch.hurt=true +minecraft\:entity.dolphin.swim=true +marvelous_menagerie\:arthropod_hurt=true +blue_skies\:music.poison_defeat=true +alexscaves\:amber_break=true +twilightforest\:entity.twilightforest.hostile_wolf.ambient=true +alexscaves\:primordial_caves_music=true +twilightforest\:entity.twilightforest.quest_ram.death=true +minecraft\:entity.stray.death=true +minecraft\:block.deepslate_tiles.step=true +minecraft\:block.wet_grass.hit=true +ribbits\:entity.ribbit.ambient=true +minecraft\:block.ancient_debris.fall=true +minecraft\:block.note_block.pling=true +minecraft\:entity.ghast.warn=true +minecraft\:entity.warden.heartbeat=true +unusualprehistory\:raptor_attack=true +minecraft\:entity.skeleton_horse.death=true +illagerinvasion\:entity.invoker.teleport_cast=true +minecraft\:entity.sniffer.scenting=true +minecraft\:entity.parrot.imitate.husk=true +minecraft\:entity.tadpole.grow_up=true +twilightforest\:entity.twilightforest.minoshroom.attack=true +minecraft\:entity.polar_bear.step=true +exposure\:item.photograph_frame.break=true +rats\:entity.rats.pied_piper.loop=true +twilightforest\:entity.twilightforest.fire_beetle.step=true +alexsmobs\:centipede_walk=true +minecraft\:block.nether_sprouts.hit=true +dungeonsartifacts\:spinblade=true +minecraft\:block.lava.extinguish=true +minecraft\:entity.villager.work_librarian=true +alexsmobs\:toucan_hurt=true +minecraft\:block.dripstone_block.hit=true +minecraft\:entity.slime.hurt=true +blue_skies\:item.arc.life_equip=true +alexscaves\:primitive_club_miss=true +minecraft\:block.end_gateway.spawn=true +minecraft\:entity.iron_golem.attack=true +minecraft\:entity.zoglin.hurt=true +minecraft\:block.bubble_column.whirlpool_inside=true +aether\:item.accessory.equip_iron_ring=true +minecraft\:music_disc.cat=true +minecraft\:block.bamboo_wood.step=true +minecraft\:entity.generic.burn=true +minecraft\:block.bubble_column.whirlpool_ambient=true +deeperdarker\:entity.stalker.notice=true +alexscaves\:seeking_arrow_lockon=true +vs_clockwork\:boing=true +minecraft\:block.composter.empty=true +twilightforest\:entity.twilightforest.minotaur.attack=true +alexscaves\:magnetic_caves_music=true +beachparty\:radio_reggea=true +blue_skies\:ambient.shaded_woodlands.loop=true +deeperdarker\:block.sculk_stone.step=true +minecraft\:entity.shulker.teleport=true +minecraft\:entity.sniffer.happy=true +minecraft\:block.bone_block.break=true +minecraft\:item.glow_ink_sac.use=true +minecraft\:entity.leash_knot.break=true +twilightforest\:entity.twilightforest.wraith.ambient=true +minecraft\:block.froglight.break=true +alexscaves\:spelunkery_table_codex_remove=true +rats\:entity.rats.rat.pirate=true +alexsmobs\:alligator_snapping_turtle_idle=true +alexscaves\:forlorn_hollows_ambience_additions=true +naturalist\:entity.rhino.ambient_baby=true +neapolitan\:music.record.hullabaloo=true +minecraft\:entity.puffer_fish.flop=true +tropicraft\:iggydeath=true +alexsmobs\:music_disc_thime=true +minecraft\:entity.parrot.death=true +alexsmobs\:bunfungus_idle=true +minecraft\:block.amethyst_block.fall=true +blue_skies\:entity.arachnarch.sling=true +aether\:entity.sheepuff.step=true +alexscaves\:cave_book_close=true +minecraft\:entity.elder_guardian.ambient_land=true +minecraft\:entity.rabbit.ambient=true +minecraft\:entity.blaze.death=true +naturalist\:entity.deer.ambient_baby=true +patchouli\:book_flip=true +minecraft\:block.beehive.exit=true +minecraft\:block.coral_block.place=true +deeperdarker\:block.sculk_stone.hit=true +twilightforest\:item.twilightforest.knightmetal_shield.shatter=true +betterend\:betterend.entity.shadow_walker=true +minecraft\:block.coral_block.step=true +alexscaves\:peering_coprolith_place=true +graveyard\:entity.nightmare.ambient=true +twilightforest\:block.twilightforest.casket.locked=true +alexscaves\:radrock_step=true +undergarden\:entity.scintling.hurt=true +vs_clockwork\:physics_infuser_lightning=true +minecraft\:item.bucket.fill_milk=true +twilightforest\:entity.twilightforest.goblin_knight.muffled.ambient=true +minecraft\:block.moss.fall=true +alexscaves\:hologram_loop=true +minecraft\:entity.axolotl.swim=true +minecraft\:block.slime_block.hit=true +twilightforest\:block.twilightforest.ghast_trap.warmup=true +alexscaves\:amber_place=true +alexscaves\:boundroid_death=true +create\:contraption_disassemble=true +minecraft\:entity.ender_dragon.shoot=true +minecraft\:entity.zombie.step=true +naturalist\:entity.rhino.ambient=true +minecraft\:block.stone.place=true +vs_clockwork\:designator_dump_cluster=true +minecraft\:entity.pig.ambient=true +blue_skies\:ambient.moonlit_reservoir.loop=true +minecraft\:block.nether_wood_trapdoor.close=true +blue_skies\:entity.shrumpty.idle=true +minecraft\:entity.item_frame.place=true +peculiarprimordials\:flute=true +dungeonsweaponry\:wildfire_idle=true +naturalist\:entity.bird.ambient_canary=true +betterend\:betterend.music.water=true +minecraft\:block.nether_gold_ore.place=true +cave_dweller\:chase_step_4=true +cave_dweller\:chase_step_3=true +cave_dweller\:chase_step_2=true +waterdripsound\:lavadrip=true +cave_dweller\:chase_step_1=true +minecraft\:block.candle.place=true +minecraft\:entity.firework_rocket.blast=true +alexscaves\:teletor_hurt=true +minecraft\:entity.wolf.whine=true +twilightforest\:entity.twilightforest.goblin_knight.death=true +minecraft\:ambient.basalt_deltas.mood=true +dungeonsweaponry\:necromancer_prepare_summon=true +minecraft\:block.stone.step=true +twilightforest\:entity.twilightforest.parrot.imitate.death_tome=true +alexscaves\:acid_submerge=true +minecraft\:entity.llama.eat=true +aether\:entity.phyg.hurt=true +undergarden\:entity.gwib.hurt=true +aether\:item.accessory.equip_cape=true +twilightforest\:item.twilightforest.glass_sword.break=true +create\:mechanical_press_activation=true +alexsmobs\:rhinoceros_hurt=true +naturalist\:entity.bear.sleep=true +peculiarprimordials\:splat=true +minecraft\:entity.wolf.step=true +alexscaves\:uranium_place=true +alexscaves\:magnetic_caves_ambience_additions=true +minecraft\:block.froglight.place=true +blue_skies\:music.blinding_dungeon_ambience=true +twilightforest\:entity.twilightforest.death_tome.hurt=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 +alexsmobs\:grizzly_bear_idle=true +minecraft\:entity.zombie.ambient=true +minecraft\:block.sand.break=true +twilightforest\:item.twilightforest.fan.whoosh=true +minecraft\:entity.goat.hurt=true +blue_skies\:entity.alchemist.idle=true +twilightforest\:entity.twilightforest.knight_phantom.death=true +minecraft\:entity.generic.extinguish_fire=true +alexscaves\:totem_of_possession_use=true +minecraft\:entity.rabbit.attack=true +minecraft\:block.muddy_mangrove_roots.step=true +minecraft\:entity.guardian.ambient=true +minecraft\:block.tripwire.attach=true +graveyard\:entity.corrupted_illager.ambient=true +unusualprehistory\:majunga_step=true +aether\:entity.zephyr.hurt=true +blue_skies\:item.arc.poison_equip=true +undergarden\:item.ditchbulb_paste.use=true +minecraft\:block.suspicious_gravel.place=true +undergarden\:entity.smog_mog.hurt=true +minecraft\:entity.goat.screaming.long_jump=true +minecraft\:block.bamboo_wood_hanging_sign.place=true +graveyard\:entity.ghouling.hurt=true +minecraft\:entity.hostile.swim=true +supplementaries\:block.sack.break=true +undergarden\:item.blisterbomb=true +minecraft\:block.nether_wood_fence_gate.open=true +minecraft\:entity.tnt.primed=true +twilightforest\:entity.twilightforest.pinch_beetle.death=true +beachparty\:radio_beachparty=true +minecraft\:entity.generic.swim=true +illagerinvasion\:entity.surrendered.charge=true +alexscaves\:magnetron_roll=true +alexsmobs\:roadrunner_hurt=true +rats\:item.rats.ratbow_essence.used=true +blue_skies\:entity.crogre.death=true +minecraft\:block.beehive.drip=true +minecraft\:entity.panda.sneeze=true +alexscaves\:tube_worm_breaking=true +minecraft\:music_disc.relic=true +biomesoplenty\:music.overworld.origin_valley=true +minecraft\:item.nether_wart.plant=true +unusualprehistory\:megather_hurt=true +minecraft\:entity.fox.spit=true +alexsmobs\:bison_hurt=true +alexsmobs\:lobster_attack=true +dungeonsweaponry\:mountaineer_attack=true +alexscaves\:sea_pig_idle=true +alexscaves\:trilocaris_step=true +minecraft\:entity.player.death=true +minecraft\:block.lantern.fall=true +biomesoplenty\:music.nether.crystalline_chasm=true +minecraft\:block.bone_block.step=true +twilightforest\:block.twilightforest.cicada=true +alexscaves\:deep_one_attack=true +aether\:item.accessory.equip_gold_pendant=true +unusualprehistory\:anuro_hurt=true +supplementaries\:item.slingshot.charge_0=true +minecraft\:block.wart_block.place=true +supplementaries\:item.slingshot.charge_1=true +rats\:block.rats.cheese_cauldron.empty=true +illagerinvasion\:entity.provoker.celebrate=true +alexsmobs\:void_portal_open=true +supplementaries\:item.slingshot.charge_2=true +blue_skies\:entity.fluctuant_sphere.disappear=true +supplementaries\:item.slingshot.charge_3=true +dungeonsweaponry\:vanguard_shield_breaking=true +undergarden\:entity.boomgourd.primed=true +minecraft\:block.copper.place=true +minecraft\:entity.elder_guardian.hurt=true +unusualfishmod\:gnasher_idle=true +minecraft\:block.chest.locked=true +rats\:block.rats.trash_can.empty=true +minecraft\:block.small_amethyst_bud.break=true +alexscaves\:cinder_block_step=true +twilightforest\:entity.twilightforest.dwarf_rabbit.ambient=true +minecraft\:block.cherry_wood.fall=true +aether\:entity.flying_cow.ambient=true +twilightforest\:entity.twilightforest.minoshroom.ambient=true +minecraft\:weather.rain=false +cave_dweller\:dweller_hurt_4=true +cave_dweller\:dweller_hurt_3=true +alexscaves\:teletor_float=true +unusualprehistory\:ulugh_death=true +alexscaves\:deep_one_mage_hostile=true +minecraft\:block.sand.step=true +supplementaries\:block.rotate=true +alexscaves\:raygun_reload=true +minecraft\:entity.ender_dragon.flap=true +create\:whistle_train=true +blue_skies\:music.nature_defeat=true +create\:funnel_flap=true +minecraft\:block.conduit.deactivate=true +minecraft\:entity.puffer_fish.death=true +alexscaves\:vallumraptor_sleep=true +cave_dweller\:dweller_hurt_2=true +cave_dweller\:dweller_hurt_1=true +twilightforest\:entity.twilightforest.slime_beetle.step=true +alexsmobs\:skelewag_idle=true +twilightforest\:entity.twilightforest.ur_ghast.shoot=true +blue_skies\:entity.polargeist.idle=true +blue_skies\:entity.gatekeeper.death=true +minecraft\:entity.donkey.ambient=true +dungeonsweaponry\:nameless_one_idle=true +earthtojavamobs\:entity.melon_golem.aggro=true +minecraft\:ui.loom.select_pattern=true +minecraft\:weather.rain.above=false +spelunkery\:boat_paddle_portal_fluid=true +undergarden\:entity.minion.shoot=true +create\:wrench_remove_compounded_1=true +minecraft\:block.wooden_door.open=true +undergarden\:entity.minion.death=true +illagerinvasion\:item.horn_of_sight.blow=true +vs_clockwork\:designator_select_end=true +alexscaves\:tube_worm_place=true +undergarden\:entity.gwib.flop=true +minecraft\:block.decorated_pot.step=true +tropicraft\:the_tribe=true +alexsmobs\:devils_hole_pupfish_hurt=true +naturalist\:entity.elephant.ambient=true +minecraft\:block.copper.break=true +minecraft\:entity.allay.hurt=true +minecraft\:block.wart_block.break=true +naturalist\:entity.firefly.death=true +minecraft\:block.nether_ore.place=true +minecraft\:block.sculk_catalyst.step=true +minecraft\:entity.horse.death=true +minecraft\:entity.parrot.imitate.ravager=true +twilightforest\:entity.twilightforest.minoshroom.step=true +minecraft\:entity.item.break=true +twilightforest\:entity.twilightforest.alpha_yeti.alert=true +minecraft\:entity.pig.death=true +alexscaves\:darkness_incarnate_enter=true +minecraft\:entity.horse.hurt=true +minecraft\:entity.creeper.death=true +minecraft\:block.honey_block.break=true +alexscaves\:cave_book_turn=true +alexsmobs\:rocky_roller_idle=true +deeperdarker\:entity.shriek_worm.hurt=true +minecraft\:block.sculk_catalyst.break=true +rats\:entity.rats.neoratlantean.hurt=true +alexscaves\:tremorsaurus_throw=true +minecraft\:entity.villager.work_leatherworker=true +twilightforest\:block.twilightforest.casket.repair=true +blue_skies\:entity.venom_spider.spit=true +minecraft\:block.stone_pressure_plate.click_on=true +unusualprehistory\:megalania_death=true +naturalist\:entity.bear.ambient=true +blue_skies\:item.falsite.break=true +minecraft\:block.nether_wood_fence_gate.close=true +undergarden\:entity.dweller.ambient=true +blue_skies\:entity.gatekeeper.prepare_regen=true +minecraft\:block.sculk_vein.hit=true +minecraft\:entity.firework_rocket.large_blast_far=true +minecraft\:entity.drowned.ambient_water=true +doapi\:mincer_cranking=true +minecraft\:entity.villager.ambient=true +blue_skies\:entity.snow_owl.hurt=true +unusualprehistory\:palaeo_idle=true +twilightforest\:entity.twilightforest.towerwood_borer.ambient=true +spelunkery\:portal_fluid_bucket_empty=true +patchouli\:book_open=true +create\:whistle_high=true +alexscaves\:nuclear_siren=true +minecraft\:entity.parrot.imitate.shulker=true +exposure\:item.camera.lens_remove=true +alexscaves\:magic_conch_cast=true +exposure\:item.camera.viewfinder_open=true +twilightforest\:block.twilightforest.trophy_pedestal.activate=true +alexsmobs\:april_fools_scream=true +minecraft\:music.overworld.frozen_peaks=true +natures_spirit\:music.overworld.maple=true +aether\:block.incubator.crackle=true +minecraft\:block.nether_wood_hanging_sign.hit=true +twilightforest\:entity.twilightforest.deer.ambient=true +alexscaves\:resistor_shield_spin=true +blue_skies\:entity.armored_frost_spirit.idle=true +blue_skies\:item.spear.return=true +exposure\:item.photograph_frame.place=true +aquaculture\:tackle_box_open=true +aether\:entity.phyg.ambient=true +illagerinvasion\:item.lost_candle.diamond=true +graveyard\:entity.reaper.death=true +minecraft\:block.vine.step=true +alexscaves\:raygun_start=true +minecraft\:block.note_block.flute=true +rats\:entity.rats.plague_cloud.hurt=true +blue_skies\:entity.crystal_camel.hurt=true +alexscaves\:deep_one_knight_idle=true +blue_skies\:block.tool_box.use=true +minecraft\:block.scaffolding.step=true +twilightforest\:entity.twilightforest.parrot.imitate.wraith=true +twilightforest\:entity.twilightforest.quest_ram.hurt=true +minecraft\:entity.panda.eat=true +earthtojavamobs\:entity.fancy_chicken.death=true +minecraft\:entity.wither_skeleton.death=true +undergarden\:entity.stoneborn.pleased=true +minecraft\:ambient.cave=true +alexscaves\:nuclear_bomb_step=true +minecraft\:block.cave_vines.pick_berries=true +naturalist\:entity.vulture.death=true +minecraft\:entity.salmon.ambient=true +illagerinvasion\:entity.basher.idle=true +minecraft\:block.azalea.step=true +twilightforest\:entity.twilightforest.bighorn_sheep.hurt=true +twilightforest\:entity.twilightforest.minotaur.hurt=true +minecraft\:entity.wandering_trader.disappeared=true +naturalist\:entity.snail.crush=true +alexscaves\:flood_basalt_step=true +minecraft\:block.small_amethyst_bud.place=true +minecraft\:entity.mule.angry=true +minecraft\:entity.husk.hurt=true +minecraft\:block.snow.hit=true +alexsmobs\:crocodile_bite=true +chimes\:block.copper.tie=true +minecraft\:block.portal.trigger=true +undergarden\:block.gronglet.break=true +gateways\:gate_ambient=true +blue_skies\:block.everbright.portal.trigger=true +unusualprehistory\:smilodon_death=true +alexsmobs\:spectre_idle=true +minecraft\:block.grass.hit=true +supplementaries\:block.bubble_block.place=true +undergarden\:entity.gloomper.fart=true +blue_skies\:records.population=true +minecraft\:block.conduit.ambient=true +alexsmobs\:crocodile_baby=true +minecraft\:block.stone_pressure_plate.click_off=true +gardens_of_the_dead\:block.whistlecane.whistle=true +minecraft\:block.copper.hit=true +biomesoplenty\:block.flesh_tendon.drip=true +minecraft\:entity.parrot.hurt=true +create\:copper_armor_equip=true +alexscaves\:tube_worm_break=true +doapi\:beer_elemental_hurt=true +minecraft\:entity.allay.item_thrown=true +minecraft\:entity.zombie_horse.death=true +minecraft\:entity.zoglin.death=true +minecraft\:entity.parrot.imitate.slime=true +naturalist\:entity.hippo.hurt=true +aether\:block.chest_mimic.open=true +gardens_of_the_dead\:music.soulblight_forest=true +naturalist\:entity.firefly.hurt=true +dungeonsartifacts\:soul_wizard_attack=true +rats\:entity.rats.rat_king.summon=true +alexsmobs\:blue_jay_hurt=true +minecraft\:block.barrel.close=true +rats\:entity.rats.plague_doctor.drink_potion=true +minecraft\:entity.chicken.ambient=true +aether\:item.armor.equip_valkyrie=true +aether\:item.armor.equip_phoenix=true +supplementaries\:block.present.pack=true +minecraft\:entity.guardian.hurt=true +betternether\:betternether.mob.firefly.fly=true +minecraft\:entity.silverfish.step=true +minecraft\:entity.turtle.shamble=true +mcwwindows\:block.bars_open=true +blue_skies\:item.spear.throw=true +twilightforest\:item.twilightforest.block_and_chain.hit=true +minecraft\:block.nether_ore.break=true +unusualprehistory\:mammoth_idle=true +twilightforest\:entity.twilightforest.lich.ambient=true +twilightforest\:entity.twilightforest.loyal_zombie.step=true +alexsmobs\:tarantula_hawk_wing=true +alexscaves\:unrefined_waste_breaking=true +alexscaves\:amber_monolith_place=true +alexscaves\:atlatitan_hurt=true +minecraft\:block.calcite.hit=true +unusualprehistory\:majunga_attack=true +minecraft\:block.decorated_pot.shatter=true +minecraft\:entity.snowball.throw=true +minecraft\:block.chorus_flower.grow=true +furniture\:cabinet_open=true +minecraft\:block.bubble_column.upwards_ambient=true +alexsmobs\:flutter_flap=true +graveyard\:entity.ghoul.hurt=true +artifacts\:entity.mimic.death=true +unusualprehistory\:beelze_death=true +alexscaves\:metal_swarf_step=true +twilightforest\:entity.twilightforest.tiny_bird.chirp=true +alexscaves\:tremorzilla_charge_normal=true +undergarden\:block.gronglet.place=true +marvelous_menagerie\:dodo_hurt=true +minecraft\:entity.hoglin.attack=true +createbigcannons\:fire_drop_mortar=true +graveyard\:entity.ghoul.death=true +minecraft\:block.nylium.hit=true +minecraft\:item.bucket.empty_lava=true +unusualprehistory\:tar_ambient=true +blue_skies\:entity.frost_spirit.hurt=true +earthtojavamobs\:entity.skeleton_wolf.death=true +alexscaves\:underzealot_chant=true +minecraft\:entity.player.burp=true +minecraft\:block.cherry_wood_button.click_off=true +alexsmobs\:enderiophage_walk=true +alexscaves\:unrefined_waste_break=true +minecraft\:entity.item.pickup=true +aether\:entity.mimic.kill=true +alexscaves\:sea_staff_woosh=true +illagerinvasion\:item.lost_candle.gold=true +exposure\:item.photograph.place=true +minecraft\:block.bamboo.step=true +alexsmobs\:mudskipper_spit=true +biomesoplenty\:block.spider_egg.break=true +alexsmobs\:farseer_idle=true +alexsmobs\:sculk_boomer=true +aether\:entity.slider.death=true +alexsmobs\:murmur_hurt=true +minecraft\:entity.cat.stray_ambient=true +minecraft\:block.small_dripleaf.step=true +dungeonsartifacts\:soul_wizard_death=true +vs_clockwork\:thick_fluid_fill=true +vs_clockwork\:physics_infuser_initialize=true +exposure\:item.camera.lens_ring_click=true +minecraft\:block.growing_plant.crop=true +minecraft\:entity.lingering_potion.throw=true +minecraft\:block.deepslate_bricks.fall=true +alexsmobs\:stink_ray=true +minecraft\:entity.zombie.attack_iron_door=true +marvelous_menagerie\:ophthalmo_idle=true +minecraft\:entity.camel.ambient=true +minecraft\:entity.ghast.shoot=true +minecraft\:music.overworld.stony_peaks=true +blue_skies\:records.venomous_encounter=true +aether\:entity.swet.jump=true +alexscaves\:raygun_empty=true +marvelous_menagerie\:arthropod_death=true +minecraft\:block.composter.fill_success=true +alexsmobs\:cachalot_whale_idle=true +dungeonsartifacts\:gong_of_weakening=true +minecraft\:ambient.nether_wastes.loop=true +blue_skies\:entity.crynocerous.death=true +alexscaves\:brainiac_attack=true +minecraft\:entity.turtle.swim=true +blue_skies\:entity.gatekeeper.yes=true +alexscaves\:submarine_repair=true +naturalist\:entity.vulture.hurt=true +unusualprehistory\:hwacha_idle=true +deeperdarker\:entity.snapper.sniff=true +blue_skies\:entity.gatekeeper.trade=true +minecraft\:music.under_water=true +alexsmobs\:elephant_walk=true +minecraft\:entity.glow_squid.squirt=true +endermanoverhaul\:bubble_pearl_hit=true +illagerinvasion\:entity.necromancer.summon=true +blue_skies\:entity.summoner.death=true +alexsmobs\:centipede_attack=true +alexscaves\:deep_one_mage_hurt=true +minecraft\:block.tripwire.click_on=true +minecraft\:item.dye.use=true +chimes\:block.bamboo.chiming=true +undergarden\:item.bucket.empty_virulent=true +minecraft\:block.dripstone_block.fall=true +unusualprehistory\:austro_preen=true +minecraft\:block.note_block.hat=true +alexsmobs\:mosquito_capsid_convert=true +minecraft\:entity.bat.ambient=true +aquaculture\:fish_mount_removed=true +mcwwindows\:block.bars_close=true +minecraft\:item.armor.equip_turtle=true +minecraft\:entity.player.swim=true +minecraft\:entity.bat.takeoff=true +minecraft\:entity.painting.break=true +chimes\:ambient.outdoor.wind=true +alexscaves\:abyssal_chasm_ambience_additions=true +minecraft\:block.hanging_sign.hit=true +twilightforest\:entity.twilightforest.ice.shoot=true +minecraft\:entity.warden.angry=true +blue_skies\:records.blinding_rage=true +minecraft\:entity.cow.hurt=true +minecraft\:entity.mooshroom.eat=true +minecraft\:block.sculk_shrieker.fall=true +supplementaries\:block.bubble_block.break=true +minecraft\:block.suspicious_gravel.step=true +minecraft\:entity.parrot.imitate.spider=true +minecraft\:block.chest.close=true +blue_skies\:music.baneful=true +alexscaves\:hullbreaker_idle=true +blue_skies\:entity.gatekeeper.celebrate=true +natures_spirit\:music.overworld.redwood=true +twilightforest\:entity.twilightforest.loyal_zombie.death=true +graveyard\:block.sarcophagus.use=true +unusualprehistory\:paracer_idle=true +twilightforest\:entity.twilightforest.boar.death=true +minecraft\:entity.shulker.hurt=true +beachparty\:radio_click=true +aether\:item.hammer_of_kingbdogz.shoot=true +alexscaves\:gammaroach_death=true +alexsmobs\:enderiophage_squish=true +create\:funnel_flap_compounded_1=true +alexscaves\:unrefined_waste_place=true +supplementaries\:item.wrench.fail=true +minecraft\:block.cherry_wood_hanging_sign.fall=true +minecraft\:entity.villager.death=true +alexscaves\:mine_guardian_flop=true +minecraft\:entity.villager.trade=true +minecraft\:block.conduit.ambient.short=true +minecraft\:block.piston.contract=true +rats\:effect.rats.potion_effect.begin=true +twilightforest\:entity.twilightforest.hostile_wolf.hurt=true +unusualprehistory\:rex_hurt=true +supplementaries\:block.rope.step=true +illagerinvasion\:entity.invoker.shield_break=true +minecraft\:entity.splash_potion.break=true +alexsmobs\:endergrade_hurt=true +betternether\:betternether.ambient.gravel_desert=true +minecraft\:block.cherry_wood_pressure_plate.click_on=true +illagerinvasion\:entity.invoker.death=true +rats\:entity.rats.biplane.loop=true +minecraft\:entity.zombie_villager.step=true +blue_skies\:entity.shrumpty.hurt=true +naturalist\:entity.boar.death=true +minecraft\:entity.parrot.imitate.piglin=true +unusualprehistory\:sludge_idle=true +neapolitan\:entity.chimpanzee.howl=true +dungeonsweaponry\:wildfire_hurt=true +minecraft\:block.fire.extinguish=true +blue_skies\:entity.alchemist.prepare_potions=true +blue_skies\:entity.arachnarch.idle=true +alexscaves\:nuclear_furnace_active_critical=true +earthtojavamobs\:entity.skeleton_wolf.hurt=true +alexscaves\:ferrouslime_hurt=true +dungeonsweaponry\:mountaineer_death=true +minecraft\:entity.player.hurt_on_fire=true +unusualprehistory\:pachy_kick=true +blue_skies\:music.snowcap=true +minecraft\:entity.tropical_fish.ambient=true +minecraft\:entity.sniffer.death=true +alexscaves\:luxtructosaurus_attack_stomp=true +blue_skies\:entity.reindeer.death=true +crittersandcompanions\:entity.otter.ambient=true +unusualprehistory\:encrusted_idle=true +alexsmobs\:sunbird_hurt=true +alexscaves\:abyssmarine_glow_on=true +minecraft\:block.nether_wood_hanging_sign.fall=true +twilightforest\:entity.twilightforest.tiny_bird.song=true +tropicraft\:bongo.medium=true +minecraft\:block.flowering_azalea.fall=true +minecraft\:block.sculk.spread=true +twilightforest\:entity.twilightforest.mist_wolf.target=true +minecraft\:entity.camel.step=true +create\:whistle_train_manual=true +aquaculture\:tackle_box_close=true +unusualprehistory\:majunga_death=true +twilightforest\:music.twilightforest.twilight_forest=true +minecraft\:entity.piglin.step=true +minecraft\:block.packed_mud.fall=true +alexscaves\:grottoceratops_step=true +minecraft\:block.nether_gold_ore.hit=true +minecraft\:entity.painting.place=true +minecraft\:entity.warden.sonic_charge=true +minecraft\:music_disc.strad=true +dungeonsweaponry\:vanguard_attack=true +marvelous_menagerie\:caris_armor_equip=true +createbigcannons\:shrapnel_shell_explosion=true +minecraft\:block.amethyst_cluster.fall=true +minecraft\:entity.cod.flop=true +minecraft\:entity.zombie_villager.cure=true +twilightforest\:entity.twilightforest.hedge_spider.ambient=true +minecraft\:entity.dolphin.death=true +undergarden\:music.disc.gloomper_secret=true +blue_skies\:entity.arachnarch.flip=true +minecraft\:block.anvil.step=true +minecraft\:block.hanging_sign.fall=true +minecraft\:entity.cat.ambient=true +alexscaves\:nuclear_explosion_rumble=true +neapolitan\:entity.chimpanzee.scream=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 +alexscaves\:sea_staff_hit=true +naturalist\:entity.bird.ambient_finch=true +minecraft\:block.nether_wood_pressure_plate.click_off=true +twilightforest\:block.twilightforest.vanish.locked=true +twilightforest\:entity.twilightforest.quest_ram.ambient=true +graveyard\:block.altar.ambient=true +alexsmobs\:flutter_idle=true +farmersdelight\:block.cooking_pot.boil_soup=true +alexsmobs\:skunk_idle=true +alexscaves\:copper_valve_creak_on=true +alexsmobs\:kangaroo_idle=true +minecraft\:block.bone_block.hit=true +minecraft\:entity.witch.celebrate=true +rats\:entity.rats.ratlantean_automaton.hurt=true +twilightforest\:entity.twilightforest.minion.hurt=true +natures_spirit\:music.overworld.arid=true +betterend\:betterend.ambient.blossoming_spires=true +furniture\:cphs_pride=true +minecraft\:block.powder_snow.hit=true +unusualprehistory\:megather_death=true +undergarden\:entity.smog_mog.ambient=true +blue_skies\:entity.starlit_crusher.fling_leaf=true +minecraft\:block.glass.step=true +spelunkery\:portal_fluid_bottle_empty=true +naturalist\:entity.tortoise.egg_crack=true +minecraft\:block.lodestone.fall=true +alexsmobs\:warped_mosco_hurt=true +unusualprehistory\:rex_death=true +marvelous_menagerie\:baby_elephant_bird_hurt=true +aether\:entity.flying_cow.saddle=true +minecraft\:block.cherry_wood_door.close=true +alexscaves\:raycat_eat=true +twilightforest\:entity.twilightforest.swarm_spider.death=true +unusualprehistory\:kentro_hurt=true +doapi\:brewstation_kettle=true +alexscaves\:desolate_dagger_summon=true +graveyard\:entity.nightmare.death=true +twilightforest\:entity.twilightforest.carminite_ghastling.shoot=true +twilightforest\:entity.twilightforest.yeti.growl=true +minecraft\:entity.llama.hurt=true +minecraft\:ui.stonecutter.select_recipe=true +minecraft\:entity.donkey.death=true +dungeonsweaponry\:wraith_hurt=true +undergarden\:entity.dweller.jump=true +blue_skies\:entity.azulfo.idle=true +minecraft\:entity.allay.ambient_without_item=true +alexsmobs\:bunfungus_hurt=true +moyai\:block.moyai_rotate=true +aether\:item.accessory.equip_zanite_ring=true +twilightforest\:entity.twilightforest.hydra.roar=true +alexsmobs\:emu_idle=true +minecraft\:entity.goat.screaming.milk=true +aether\:item.accessory.equip_ice_pendant=true +exposure\:item.camera.shutter_ticking=true +blue_skies\:entity.sliv.death=true +betterend\:betterend.ambient.megalake=true +twilightforest\:entity.twilightforest.ice.ambient=true +alexsmobs\:komodo_dragon_hurt=true +minecraft\:entity.ravager.attack=true +createbigcannons\:potion_fluid_release=true +illagerinvasion\:entity.sorcerer.cast=true +alexsmobs\:gorilla_idle=true +alexscaves\:submarine_move_loop=true +tropicraft\:eastern_isles=true +blue_skies\:entity.diophyde_prowler.idle=true +minecraft\:block.pointed_dripstone.hit=true +twilightforest\:entity.twilightforest.hedge_spider.death=true +minecraft\:block.candle.ambient=true +alexscaves\:beholder_enter=true +alexscaves\:grottoceratops_hurt=true +twilightforest\:block.twilightforest.builder.replace=true +rats\:entity.rats.pied_piper.hurt=true +marvelous_menagerie\:caris_armor_unequip=true +twilightforest\:entity.twilightforest.quest_ram.step=true +minecraft\:entity.ocelot.death=true +neapolitan\:entity.chimpanzee.ambient=true +createbigcannons\:lava_fluid_release=true +doapi\:cake_cut=true +create\:worldshaper_place=true +minecraft\:item.shield.break=true +alexsmobs\:la_cucaracha=true +minecraft\:entity.player.hurt=true +alexscaves\:abyssal_chasm_ambience_mood=true +alexscaves\:relicheirus_idle=true +minecraft\:item.armor.equip_generic=true +cave_dweller\:disappear=true +minecraft\:block.frogspawn.fall=true +blue_skies\:entity.summoner.cast_spell=true +blue_skies\:gangster=true +undergarden\:item.slingshot.gronglet_shoot=true +marvelous_menagerie\:thylacine_death=true +create_dd\:music_disc.waltz_of_the_flowers=true +alexscaves\:large_nuclear_explosion=true +deeperdarker\:entity.snapper.bite=true +alexsmobs\:centipede_hurt=true +alexsmobs\:giant_squid_tentacle=true +create\:schematicannon_finish=true +minecraft\:block.cave_vines.fall=true +unusualprehistory\:coty_hurt=true +minecraft\:entity.wither.shoot=true +minecraft\:block.deepslate_tiles.place=true +alexsmobs\:comb_jelly_hurt=true +minecraft\:block.hanging_sign.place=true +blue_skies\:block.everdawn.portal.trigger=true +alexscaves\:brainiac_throw=true +aether\:item.accessory.equip_zanite_pendant=true +minecraft\:block.deepslate.step=true +minecraft\:entity.villager.work_weaponsmith=true +blue_skies\:entity.stonelet.hurt=true +minecraft\:block.chiseled_bookshelf.fall=true +twilightforest\:music_disc.twilightforest.findings=true +minecraft\:block.medium_amethyst_bud.break=true +blue_skies\:music.poison_boss=true +minecraft\:block.cherry_sapling.place=true +minecraft\:block.mud_bricks.hit=true +minecraft\:block.mangrove_roots.fall=true +marvelous_menagerie\:steller_land_hurt=true +minecraft\:item.armor.equip_gold=true +minecraft\:block.sculk_shrieker.break=true +create\:scroll_value=true +minecraft\:block.soul_sand.break=true +naturalist\:entity.elephant.hurt=true +alexsmobs\:crow_hurt=true +tropicraft\:headmed=true +minecraft\:entity.generic.drink=true +betterend\:betterend.entity.shadow_walker_damage=true +minecraft\:item.bucket.fill_axolotl=true +alexsmobs\:cosmaw_hurt=true +endermanoverhaul\:bubble_pearl_thrown=true +minecraft\:entity.goat.step=true +minecraft\:entity.firework_rocket.blast_far=true +minecraft\:music.nether.crimson_forest=true +minecraft\:block.sculk_shrieker.place=true +minecraft\:block.nether_bricks.hit=true +minecraft\:block.metal_pressure_plate.click_on=true +minecraft\:block.moss.break=true +blue_skies\:entity.infested_swarmer.hurt=true +marvelous_menagerie\:baby_elephant_bird_death=true +minecraft\:block.soul_sand.place=true +blue_skies\:entity.summoner.idle=true +alexsmobs\:crocodile_idle=true +minecraft\:block.nether_wood_button.click_on=true +dungeonsartifacts\:updraft_tome=true +alexscaves\:vallumraptor_death=true +minecraft\:entity.magma_cube.squish=true +rats\:item.rats.rat_net.throw=true +twilightforest\:block.twilightforest.generic.annihilation=true +blue_skies\:entity.stardust_ram.hurt=true +blue_skies\:entity.villager.work_summoner=true +alexscaves\:metal_swarf_breaking=true +rats\:block.rats.cheese_cauldron.blue_cheese_made=true +illagerinvasion\:entity.illager_brute.death=true +minecraft\:entity.drowned.death=true +minecraft\:block.bamboo_wood.hit=true +aether\:entity.cockatrice.flap=true +unusualprehistory\:majunga_hurt=true +blue_skies\:entity.spewter.spit=true +twilightforest\:entity.twilightforest.boar.ambient=true +minecraft\:block.beehive.shear=true +minecraft\:entity.snow_golem.shoot=true +minecraft\:block.moss.hit=true +unusualprehistory\:eryon_idle=true +alexscaves\:mine_guardian_idle=true +doapi\:brewstation_timer=true +alexscaves\:trilocaris_death=true +minecraft\:block.conduit.activate=true +illagerinvasion\:entity.sorcerer.death=true +minecraft\:ui.toast.out=true +alexscaves\:nucleeper_step=true +twilightforest\:entity.twilightforest.bighorn_sheep.death=true +alexscaves\:magnetron_attack=true +unusualfishmod\:deep_water=true +illagerinvasion\:entity.archivist.ambient=true +alexsmobs\:straddler_idle=true +aether\:entity.flying_cow.step=true +minecraft\:entity.ender_eye.death=true +alexscaves\:relicheirus_death=true +minecraft\:block.deepslate_tiles.break=true +tropicraft\:summering=true +minecraft\:block.basalt.place=true +undergarden\:entity.rotwalker.death=true +aether\:entity.phyg.step=true +alexscaves\:hullbreaker_land_hurt=true +minecraft\:entity.lightning_bolt.impact=true +undergarden\:entity.muncher.chew=true +alexscaves\:tephra_whistle=true +minecraft\:entity.panda.cant_breed=true +alexscaves\:tremorzilla_stomp=true +minecraft\:entity.bat.hurt=true +tropicraft\:headdeath=true +alexscaves\:radgill_flop=true +marvelous_menagerie\:caris_armor_crack=true +minecraft\:block.medium_amethyst_bud.place=true +minecraft\:music.overworld.old_growth_taiga=true +dungeonsweaponry\:wraith_death=true +minecraft\:block.sign.waxed_interact_fail=true +minecraft\:ui.cartography_table.take_result=true +minecraft\:entity.zombie.attack_wooden_door=true +twilightforest\:entity.twilightforest.slime_beetle.hurt=true +alexsmobs\:rain_frog_idle=true +rats\:block.rats.trash_can.fill=true +minecraft\:entity.hostile.hurt=true +create\:whistle_train_manual_low_end=true +minecraft\:block.glass.hit=true +vs_clockwork\:welder_weld=true +minecraft\:item.crop.plant=true +aether\:entity.ice_crystal.explode=true +twilightforest\:entity.twilightforest.alpha_yeti.throw=true +minecraft\:block.frogspawn.hit=true +minecraft\:entity.chicken.hurt=true +blue_skies\:entity.player.prepare_rocks=true +createbigcannons\:hot_projectile_splash=true +minecraft\:block.furnace.fire_crackle=true +createbigcannons\:shell_explosion=true +undergarden\:entity.dweller.saddle_remove=true +minecraft\:entity.horse.step_wood=true +vs_clockwork\:thick_fluid_swim=true +minecraft\:block.note_block.bell=true +minecraft\:block.nether_wood.hit=true +minecraft\:entity.wolf.hurt=true +betterend\:betterend.record.eo_dracona=true +alexsmobs\:froststalker_idle=true +minecraft\:entity.enderman.teleport=true +alexscaves\:tectonic_shard_transform=true +blue_skies\:entity.arachnarch.screech=true +minecraft\:block.gravel.fall=true +minecraft\:block.pointed_dripstone.step=true +minecraft\:entity.skeleton.death=true +effective\:ambience.waterfall=false +minecraft\:block.deepslate_tiles.hit=true +minecraft\:entity.llama.angry=true +minecraft\:entity.glow_item_frame.add_item=true +undergarden\:entity.gwibling.flop=true +minecraft\:block.stem.step=true +earthtojavamobs\:entity.skeleton_wolf.step=true +minecraft\:block.hanging_sign.break=true +natures_spirit\:music.overworld.desert=true +blue_skies\:entity.venom_spider.death=true +minecraft\:entity.warden.listening=true +minecraft\:block.basalt.hit=true +twilightforest\:music_disc.twilightforest.wayfarer=true +twilightforest\:block.twilightforest.builder.off=true +minecraft\:block.smoker.smoke=true +minecraft\:music_disc.5=true +minecraft\:entity.pillager.death=true +minecraft\:entity.ravager.step=true +twilightforest\:entity.twilightforest.ur_ghast.tantrum=true +create\:wrench_remove=true +minecraft\:item.crossbow.loading_middle=true +unusualprehistory\:smilodon_idle=true +rats\:entity.rats.plague_doctor.reappear=true +minecraft\:block.copper.fall=true +alexscaves\:mine_guardian_land_explode=true +minecraft\:block.wood.hit=true +blue_skies\:item.astrolabe.ready=true +doapi\:cabinet_open=true +minecraft\:entity.frog.eat=true +minecraft\:entity.parrot.imitate.illusioner=true +blue_skies\:entity.shade_monitor.hurt=true +chimes\:block.iron.chime=true +undergarden\:entity.forgotten_guardian.death=true +dungeonsweaponry\:geomancer_bomb_fuse=true +alexscaves\:grottoceratops_graze=true +endermanoverhaul\:tall_enderman_death=true +alexscaves\:radrock_breaking=true +minecraft\:entity.camel.sit=true +minecraft\:entity.stray.ambient=true +undergarden\:ambient.smogstem_forest_addition=true +minecraft\:entity.horse.step=true +betterend\:betterend.ambient.caves=true +minecraft\:item.shovel.flatten=true +minecraft\:item.bottle.empty=true +minecraft\:block.note_block.basedrum=true +minecraft\:entity.item_frame.rotate_item=true +minecraft\:item.axe.strip=true +blue_skies\:item.arc.dusk_equip=true +rats\:entity.rats.dutchrat.ambient=true +alexsmobs\:murmur_neck=true +alexscaves\:gammaroach_spray=true +naturalist\:entity.giraffe.ambient=true +minecraft\:block.netherrack.step=true +minecraft\:entity.puffer_fish.ambient=true +unusualprehistory\:megalania_idle=true +minecraft\:block.powder_snow.step=true +alexscaves\:nucleeper_death=true +minecraft\:block.shroomlight.step=true +minecraft\:entity.ender_eye.launch=true +aether\:entity.aerwhale.hurt=true +alexscaves\:luxtructosaurus_death=true +aether\:item.accessory.equip_generic=true +alexscaves\:copper_valve_creak_off=true +minecraft\:block.shulker_box.open=true +blue_skies\:entity.artificial_golem.activate=true +twilightforest\:entity.twilightforest.skeleton_druid.ambient=true +alexscaves\:deep_one_idle=true +chimes\:block.amethyst.shimmer=true +blue_skies\:entity.arachnarch.stunned=true +alexscaves\:extinction_spear_throw=true +minecraft\:entity.slime.attack=true +alexscaves\:cinder_block_breaking=true +earthtojavamobs\:entity.lobber_zombie.rotten_flesh.hit=true +rats\:entity.rats.rat.poop=true +undergarden\:entity.brute.hurt=true +aether\:block.aether_portal.ambient=true +alexscaves\:raygun_loop=true +undergarden\:entity.nargoyle.hurt=true +alexsmobs\:snow_leopard_hurt=true +minecraft\:ui.stonecutter.take_result=true +alexsmobs\:seal_hurt=true +alexscaves\:submarine_sonar=true +unusualprehistory\:kentro_death=true +unusualprehistory\:encrusted_death=true +minecraft\:block.tripwire.click_off=true +illagerinvasion\:entity.firecaller.hurt=true +minecraft\:entity.wandering_trader.ambient=true +minecraft\:block.iron_trapdoor.open=true +minecraft\:block.suspicious_sand.step=true +createbigcannons\:mortar_stone_explode=true +minecraft\:block.bamboo_wood_door.close=true +minecraft\:entity.witch.drink=true +alexsmobs\:farseer_emerge=true +naturalist\:entity.duck.step=true +unusualprehistory\:beelze_idle=true +twilightforest\:entity.twilightforest.wraith.death=true +earthtojavamobs\:entity.skeleton_wolf.shake=true +naturalist\:entity.zebra.eat=true +minecraft\:entity.snow_golem.hurt=true +enhancedai\:wtf_boom_explode=true +minecraft\:block.bamboo_wood_fence_gate.close=true +minecraft\:block.nether_bricks.fall=true +minecraft\:block.beacon.power_select=true +aether\:entity.aechor_plant.shoot=true +minecraft\:block.suspicious_sand.break=true +minecraft\:block.suspicious_gravel.hit=true +create\:whistle_train_manual_end=true +undergarden\:ambient.spires=true +spelunkery\:portal_fluid_bucket_fill=true +biomeswevegone\:oddion.hurt=true +alexscaves\:deep_one_admire=true +minecraft\:entity.wither.hurt=true +minecraft\:entity.shulker.ambient=true +twilightforest\:block.twilightforest.ghast_trap.ambient=true +unusualprehistory\:paracer_stomp=true +twilightforest\:entity.twilightforest.shield.break=true +undergarden\:entity.mog.hurt=true +goated\:geep.eat=true +alexscaves\:uranium_step=true +undergarden\:entity.masticator.ambient=true +minecraft\:block.froglight.step=true +endermanoverhaul\:dark_oak_enderman_stare=true +minecraft\:block.sculk_sensor.clicking=true +alexscaves\:raycat_idle=true +twilightforest\:entity.twilightforest.hydra.shoot_fire=true +minecraft\:block.suspicious_sand.place=true +minecraft\:block.coral_block.hit=true +naturalist\:entity.bird.ambient_bluejay=true +chimes\:block.glass.chime=true +create\:cogs=true +doapi\:crafting_bowl_stirring=true +minecraft\:entity.zoglin.angry=true +aether\:entity.cockatrice.death=true +minecraft\:entity.glow_item_frame.rotate_item=true +unusualfishmod\:evil_chattering=true +blue_skies\:entity.summoner.prepare_regen=true +undergarden\:entity.forgotten_guardian.deflect=true +crittersandcompanions\:entity.otter.swim=true +biomeswevegone\:music.overworld.crag_gardens=true +minecraft\:block.mangrove_roots.hit=true +marvelous_menagerie\:elephant_bird_hurt=true +undergarden\:entity.stoneborn.death=true +minecraft\:entity.strider.death=true +minecraft\:entity.parrot.imitate.stray=true +minecraft\:entity.slime.jump=true +dungeonsweaponry\:necromancer_attack=true +alexscaves\:luxtructosaurus_hurt=true +rats\:entity.rats.ratlantean_automaton.death=true +alexscaves\:spelunkery_table_success=true +minecraft\:entity.mule.hurt=true +unusualprehistory\:brachi_death=true +aether\:entity.fire_crystal.explode=true +alexscaves\:sea_pig_eat=true +blue_skies\:entity.jelly_drifter.poison=true +naturalist\:entity.rubber_ducky.death=true +blue_skies\:item.spear.throw_underwater=true +blue_skies\:entity.diophyde_prowler.death=true +rats\:entity.rats.laser.shoot=true +blue_skies\:entity.shade_monitor.death=true +minecraft\:entity.villager.no=true +minecraft\:entity.villager.work_mason=true +biomesoplenty\:music.nether.withered_abyss=true +twilightforest\:entity.twilightforest.carminite_ghastguard.hurt=true +minecraft\:entity.skeleton.converted_to_stray=true +twilightforest\:entity.twilightforest.carminite_golem.attack=true +createbigcannons\:place_autocannon_ammo_container=true +create\:controller_click=true +alexscaves\:underzealot_idle=true +twilightforest\:entity.twilightforest.swarm_spider.hurt=true +naturalist\:entity.bear.hurt_baby=true +unusualprehistory\:raptor_hurt=true +minecraft\:block.spore_blossom.step=true +blue_skies\:entity.arachnarch.throw=true +create\:spout=true +alexsmobs\:tiger_idle=true +blue_skies\:entity.spewter.death=true +minecraft\:block.suspicious_sand.hit=true +minecraft\:block.wooden_door.close=true +alexscaves\:lanternfish_flop=true +alexscaves\:deep_one_knight_hostile=true +gateways\:gate_end=true +twilightforest\:entity.twilightforest.kobold.ambient=true +twilightforest\:entity.twilightforest.towerwood_borer.step=true +rats\:entity.rats.rat.eat=true +twilightforest\:entity.twilightforest.minotaur.death=true +naturalist\:entity.rubber_ducky.ambient=true +alexsmobs\:tiger_angry=true +twilightforest\:entity.twilightforest.death_tome.ambient=true +minecraft\:block.honey_block.place=true +unusualprehistory\:trike_hurt=true +supplementaries\:block.globe.spin=true +betterend\:betterend.music.openspace=true +peculiarprimordials\:trumpet=true +minecraft\:block.snow.fall=true +minecraft\:entity.tropical_fish.hurt=true +tropicraft\:headpain=true +minecraft\:block.cherry_sapling.break=true +minecraft\:entity.polar_bear.death=true +alexsmobs\:skreecher_hurt=true +twilightforest\:block.twilightforest.jet.active=true +minecraft\:block.pink_petals.fall=true +earthtojavamobs\:entity.rainbow_sheep.death=true +graveyard\:entity.nightmare.hurt=true +naturalist\:entity.zebra.hurt=true +alexscaves\:acid_idle=true +minecraft\:music.overworld.deep_dark=true +alexscaves\:atlatitan_step=true +undergarden\:entity.stoneborn.speaking=true +alexsmobs\:mosquito_loop=true +blue_skies\:entity.starlit_crusher.spin=true +alexsmobs\:tasmanian_devil_hurt=true +alexsmobs\:soul_vulture_idle=true +betterend\:betterend.ambient.sulphur_springs=true +twilightforest\:entity.twilightforest.carminite_ghastguard.death=true +aether\:item.armor.equip_obsidian=true +minecraft\:item.lodestone_compass.lock=true +twilightforest\:entity.twilightforest.carminite_ghastling.hurt=true +minecraft\:block.note_block.imitate.skeleton=true +aether\:entity.moa.death=true +minecraft\:block.rooted_dirt.fall=true +minecraft\:entity.sniffer.idle=true +minecraft\:block.grass.fall=true +minecraft\:entity.evoker_fangs.attack=true +alexsmobs\:triops_hurt=true +blue_skies\:entity.villager.work_shoveler=true +alexscaves\:magnetron_idle=true +dungeonsartifacts\:satchel_of_elements=true +minecraft\:item.brush.brushing.generic=true +twilightforest\:entity.twilightforest.alpha_yeti.hurt=true +minecraft\:block.cherry_leaves.step=true +crittersandcompanions\:entity.red_panda.hurt=true +minecraft\:entity.zombie.destroy_egg=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 +twilightforest\:entity.twilightforest.carminite_ghastling.ambient=true +alexsmobs\:orca_hurt=true +unusualfishmod\:crab_scuttling=true +rats\:item.rats.rat_flute.normal=true +minecraft\:block.small_dripleaf.hit=true +minecraft\:ambient.soul_sand_valley.loop=true +alexsmobs\:capuchin_monkey_idle=true +earthtojavamobs\:entity.furnace_golem.attack=true +doapi\:roaster_cooking=true +alexscaves\:vallumraptor_hurt=true +alexsmobs\:bald_eagle_hurt=true +alexscaves\:vallumraptor_scratch=true +naturalist\:item.bucket.empty_snail=true +dungeonsweaponry\:wildfire_shockwave=true +naturalist\:entity.bird.hurt=true +graveyard\:entity.nameless_hanged.ambient=true +blue_skies\:entity.emberback.hurt=true +blue_skies\:entity.gatekeeper.hurt=true +minecraft\:entity.phantom.bite=true +minecraft\:entity.mooshroom.shear=true +blue_skies\:entity.shrumpty.attack=true +supplementaries\:item.bubble_blower=true +neapolitan\:entity.chimpanzee.death=true +twilightforest\:entity.twilightforest.parrot.imitate.hostile_wolf=true +alexsmobs\:anaconda_slither=true +alexscaves\:mine_guardian_explode=true +minecraft\:ambient.basalt_deltas.additions=true +twilightforest\:entity.twilightforest.lich.shoot=true +createbigcannons\:fire_machine_gun=true +minecraft\:entity.goat.milk=true +twilightforest\:block.twilightforest.boss_chest.appear=true +aether\:entity.flying_cow.milk=true +blue_skies\:records.defying_starlight=true +alexsmobs\:banana_slug_slime_expand=true +twilightforest\:entity.twilightforest.naga.hurt=true +twilightforest\:entity.twilightforest.deer.death=true +minecraft\:block.moss.place=true +minecraft\:enchant.thorns.hit=true +twilightforest\:entity.twilightforest.kobold.death=true +twilightforest\:entity.twilightforest.maze_slime.death=true +rats\:entity.rats.dutchrat.death=true +alexscaves\:trilocaris_hurt=true diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/sound_physics_remastered/occlusion.properties b/archive/mythos_dmms2024/tree/client-overrides/config/sound_physics_remastered/occlusion.properties new file mode 100755 index 0000000..af2a140 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/sound_physics_remastered/occlusion.properties @@ -0,0 +1,221 @@ +# Values for blocks can be defined as follows: +# +# By sound type: +# WOOD=1.0 +# +# By block tag: +# \#minecraft\:logs=1.0 +# +# By block ID: +# minecraft\:oak_log=1.0 + +# Sweet Berry Bush (Sound Type) +SWEET_BERRY_BUSH=0.0 +# Crop (Sound Type) +CROP=0.0 +# Soul Soil (Sound Type) +SOUL_SOIL=1.0 +# Small Dripleaf (Sound Type) +SMALL_DRIPLEAF=0.0 +# Sculk (Sound Type) +SCULK=1.0 +# Nether Sprouts (Sound Type) +NETHER_SPROUTS=1.0 +# Candle (Sound Type) +CANDLE=1.0 +# Fungus (Sound Type) +FUNGUS=0.0 +# Azalea Leaves (Sound Type) +AZALEA_LEAVES=1.0 +# Netherrack (Sound Type) +NETHERRACK=1.0 +# Dripstone Block (Sound Type) +DRIPSTONE_BLOCK=1.0 +# Chain (Sound Type) +CHAIN=0.0 +# Honey Block (Sound Type) +HONEY_BLOCK=0.5 +# Deepslate Bricks (Sound Type) +DEEPSLATE_BRICKS=1.0 +# Decorated Pot Cracked (Sound Type) +DECORATED_POT_CRACKED=1.0 +# Sculk Vein (Sound Type) +SCULK_VEIN=1.0 +# Copper (Sound Type) +COPPER=1.0 +# Glow Lichen (Sound Type) +GLOW_LICHEN=0.0 +# Froglight (Sound Type) +FROGLIGHT=1.0 +# Muddy Mangrove Roots (Sound Type) +MUDDY_MANGROVE_ROOTS=1.0 +# Wool (Sound Type) +WOOL=1.5 +# Slime Block (Sound Type) +SLIME_BLOCK=1.0 +# Calcite (Sound Type) +CALCITE=1.0 +# Suspicious Sand (Sound Type) +SUSPICIOUS_SAND=1.0 +# Sculk Shrieker (Sound Type) +SCULK_SHRIEKER=1.0 +# Coral Block (Sound Type) +CORAL_BLOCK=1.0 +# Anvil (Sound Type) +ANVIL=1.0 +# Wart Block (Sound Type) +WART_BLOCK=1.0 +# Cherry Sapling (Sound Type) +CHERRY_SAPLING=1.0 +# Small Amethyst Bud (Sound Type) +SMALL_AMETHYST_BUD=0.0 +# Stem (Sound Type) +STEM=1.0 +# Azalea (Sound Type) +AZALEA=1.0 +# Large Amethyst Bud (Sound Type) +LARGE_AMETHYST_BUD=0.0 +# Bamboo Wood (Sound Type) +BAMBOO_WOOD=1.0 +# Lily Pad (Sound Type) +LILY_PAD=0.0 +# Scaffolding (Sound Type) +SCAFFOLDING=0.0 +# Shroomlight (Sound Type) +SHROOMLIGHT=1.0 +# Amethyst Cluster (Sound Type) +AMETHYST_CLUSTER=1.0 +# Soul Sand (Sound Type) +SOUL_SAND=1.0 +# Nether Wood (Sound Type) +NETHER_WOOD=1.0 +# Moss Carpet (Sound Type) +MOSS_CARPET=0.1 +# Nether Gold Ore (Sound Type) +NETHER_GOLD_ORE=1.0 +# Amethyst (Sound Type) +AMETHYST=1.0 +# Frogspawn (Sound Type) +FROGSPAWN=1.0 +# Netherite Block (Sound Type) +NETHERITE_BLOCK=1.0 +# Bamboo (Sound Type) +BAMBOO=0.1 +# Mud (Sound Type) +MUD=1.0 +# Wood (Sound Type) +WOOD=1.0 +# Polished Deepslate (Sound Type) +POLISHED_DEEPSLATE=1.0 +# Packed Mud (Sound Type) +PACKED_MUD=1.0 +# Weeping Vines (Sound Type) +WEEPING_VINES=0.0 +# Powder Snow (Sound Type) +POWDER_SNOW=0.1 +# Cherry Wood (Sound Type) +CHERRY_WOOD=1.0 +# Cherry Leaves (Sound Type) +CHERRY_LEAVES=1.0 +# Twisting Vines (Sound Type) +TWISTING_VINES=0.0 +# Wet Grass (Sound Type) +WET_GRASS=0.1 +# Gilded Blackstone (Sound Type) +GILDED_BLACKSTONE=1.0 +# Glass (Sound Type) +GLASS=0.1 +# Flowering Azalea (Sound Type) +FLOWERING_AZALEA=1.0 +# Big Dripleaf (Sound Type) +BIG_DRIPLEAF=1.0 +# Hanging Roots (Sound Type) +HANGING_ROOTS=1.0 +# Medium Amethyst Bud (Sound Type) +MEDIUM_AMETHYST_BUD=0.0 +# Rooted Dirt (Sound Type) +ROOTED_DIRT=1.0 +# Sculk Catalyst (Sound Type) +SCULK_CATALYST=1.0 +# Chiseled Bookshelf (Sound Type) +CHISELED_BOOKSHELF=1.0 +# Sculk Sensor (Sound Type) +SCULK_SENSOR=1.0 +# Grass (Sound Type) +GRASS=1.0 +# Lodestone (Sound Type) +LODESTONE=1.0 +# Vine (Sound Type) +VINE=0.0 +# Decorated Pot (Sound Type) +DECORATED_POT=1.0 +# Nylium (Sound Type) +NYLIUM=1.0 +# Tuff (Sound Type) +TUFF=1.0 +# Metal (Sound Type) +METAL=1.0 +# Stone (Sound Type) +STONE=1.0 +# Bamboo Wood Hanging Sign (Sound Type) +BAMBOO_WOOD_HANGING_SIGN=1.0 +# Gravel (Sound Type) +GRAVEL=1.0 +# Nether Wart (Sound Type) +NETHER_WART=1.0 +# Hard Crop (Sound Type) +HARD_CROP=1.0 +# Mud Bricks (Sound Type) +MUD_BRICKS=1.0 +# Hanging Sign (Sound Type) +HANGING_SIGN=1.0 +# Cherry Wood Hanging Sign (Sound Type) +CHERRY_WOOD_HANGING_SIGN=1.0 +# Cave Vines (Sound Type) +CAVE_VINES=1.0 +# Ladder (Sound Type) +LADDER=0.0 +# Spore Blossom (Sound Type) +SPORE_BLOSSOM=0.0 +# Nether Bricks (Sound Type) +NETHER_BRICKS=1.0 +# Moss (Sound Type) +MOSS=0.75 +# Ancient Debris (Sound Type) +ANCIENT_DEBRIS=1.0 +# Snow (Sound Type) +SNOW=0.1 +# Mangrove Roots (Sound Type) +MANGROVE_ROOTS=1.0 +# Pointed Dripstone (Sound Type) +POINTED_DRIPSTONE=0.0 +# Nether Wood Hanging Sign (Sound Type) +NETHER_WOOD_HANGING_SIGN=1.0 +# Sand (Sound Type) +SAND=1.0 +# Deepslate Tiles (Sound Type) +DEEPSLATE_TILES=1.0 +# Bamboo Sapling (Sound Type) +BAMBOO_SAPLING=0.1 +# Basalt (Sound Type) +BASALT=1.0 +# Bone Block (Sound Type) +BONE_BLOCK=1.0 +# Nether Ore (Sound Type) +NETHER_ORE=1.0 +# Lantern (Sound Type) +LANTERN=1.0 +# Roots (Sound Type) +ROOTS=0.0 +# Deepslate (Sound Type) +DEEPSLATE=1.0 +# Suspicious Gravel (Sound Type) +SUSPICIOUS_GRAVEL=1.0 +# Water (Block) +minecraft\:water=0.25 +# Lava (Block) +minecraft\:lava=0.75 +# Jukebox (Block) +minecraft\:jukebox=0.0 +# Ice (Block) +minecraft\:ice=1.0 diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/sound_physics_remastered/reflectivity.properties b/archive/mythos_dmms2024/tree/client-overrides/config/sound_physics_remastered/reflectivity.properties new file mode 100755 index 0000000..371f30d --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/sound_physics_remastered/reflectivity.properties @@ -0,0 +1,215 @@ +# Values for blocks can be defined as follows: +# +# By sound type: +# WOOD=1.0 +# +# By block tag: +# \#minecraft\:logs=1.0 +# +# By block ID: +# minecraft\:oak_log=1.0 + +# Sweet Berry Bush (Sound Type) +SWEET_BERRY_BUSH=0.5 +# Crop (Sound Type) +CROP=0.5 +# Soul Soil (Sound Type) +SOUL_SOIL=0.2 +# Small Dripleaf (Sound Type) +SMALL_DRIPLEAF=0.5 +# Sculk (Sound Type) +SCULK=0.5 +# Nether Sprouts (Sound Type) +NETHER_SPROUTS=0.5 +# Candle (Sound Type) +CANDLE=0.5 +# Fungus (Sound Type) +FUNGUS=0.5 +# Azalea Leaves (Sound Type) +AZALEA_LEAVES=0.5 +# Netherrack (Sound Type) +NETHERRACK=1.1 +# Dripstone Block (Sound Type) +DRIPSTONE_BLOCK=0.5 +# Chain (Sound Type) +CHAIN=0.5 +# Honey Block (Sound Type) +HONEY_BLOCK=0.1 +# Deepslate Bricks (Sound Type) +DEEPSLATE_BRICKS=1.5 +# Decorated Pot Cracked (Sound Type) +DECORATED_POT_CRACKED=0.5 +# Sculk Vein (Sound Type) +SCULK_VEIN=0.5 +# Copper (Sound Type) +COPPER=1.25 +# Glow Lichen (Sound Type) +GLOW_LICHEN=0.5 +# Froglight (Sound Type) +FROGLIGHT=0.5 +# Muddy Mangrove Roots (Sound Type) +MUDDY_MANGROVE_ROOTS=0.5 +# Wool (Sound Type) +WOOL=0.1 +# Slime Block (Sound Type) +SLIME_BLOCK=0.5 +# Calcite (Sound Type) +CALCITE=1.5 +# Suspicious Sand (Sound Type) +SUSPICIOUS_SAND=0.5 +# Sculk Shrieker (Sound Type) +SCULK_SHRIEKER=0.5 +# Coral Block (Sound Type) +CORAL_BLOCK=0.2 +# Anvil (Sound Type) +ANVIL=0.5 +# Wart Block (Sound Type) +WART_BLOCK=0.5 +# Cherry Sapling (Sound Type) +CHERRY_SAPLING=0.5 +# Small Amethyst Bud (Sound Type) +SMALL_AMETHYST_BUD=0.5 +# Stem (Sound Type) +STEM=0.4 +# Azalea (Sound Type) +AZALEA=0.5 +# Large Amethyst Bud (Sound Type) +LARGE_AMETHYST_BUD=0.5 +# Bamboo Wood (Sound Type) +BAMBOO_WOOD=0.5 +# Lily Pad (Sound Type) +LILY_PAD=0.5 +# Scaffolding (Sound Type) +SCAFFOLDING=0.5 +# Shroomlight (Sound Type) +SHROOMLIGHT=0.5 +# Amethyst Cluster (Sound Type) +AMETHYST_CLUSTER=0.5 +# Soul Sand (Sound Type) +SOUL_SAND=0.2 +# Nether Wood (Sound Type) +NETHER_WOOD=0.5 +# Moss Carpet (Sound Type) +MOSS_CARPET=0.5 +# Nether Gold Ore (Sound Type) +NETHER_GOLD_ORE=1.1 +# Amethyst (Sound Type) +AMETHYST=1.5 +# Frogspawn (Sound Type) +FROGSPAWN=0.5 +# Netherite Block (Sound Type) +NETHERITE_BLOCK=1.5 +# Bamboo (Sound Type) +BAMBOO=0.5 +# Mud (Sound Type) +MUD=0.5 +# Wood (Sound Type) +WOOD=0.4 +# Polished Deepslate (Sound Type) +POLISHED_DEEPSLATE=1.5 +# Packed Mud (Sound Type) +PACKED_MUD=0.5 +# Weeping Vines (Sound Type) +WEEPING_VINES=0.5 +# Powder Snow (Sound Type) +POWDER_SNOW=0.5 +# Cherry Wood (Sound Type) +CHERRY_WOOD=0.5 +# Cherry Leaves (Sound Type) +CHERRY_LEAVES=0.5 +# Twisting Vines (Sound Type) +TWISTING_VINES=0.5 +# Wet Grass (Sound Type) +WET_GRASS=0.5 +# Gilded Blackstone (Sound Type) +GILDED_BLACKSTONE=0.5 +# Glass (Sound Type) +GLASS=0.75 +# Flowering Azalea (Sound Type) +FLOWERING_AZALEA=0.5 +# Big Dripleaf (Sound Type) +BIG_DRIPLEAF=0.5 +# Hanging Roots (Sound Type) +HANGING_ROOTS=0.5 +# Medium Amethyst Bud (Sound Type) +MEDIUM_AMETHYST_BUD=0.5 +# Rooted Dirt (Sound Type) +ROOTED_DIRT=0.5 +# Sculk Catalyst (Sound Type) +SCULK_CATALYST=0.5 +# Chiseled Bookshelf (Sound Type) +CHISELED_BOOKSHELF=0.5 +# Sculk Sensor (Sound Type) +SCULK_SENSOR=0.5 +# Grass (Sound Type) +GRASS=0.3 +# Lodestone (Sound Type) +LODESTONE=0.5 +# Vine (Sound Type) +VINE=0.5 +# Decorated Pot (Sound Type) +DECORATED_POT=0.5 +# Nylium (Sound Type) +NYLIUM=0.5 +# Tuff (Sound Type) +TUFF=1.5 +# Metal (Sound Type) +METAL=1.25 +# Stone (Sound Type) +STONE=1.5 +# Bamboo Wood Hanging Sign (Sound Type) +BAMBOO_WOOD_HANGING_SIGN=0.5 +# Gravel (Sound Type) +GRAVEL=0.3 +# Nether Wart (Sound Type) +NETHER_WART=0.5 +# Hard Crop (Sound Type) +HARD_CROP=0.5 +# Mud Bricks (Sound Type) +MUD_BRICKS=0.5 +# Hanging Sign (Sound Type) +HANGING_SIGN=0.5 +# Cherry Wood Hanging Sign (Sound Type) +CHERRY_WOOD_HANGING_SIGN=0.5 +# Cave Vines (Sound Type) +CAVE_VINES=0.5 +# Ladder (Sound Type) +LADDER=0.5 +# Spore Blossom (Sound Type) +SPORE_BLOSSOM=0.5 +# Nether Bricks (Sound Type) +NETHER_BRICKS=1.5 +# Moss (Sound Type) +MOSS=0.1 +# Ancient Debris (Sound Type) +ANCIENT_DEBRIS=0.5 +# Snow (Sound Type) +SNOW=0.15 +# Mangrove Roots (Sound Type) +MANGROVE_ROOTS=0.5 +# Pointed Dripstone (Sound Type) +POINTED_DRIPSTONE=0.5 +# Nether Wood Hanging Sign (Sound Type) +NETHER_WOOD_HANGING_SIGN=0.5 +# Sand (Sound Type) +SAND=0.2 +# Deepslate Tiles (Sound Type) +DEEPSLATE_TILES=1.5 +# Bamboo Sapling (Sound Type) +BAMBOO_SAPLING=0.5 +# Basalt (Sound Type) +BASALT=1.5 +# Bone Block (Sound Type) +BONE_BLOCK=1.5 +# Nether Ore (Sound Type) +NETHER_ORE=1.1 +# Lantern (Sound Type) +LANTERN=0.5 +# Roots (Sound Type) +ROOTS=0.5 +# Deepslate (Sound Type) +DEEPSLATE=1.5 +# Suspicious Gravel (Sound Type) +SUSPICIOUS_GRAVEL=0.5 +# Water (Block) +minecraft\:water=0.5 diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/toastcontrol-common.toml b/archive/mythos_dmms2024/tree/client-overrides/config/toastcontrol-common.toml new file mode 100644 index 0000000..e9a4ee0 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/toastcontrol-common.toml @@ -0,0 +1,50 @@ + +#Client Configuration +[client] + + [client.blocked_toasts] + #If advancement toasts are blocked. + advancements = false + #If recipe toasts are blocked. + recipes = true + #If system toasts are blocked. + system = false + #If tutorial toasts are blocked. + tutorial = true + #If all vanilla toasts are blocked. + global_vanilla = false + #If all non-vanilla toasts are blocked. + global_modded = false + #If all toasts are blocked. + global = false + #Toast Classes that are blocked from being shown. + blocked_classes = [] + + [client.visual_options] + #How long a toast must be on the screen for, in ticks. Use 0 to use the default time. + #Range: 0 ~ 4000 + force_time = 0 + #If toasts are translucent. + translucent = true + #If toasts are transparent. Overrides translucency. + transparent = false + #How many toasts will be displayed on screen at once. + #Range: 1 ~ 7 + toast_count = 3 + #The X offset for toasts to be drawn at. + #Range: -8192 ~ 8192 + x_offset = 0 + #The Y offset for toasts to be drawn at. + #Range: -8192 ~ 8192 + y_offset = 0 + #If toasts automatically pop into the screen without animations. + no_slide = false + #If toasts show on the left of the screen. + start_left = false + #If toasts will come in from the top of the screen, rather than the side. + top_down = false + + [client.debug] + #If toast classes are printed when they are shown. + print_classes = false + diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/travelerstitles-forge-1_20.toml b/archive/mythos_dmms2024/tree/client-overrides/config/travelerstitles-forge-1_20.toml new file mode 100644 index 0000000..f758370 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/travelerstitles-forge-1_20.toml @@ -0,0 +1,216 @@ + +["Traveler's Titles"] + + ########################################################################################################### + ## Biome Title settings. + ########################################################################################################### + ["Traveler's Titles"."Biome Titles"] + "Enable Biome Titles" = false + # How long the fade-in text effect lasts, in ticks. + # 20 ticks = 1 second. + # Default: 10 + "Text Fade-In Time" = 10 + # How long the text displays, in ticks. + # 20 ticks = 1 second. + # Default: 50 + "Text Display Time" = 50 + # How long the fade-out text effect lasts, in ticks. + # 20 ticks = 1 second. + # Default: 10 + "Text Fade-Out Time" = 10 + # The minimum amount of time in ticks that must pass after a biome title is displayed before + # another can be displayed. + # Useful for preventing the player from being spammed if they are traveling quickly. + # 20 ticks = 1 second. + # Default: 80 + "Text Cooldown Time" = 80 + # The text's default RGB color. + # Default: "ffffff" + "Default Text Color" = "ffffff" + # The text's scale. + # Default: 2.1 + "Text Size" = 2.1 + # If enabled, will render a shadow below the text making it easier to read. + # Default: true + "Display Text Shadow" = true + # The text's vertical position on the screen. + # If Horizontally Center Title is enabled, this number is relative to the center of the screen. + # If Horizontally Center Title is disabled, this number is relative to the top of the screen. + # Default: -33.0 + "Text Y Offset" = -33 + # The text's horizontal position on the screen. + # If Horizontally Center Title is enabled, this number is relative to the center of the screen. + # If Horizontally Center Title is disabled, this number is relative to the left side of the screen. + # Default: 0.0 + "Text X Offset" = 0 + # Biomes that should not have any title displayed when the player enters them. + # Example: "[minecraft:plains, minecraft:desert]" + # Default: "[minecraft:the_end, minecraft:river, minecraft:frozen_river]" + "Blacklisted Biomes" = "[minecraft:the_end, minecraft:river, minecraft:frozen_river]" + # Traveler's Titles tracks a list of biomes the player most recently visited in order to + # prevent the player from being spammed with titles when they move between the same few biomes. + # This is the size of that list. + # For example, if this value is 5, then your 5 most recent biomes will be saved. + # Default: 5 + "Number of Most Recent Biomes Saved" = 5 + # Whether or not the biome text should be centered on the screen. + # The Text X Offset and Text Y Offset options are relative to the center of the screen if this is enabled. + # Default: true + "Center Title" = true + # Traveler's Titles tracks a list of biomes the player most recently visited in order to + # prevent the player from being spammed with titles when they move between the same few biomes. + # This option determines whether or not that list should be cleared every time + # the player changes dimensions. + # Default: true + "Reset Biome Cache When Changing Dimensions" = true + # If enabled, dimensions without ceilings (like the Overworld) will only display biome titles when the player is exposed to the skylight. + # This prevents biome titles from showing while the player is underground. + # Default: true + "Only Show Biome Titles When Exposed To Skylight" = true + + ########################################################################################################### + ## Dimension Title settings. + ########################################################################################################### + ["Traveler's Titles"."Dimension Titles"] + "Enable Dimension Titles" = true + # How long the fade-in text effect lasts, in ticks. + # 20 ticks = 1 second. + # Default: 10 + "Text Fade-In Time" = 10 + # How long the text displays, in ticks. + # 20 ticks = 1 second. + # Default: 70 + "Text Display Time" = 70 + # How long the fade-out text effect lasts, in ticks. + # 20 ticks = 1 second. + # Default: 20 + "Text Fade-Out Time" = 20 + # The text's default RGB color. + # Default: "ffffff" + "Default Text Color" = "ffffff" + # The text's scale. + # Default: 3.0 + "Text Size" = 3.0 + # If enabled, will render a shadow below the text making it easier to read. + # Default: true + "Display Text Shadow" = true + # The text's vertical position on the screen. + # If Horizontally Center Title is enabled, this number is relative to the center of the screen. + # If Horizontally Center Title is disabled, this number is relative to the top of the screen. + # Default: -32.0 + "Text Y Offset" = -32 + # The text's horizontal position on the screen. + # If Horizontally Center Title is enabled, this number is relative to the center of the screen. + # If Horizontally Center Title is disabled, this number is relative to the left side of the screen. + # Default: 0.0 + "Text X Offset" = 0 + # Dimensions that should not have any title displayed when the player enters them. + # Example: "[minecraft:overworld, minecraft:the_nether]" + # Default: "[]" + "Blacklisted Dimensions" = "[]" + # Whether or not the dimension text should be centered on the screen. + # The Text X Offset and Text Y Offset options are relative to the center of the screen if this is enabled. + # Default: true + "Center Title" = true + # If enabled, dimensions without ceilings (like the Overworld) will only display dimension titles when the player is exposed to the skylight. + # This prevents dimension titles from showing while the player is underground. + # Default: false + "Only Show Dimension Titles When Exposed To Skylight" = false + + ########################################################################################################### + ## Waystone title settings. Only used if the Waystones mod is installed. + ########################################################################################################### + ["Traveler's Titles"."Waystone Titles"] + "Enable Waystone Titles" = true + # How long the fade-in text effect lasts, in ticks. + # 20 ticks = 1 second. + # Default: 10 + "Text Fade-In Time" = 10 + # How long the text displays, in ticks. + # 20 ticks = 1 second. + # Default: 50 + "Text Display Time" = 50 + # How long the fade-out text effect lasts, in ticks. + # 20 ticks = 1 second. + # Default: 10 + "Text Fade-Out Time" = 10 + # The minimum amount of time in ticks that must pass after a Waystone title is displayed before + # another can be displayed. + # Useful for preventing the player from being spammed if they are traveling quickly. + # 20 ticks = 1 second. + # Default: 80 + "Text Cooldown Time" = 80 + # The text's default RGB color. + # Default: "c2b740" + "Default Text Color" = "c2b740" + # The text's scale. + # Default: 2.1 + "Text Size" = 2.1 + # If enabled, will render a shadow below the text making it easier to read. + # Default: true + "Display Text Shadow" = true + # The text's vertical position on the screen. + # If Horizontally Center Title is enabled, this number is relative to the center of the screen. + # If Horizontally Center Title is disabled, this number is relative to the top of the screen. + # Default: -33.0 + "Text Y Offset" = -33 + # The text's horizontal position on the screen. + # If Horizontally Center Title is enabled, this number is relative to the center of the screen. + # If Horizontally Center Title is disabled, this number is relative to the left side of the screen. + # Default: 0.0 + "Text X Offset" = 0 + # Traveler's Titles tracks a list of Waystones the player most recently visited in order to + # prevent the player from being spammed with titles when they move between the same few Waystones. + # This is the size of that list. + # For example, if this value is 5, then your 5 most recent Waystones will be saved. + # Default: 3 + "Number of Most Recent Waystones Saved" = 3 + # Whether or not the Waystone text should be centered on the screen. + # The Text X Offset and Text Y Offset options are relative to the center of the screen if this is enabled. + # Default: true + "Center Title" = true + # Traveler's Titles tracks a list of Waystones the player most recently visited in order to + # prevent the player from being spammed with titles when they move between the same few Waystones. + # This option determines whether or not that list should be cleared every time + # the player changes dimensions. + # Default: true + "Reset Waystone Cache When Changing Dimensions" = true + # The distance from a Waystone (in blocks) at which the Waystone's title will trigger. + # Default: 30 + "Waystone Title Range" = 30 + # Whether or not Waystone titles should override Biome titles. + # That is, if a player enters the area for a Waystone while also entering a new biome, + # the Waystone title will take precedence. + # Default: true + "Waystone Titles Override Biome Titles" = true + # If enabled, dimensions without ceilings (like the Overworld) will only display Waystone titles when the player is exposed to the skylight. + # This prevents Waystone titles from showing while the player is underground. + # Default: false + "Only Show Waystone Titles When Exposed To Skylight" = false + + ########################################################################################################### + ## Sound settings. These will only be used if you add custom sounds via a resource pack. + ## For information on how to do this, visit the CurseForge page. + ########################################################################################################### + ["Traveler's Titles"."Custom Sound Settings"] + # The volume of the sound that plays when a biome title displays. + # Default: 1.0 + "Biome Sound Effect Volume" = 1.0 + # The pitch of the sound that plays when a biome title displays. + # Default: 1.0 + "Biome Sound Effect Pitch" = 1.0 + # The volume of the sound that plays when a dimension title displays. + # Default: 1.0 + "Dimension Sound Effect Volume" = 1.0 + # The pitch of the sound that plays when a dimension title displays. + # Default: 1.0 + "Dimension Sound Effect Pitch" = 1.0 + # The volume of the sound that plays when a Waystone title displays. + # The Waystones mod must be installed for this to have any effect. + # Default: 1.0 + "Waystone Sound Effect Volume" = 1.0 + # The pitch of the sound that plays when a Waystone title displays. + # The Waystones mod must be installed for this to have any effect. + # Default: 1.0 + "Waystone Sound Effect Pitch" = 1.0 + diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/visuality/config.toml b/archive/mythos_dmms2024/tree/client-overrides/config/visuality/config.toml new file mode 100644 index 0000000..0e3bdcc --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/visuality/config.toml @@ -0,0 +1,18 @@ + +[slime] + #Slime Blobs Enabled + enabled = true + +[charge] + #Charge Particle Enabled + enabled = true + +[waterCircle] + #Water Circles Enabled + enabled = false + #Water Circles Colored + colored = true + #Water Circles Density + #Range: 0 ~ 64 + density = 16 + diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/visuality/particle_emitters/block_ambient.json b/archive/mythos_dmms2024/tree/client-overrides/config/visuality/particle_emitters/block_ambient.json new file mode 100644 index 0000000..4abbc1f --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/visuality/particle_emitters/block_ambient.json @@ -0,0 +1,70 @@ +{ + "enabled": true, + "interval": 10, + "entries": [ + { + "block": [ + "minecraft:gold_ore", + "minecraft:deepslate_gold_ore", + "minecraft:nether_gold_ore" + ], + "particle": { + "type": "visuality:sparkle", + "value": [ + 0.99607843, + 1.0, + 0.7411765 + ] + } + }, + { + "block": [ + "minecraft:diamond_ore", + "minecraft:deepslate_diamond_ore" + ], + "particle": { + "type": "visuality:sparkle", + "value": [ + 0.7058824, + 0.99215686, + 0.93333334 + ] + } + }, + { + "block": [ + "minecraft:emerald_ore", + "minecraft:deepslate_emerald_ore" + ], + "particle": { + "type": "visuality:sparkle", + "value": [ + 0.8509804, + 1.0, + 0.92156863 + ] + } + }, + { + "block": "minecraft:amethyst_cluster", + "particle": { + "type": "visuality:sparkle", + "value": [ + 0.99607843, + 0.79607844, + 0.9019608 + ] + } + }, + { + "block": [ + "minecraft:soul_sand", + "minecraft:soul_soil" + ], + "direction": "up", + "particle": { + "type": "visuality:soul" + } + } + ] +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/visuality/particle_emitters/block_step.json b/archive/mythos_dmms2024/tree/client-overrides/config/visuality/particle_emitters/block_step.json new file mode 100644 index 0000000..d594fe4 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/visuality/particle_emitters/block_step.json @@ -0,0 +1,15 @@ +{ + "enabled": true, + "interval": 10, + "entries": [ + { + "block": [ + "minecraft:soul_sand", + "minecraft:soul_soil" + ], + "particle": { + "type": "visuality:soul" + } + } + ] +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/visuality/particle_emitters/entity_armor.json b/archive/mythos_dmms2024/tree/client-overrides/config/visuality/particle_emitters/entity_armor.json new file mode 100644 index 0000000..27c35e9 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/visuality/particle_emitters/entity_armor.json @@ -0,0 +1,38 @@ +{ + "enabled": true, + "interval": 20, + "entries": [ + { + "armor": [ + "minecraft:golden_helmet", + "minecraft:golden_chestplate", + "minecraft:golden_leggings", + "minecraft:golden_boots" + ], + "particle": { + "type": "visuality:sparkle", + "value": [ + 0.99607843, + 1.0, + 0.7411765 + ] + } + }, + { + "armor": [ + "minecraft:diamond_helmet", + "minecraft:diamond_chestplate", + "minecraft:diamond_leggings", + "minecraft:diamond_boots" + ], + "particle": { + "type": "visuality:sparkle", + "value": [ + 0.7058824, + 0.99215686, + 0.93333334 + ] + } + } + ] +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/visuality/particle_emitters/entity_hit.json b/archive/mythos_dmms2024/tree/client-overrides/config/visuality/particle_emitters/entity_hit.json new file mode 100644 index 0000000..961c88e --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/visuality/particle_emitters/entity_hit.json @@ -0,0 +1,38 @@ +{ + "enabled": true, + "min_amount": 1, + "max_amount": 20, + "entries": [ + { + "entity": [ + "minecraft:skeleton", + "minecraft:skeleton_horse", + "minecraft:stray" + ], + "particle": { + "type": "visuality:bone" + } + }, + { + "entity": "minecraft:wither_skeleton", + "particle": { + "type": "visuality:wither_bone" + } + }, + { + "entity": "minecraft:chicken", + "particle": { + "type": "visuality:feather" + } + }, + { + "entity": [ + "minecraft:villager", + "minecraft:wandering_trader" + ], + "particle": { + "type": "visuality:emerald" + } + } + ] +}
\ No newline at end of file diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/waterdripsound-client.toml b/archive/mythos_dmms2024/tree/client-overrides/config/waterdripsound-client.toml new file mode 100755 index 0000000..3e53398 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/waterdripsound-client.toml @@ -0,0 +1,13 @@ + +[General] + #Enables/Disables the whole Mod [false/true|default:true] + enableMod = true + #Volume of water/lava drips [0.0-1.0|default:0.3] + volume = 0.5 + #Chance of a drip forming each tick (one in X so lower is faster) [1-100|default:10] + dripChance = 10 + #If enabled, uses the Dripstone water/lava drip sounds added in 1.17. If not, uses sounds from older versions of the mod. [false/true|default:true] + useDripstoneSounds = true + #Sound category [default:AMBIENT] + soundCategory = "AMBIENT" + diff --git a/archive/mythos_dmms2024/tree/client-overrides/config/waveycapes.json b/archive/mythos_dmms2024/tree/client-overrides/config/waveycapes.json new file mode 100644 index 0000000..20e6f79 --- /dev/null +++ b/archive/mythos_dmms2024/tree/client-overrides/config/waveycapes.json @@ -0,0 +1,9 @@ +{ + "configVersion": 2, + "windMode": "NONE", + "capeStyle": "BLOCKY", + "capeMovement": "DUNGEONS", + "gravity": 25, + "heightMultiplier": 6, + "straveMultiplier": 2 +}
\ No newline at end of file |