commit e391aa7cd1f5bccfd78b26b15ac7d6d9e2d93e88 Author: hiina Date: Thu Aug 8 16:24:29 2024 -0600 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c0b8a11 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.zip +*.mrpack diff --git a/.packwizignore b/.packwizignore new file mode 100644 index 0000000..5a34d4f --- /dev/null +++ b/.packwizignore @@ -0,0 +1,5 @@ +# .packwizignore follows the same format as .gitignore, and can be used to exclude unwanted files from pack exports +# See https://git-scm.com/docs/gitignore + +# Exclude README +/README.md diff --git a/config/DistantHorizons.toml b/config/DistantHorizons.toml new file mode 100644 index 0000000..cbee740 --- /dev/null +++ b/config/DistantHorizons.toml @@ -0,0 +1,753 @@ +_version = 2 + +[client] + # + # Should Distant Horizon's config button appear in the options screen next to fov slider? + optionsButton = true + + [client.advanced] + + [client.advanced.graphics] + + [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 = 512 + # + # 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" + # + # 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" + # + # 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" + # + # 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 + + [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] + # + # 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" + # + # 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" + # + # What is the minimum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + farFogMin = "0.0" + # + # What is the maximum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + farFogMax = "1.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" + + [client.advanced.graphics.fog.advancedFog.heightFog] + # + # 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" + # + # 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" + # + # 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" + # + # What is the minimum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + heightFogMin = "0.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" + + [client.advanced.graphics.ssao] + # + # Enable Screen Space Ambient Occlusion + enabled = true + # + # 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 the radius Screen Space Ambient Occlusion is applied, measured in blocks. + radius = "4.0" + # + # Determines how dark the Screen Space Ambient Occlusion effect will be. + strength = "0.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" + # + # 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 + + [client.advanced.graphics.noiseTextureSettings] + # + # Should a noise texture be applied to LODs? + # + # This is done to simulate textures and make the LODs appear more detailed. + noiseEnabled = true + # + # How many steps of noise should be applied to LODs? + noiseSteps = 4 + # + # How intense should the noise should be? + noiseIntensity = "5.0" + # + # 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 + + [client.advanced.graphics.advancedGraphics] + # + # 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" + # + # How saturated LOD colors are. + # + # 0 = black and white + # 1 = normal + # 2 = very saturated + saturationMultiplier = "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 + # + # At what Y value should cave culling start? + caveCullingHeight = 40 + # + # 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 + # + # 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 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" + # + # 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 + # + # 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 + # + # 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" + + [client.advanced.worldGenerator] + # + # 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 + # + # 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 = 180 + + [client.advanced.multiplayer] + # + # 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" + # + # 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" + + [client.advanced.lodBuilding] + # + # 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 + # + # 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 + # + # 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" + # + # 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" + + [client.advanced.multiThreading] + # + # 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 = 2 + # + # 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.5" + # + # 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 = 2 + # + # 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 = "0.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 = 2 + # + # 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.25" + # + # 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 = 2 + # + # 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.25" + # + # 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 + + [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" + # + # 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.autoUpdater] + # + # Automatically check for updates on game launch? + enableAutoUpdater = true + # + # Should Distant Horizons silently, automatically download and install new versions? + enableSilentUpdates = false + # + # If DH should use the nightly (provided by Gitlab), or stable (provided by Modrinth) build. + # If [AUTO] is selected DH will update to new stable releases if the current jar is a stable jar + # and will update to new nightly builds if the current jar is a nightly jar (IE the version number ends in '-dev'). + updateBranch = "AUTO" + + [client.advanced.logging] + # + # 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 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 the world generation process. + # This can be useful for debugging. + logWorldGenLoadEvent = "LOG_WARNING_TO_CHAT_AND_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 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 renderer OpenGL process. + # This can be useful for debugging. + logRendererGLEvent = "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 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 network operations. + # This can be useful for debugging. + logNetworkEvent = "LOG_WARNING_TO_CHAT_AND_INFO_TO_FILE" + # + # If enabled, a chat message will be displayed if Java doesn't have enough + # memory allocated to run DH well. + showLowMemoryWarningOnStartup = true + + [client.advanced.debugging] + # + # What renderer is active? + # + # DEFAULT: Default lod renderer + # DEBUG: Debug testing renderer + # DISABLED: Disable rendering + rendererMode = "DEFAULT" + # + # 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" + # + # 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 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 + # + # If true overlapping quads will be rendered as bright red for easy identification. + # If false the quads will be rendered normally. + showOverlappingQuadErrors = false + + [client.advanced.debugging.debugWireframe] + # + # 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 + # + # Render queued world gen tasks? + showWorldGenQueue = false + # + # Render LOD section status? + showRenderSectionStatus = false + # + # Render Quad Tree Rendering status? + showQuadTreeRenderStatus = false + # + # Render full data update/lock status? + showFullDataUpdateStatus = false + + [client.advanced.debugging.openGl] + # + # Requires a reboot to change. + overrideVanillaGLLogger = false + # + # 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 = "IGNORE" + # + # 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. + # 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 + # + # 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" + # + # 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. + # + # 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 = false + + [client.advanced.debugging.exampleConfigScreen] + boolTest = false + byteTest = "8" + intTest = 69420 + doubleTest = "420.69" + shortTest = "69" + longTest = "42069" + floatTest = "0.42069" + stringTest = "Test input box" + listTest = ["option 1", "option 2", "option 3"] + mapTest = "{}" + linkableTest = 420 + diff --git a/config/MythicMountsConfig.json b/config/MythicMountsConfig.json new file mode 100644 index 0000000..8c6f858 --- /dev/null +++ b/config/MythicMountsConfig.json @@ -0,0 +1,479 @@ +{ + "globalSettings": { + "configVersion": 11, + "printBiomes": false, + "globalDebug": false, + "enable3rdPersonFlying": false, + "enableFlyingGravity": true, + "mountFriendlyFireProtection": false, + "disableUiOverlay": false, + "mobCap": 10, + "mobCapRange": 192 + }, + "biomeGroups": { + "deserts": ["minecraft:badlands", "minecraft:minecraft:wooded_badlands", "minecraft:eroded_badlands", "minecraft:savanna", "minecraft:savanna_plateau", "minecraft:windswept_savanna", "minecraft:desert"], + "jungles": ["minecraft:jungle", "minecraft:sparse_jungle", "minecraft:bamboo_jungle"], + "temperate": ["minecraft:plains","minecraft:sunflower_plains", "minecraft:forest", "minecraft:flower_forest", "minecraft:birch_forest", "minecraft:dark_forest", "minecraft:mushroom_fields"], + "shores": ["minecraft:beach","minecraft:snowy_beach", "minecraft:stony_shore"], + "swamps": ["minecraft:swamp", "minecraft:mangrove_swamp"], + "cold": ["minecraft:windswept_hills", "minecraft:windswept_gravelly_hills", "minecraft:windswept_forest", "minecraft:grove", "minecraft:meadow", "minecraft:snowy_slopes", "minecraft:frozen_peaks", "minecraft:jagged_peaks", "minecraft:stony_peaks", "minecraft:snowy_taiga"], + "snowy": [ "minecraft:snowy_slopes", "minecraft:frozen_peaks", "minecraft:snowy_plains", "minecraft:snowy_taiga", "minecraft:snowy_slopes", "minecraft:snowy_beach"], + "mountains": ["minecraft:windswept_hills", "minecraft:windswept_gravelly_hills", "minecraft:windswept_forest", "minecraft:grove", "minecraft:meadow", "minecraft:snowy_slopes", "minecraft:frozen_peaks", "minecraft:jagged_peaks", "minecraft:stony_peaks"], + "forests": ["minecraft:forest", "minecraft:flower_forest", "minecraft:birch_forest", "minecraft:dark_forest", "minecraft:mushroom_fields", "minecraft:taiga"], + "warmForests": ["minecraft:forest", "minecraft:flower_forest", "minecraft:birch_forest", "minecraft:dark_forest", "minecraft:mushroom_fields"], + "oldForests": ["minecraft:old_growth_spruce_taiga", "minecraft:old_growth_pine_taiga;", "Giant Tree Taiga Hills", "Giant Spruce Taiga Hills", "Giant Tree Taiga", "Giant Spruce Taiga"], + "snowyForests": ["minecraft:grove", "minecraft:snowy_taiga"] + }, + "itemGroups": { + "flowerItems": ["sugar", "dandelion", "poppy", "blue_orchid", "allium", "azure_bluet", "red_tulip", "orange_tulip", "white_tulip", "pink_tulip", "oxeye_daisy", "cornflower", "lily_of_the_valley", "lilac", "rose_bush", "peony", "flowering_azalea_leaves"], + "grassItems": ["hay", "grass", "fern", "tall_grass", "large_fern", "bamboo"], + "leafItems": ["oak_leaves", "spruce_leaves", "birch_leaves", "jungle_leaves", "acacia_leaves", "dark_oak_leaves", "azalea_leaves", "flowering_azalea_leaves", "lily_pad", "small_dripleaf", "big_dripleaf"], + "mushroomItems": ["brown_mushroom", "red_mushroom", "crimson_fungus", "warped_fungus"], + "rootItems": ["cave_vines", "vines", "hanging_roots", "glow_lichen", "crimson_roots", "warped_roots", "nether_wart", "cactus"], + "seedItems": ["wheat_seeds", "melon_seeds", "pumpkin_seeds", "beetroot_seeds", "sweet_berries"], + "vegetableItems": ["potato", "carrot", "beetroot"], + "fruitItems": ["sweet_berries", "melon_slice", "apple", "glow_berries"], + "seaweedItems": ["seagrass", "kelp", "tall_seagrass"], + "fishItems": ["salmon", "cod", "tropical_fish", "pufferfish"], + "meatItems": ["rabbit", "chicken", "mutton", "beef", "porkchop", "egg"], + "scavengerItems": ["egg", "rotten_flesh", "spider_eye"] + }, + "itemGroupCategories": { + "nectar": ["flowerItems", "fruitItems"], + "leafyHerbivore": ["grassItems", "leafItems", "flowerItems"], + "heartyHerbivore": ["vegetableItems", "fruitItems", "mushroomItems"], + "herbivore": ["grassItems", "leafItems", "flowerItems", "vegetableItems", "fruitItems", "mushroomItems"], + "omnivore": ["vegetableItems", "fruitItems", "mushroomItems", "meatItems", "scavengerItems"], + "carnivore": ["meatItems", "fishItems"], + "scavenger": ["scavengerItems", "vegetableItems", "fruitItems", "mushroomItems"], + "piscivore": ["seaweedItems", "fishItems"], + "oceanScavenger": ["seaweedItems", "scavengerItems", "fishItems", "vegetableItems"] + }, + "spawnCategories": { + "CourierBirdSpawnSettings": { + "shouldSpawn": true, + "spawnDebug": false, + "spawnWeight": 12, + "spawnRandomChance": 100, + "chunkFreq": 0, + "chunkOffset": 0, + "spawnType": "overworld", + "minSpawnGroupSize": 2, + "maxSpawnGroupSize": 4 + }, + "DireWolfSpawnSettings": { + "shouldSpawn": true, + "spawnDebug": false, + "spawnWeight": 10, + "spawnRandomChance": 100, + "chunkFreq": 0, + "chunkOffset": 0, + "spawnType": "overworld", + "minSpawnGroupSize": 2, + "maxSpawnGroupSize": 4 + }, + "DragonSpawnSettings": { + "shouldSpawn": true, + "spawnDebug": false, + "spawnWeight": 100, + "spawnRandomChance": 10, + "chunkFreq": 3, + "chunkOffset": 0, + "spawnType": "subterranean", + "minSpawnGroupSize": 1, + "maxSpawnGroupSize": 1, + "maxIn256Region": 1 + }, + "GriffonSpawnSettings": { + "shouldSpawn": true, + "spawnDebug": false, + "spawnWeight": 10, + "spawnYCeiling": 50000, + "spawnYFloor": 100, + "spawnRandomChance": 70, + "chunkFreq": 0, + "chunkOffset": 0, + "spawnType": "overworld", + "minSpawnGroupSize": 1, + "maxSpawnGroupSize": 1 + }, + "GeckotoaSpawnSettings": { + "shouldSpawn": true, + "spawnDebug": false, + "spawnWeight": 50, + "spawnYCeiling": 50000, + "spawnYFloor": 60, + "spawnRandomChance": 100, + "chunkFreq": 3, + "chunkOffset": 1, + "spawnType": "subterranean", + "minSpawnGroupSize": 1, + "maxSpawnGroupSize": 1, + "maxIn256Region": 1 + }, + "MothSpawnSettings": { + "shouldSpawn": true, + "spawnDebug": false, + "spawnWeight": 10, + "spawnRandomChance": 70, + "chunkFreq": 0, + "chunkOffset": 0, + "spawnType": "overworld", + "minSpawnGroupSize": 1, + "maxSpawnGroupSize": 1 + }, + "ColelytraSpawnSettings": { + "shouldSpawn": true, + "spawnDebug": false, + "spawnWeight": 10, + "spawnRandomChance": 100, + "chunkFreq": 0, + "chunkOffset": 0, + "spawnType": "overworld", + "minSpawnGroupSize": 3, + "maxSpawnGroupSize": 3 + }, + "NetherBatSpawnSettings": { + "shouldSpawn": true, + "spawnDebug": false, + "spawnWeight": 50, + "spawnRandomChance": 100, + "chunkFreq": 5, + "chunkOffset": 0, + "spawnType": "nether", + "minSpawnGroupSize": 1, + "maxSpawnGroupSize": 1, + "maxIn256Region": 4 + }, + "NudibranchSpawnSettings": { + "shouldSpawn": true, + "spawnDebug": false, + "spawnWeight": 20, + "spawnRandomChance": 100, + "chunkFreq": 0, + "chunkOffset": 0, + "spawnType": "water", + "minSpawnGroupSize": 2, + "maxSpawnGroupSize": 4 + }, + "RidingLizardSpawnSettings": { + "shouldSpawn": true, + "spawnDebug": false, + "spawnWeight": 1, + "spawnRandomChance": 50, + "chunkFreq": 5, + "chunkOffset": 0, + "spawnType": "overworld", + "minSpawnGroupSize": 2, + "maxSpawnGroupSize": 3 + }, + "NightmareSpawnSettings": { + "shouldSpawn": true, + "spawnDebug": false, + "spawnWeight": 100, + "spawnRandomChance": 25, + "chunkFreq": 5, + "chunkOffset": 0, + "spawnType": "nether", + "minSpawnGroupSize": 2, + "maxSpawnGroupSize": 3, + "maxIn256Region": 5 + }, + "AcenciaSpawnSettings": { + "shouldSpawn": true, + "spawnDebug": false, + "spawnWeight": 10, + "spawnRandomChance": 100, + "chunkFreq": 0, + "chunkOffset": 0, + "spawnType": "overworld", + "a": 2, + "maxSpawnGroupSize": 3 + }, + "ArchelonSpawnSettings": { + "shouldSpawn": true, + "spawnDebug": false, + "spawnWeight": 1, + "spawnRandomChance": 10, + "chunkFreq": 5, + "chunkOffset": 0, + "spawnType": "water", + "minSpawnGroupSize": 1, + "maxSpawnGroupSize": 1, + "maxIn256Region": 2 + }, + "FirebirdSpawnSettings": { + "shouldSpawn": true, + "spawnDebug": false, + "spawnWeight": 1, + "spawnRandomChance": 2, + "spawnYCeiling": 50000, + "spawnYFloor": 60, + "chunkFreq": 0, + "chunkOffset": 0, + "spawnType": "village", + "minSpawnGroupSize": 1, + "maxSpawnGroupSize": 1, + "maxIn256Region": 1 + } + }, + "mobConfig": { + "ACENCIA": { + "health": 28, + "speed": 0.44999998807907104, + "attack": 10, + "inventorySize": 4, + "spawnCategory" : "AcenciaSpawnSettings", + "spawnBiomes": ["snowyForests"], + "diet": "carnivore", + "tamingChance": 10, + "tamingItems": ["mutton","salmon"], + "breedingItems": ["rabbit", "chicken", "mutton", "salmon"], + "foodItems": ["meatItems"], + "hostileToMobs": ["minecraft:rabbit","minecraft:sheep","minecraft:goat","minecraft:chicken"], + "playerHostile": false, + "fleeFromPlayer": false, + "battleWithOwner": true, + "loudness": 100 + }, + "ARCHELON": { + "health": 60, + "speed": 0.14999998807907104, + "attack": 6, + "inventorySize": 10, + "spawnCategory" : "ArchelonSpawnSettings", + "spawnBiomes": ["minecraft:deep_lukewarm_ocean"], + "diet": "omnivore", + "tamingChance": 10, + "tamingItems": ["cod","salmon"], + "breedingItems": ["cod","salmon"], + "foodItems": ["piscivore"], + "hostileToMobs": ["minecraft:salmon"], + "playerHostile": false, + "fleeFromPlayer": false, + "battleWithOwner": false, + "loudness": 75 + }, + "COURIER_BIRD": { + "health": 20, + "speed": 0.44999998807907104, + "attack": 4, + "inventorySize": 3, + "spawnCategory" : "CourierBirdSpawnSettings", + "spawnBiomes": ["jungles"], + "diet": "herbivore", + "tamingChance": 10, + "tamingItems": ["sweet_berries"], + "foodItems": ["fruitItems"], + "breedingItems": ["sweet_berries", "melon_slice"], + "hostileToMobs": [], + "playerHostile": false, + "fleeFromPlayer": true, + "battleWithOwner": true, + "loudness": 100 + }, + "DIREWOLF": { + "health": 30, + "speed": 0.44999998807907104, + "attack": 7, + "inventorySize": 4, + "spawnCategory" : "DireWolfSpawnSettings", + "spawnBiomes": ["oldForests"], + "diet": "carnivore", + "tamingChance": 10, + "tamingItems": ["bone"], + "breedingItems": ["rabbit","chicken","mutton","beef","porkchop"], + "foodItems": ["meatItems"], + "hostileToMobs": ["minecraft:sheep","minecraft:skeleton"], + "playerHostile": false, + "fleeFromPlayer": false, + "battleWithOwner": true, + "loudness": 100 + }, + "DRAGON": { + "health": 40, + "speed": 0.44999998807907104, + "attack": 10, + "inventorySize": 9, + "spawnCategory" : "DragonSpawnSettings", + "spawnBiomes": ["All Overworld"], + "diet": "carnivore", + "tamingChance": 5, + "tamingItems": ["gold_ingot","diamond","emerald"], + "foodItems": ["meatItems"], + "breedingItems": ["golden_carrot","golden_apple","glistering_melon_slice"], + "hostileToMobs": [], + "playerHostile": true, + "fleeFromPlayer": false, + "battleWithOwner": true, + "loudness": 100, + "specialAbilitiesEnabled": true + }, + "GRIFFON": { + "health": 35, + "speed": 0.44999998807907104, + "attack": 7, + "inventorySize": 4, + "spawnCategory" : "GriffonSpawnSettings", + "spawnBiomes": ["minecraft:windswept_gravelly_hills","minecraft:windswept_forest","minecraft:snowy_slopes","minecraft:jagged_peaks","minecraft:windswept_hills;"], + "diet": "carnivore", + "tamingChance": 10, + "tamingItems": ["rabbit","mutton"], + "breedingItems": ["rabbit","mutton"], + "foodItems": ["meatItems"], + "hostileToMobs": ["minecraft:sheep","minecraft:rabbit"], + "playerHostile": false, + "fleeFromPlayer": false, + "battleWithOwner": true, + "loudness": 50 + }, + "GECKOTOA": { + "health": 35, + "speed": 0.44999998807907104, + "attack": 4, + "inventorySize": 9, + "spawnCategory" : "GeckotoaSpawnSettings", + "spawnBiomes": ["All Overworld"], + "diet": "omnivore", + "tamingChance": 10, + "tamingItems": ["melon","pumpkin","hay_block"], + "foodItems": ["heartyHerbivore"], + "breedingItems": ["melon","pumpkin","hay_block"], + "hostileToMobs": [], + "playerHostile": false, + "fleeFromPlayer": false, + "battleWithOwner": false, + "loudness": 50, + "specialAbilitiesEnabled": true + }, + "MOTH": { + "health": 10, + "speed": 0.44999998807907104, + "attack": 2, + "inventorySize": 2, + "spawnCategory" : "MothSpawnSettings", + "spawnBiomes": ["Dark Forest Hills","Dark Forest"], + "diet": "herbivore", + "tamingChance": 10, + "seekingBlocks": ["minecraft:torch", "minecraft:redstone_torch", "minecraft:soul_torch"], + "tamingItems": ["flowerItems"], + "breedingItems": ["sugar","melon_slice","glistering_melon_slice"], + "foodItems": ["nectar"], + "hostileToMobs": [], + "playerHostile": false, + "fleeFromPlayer": false, + "battleWithOwner": false, + "loudness": 100 + }, + "COLELYTRA": { + "health": 14, + "speed": 0.44999998807907104, + "attack": 2, + "inventorySize": 5, + "spawnCategory" : "ColelytraSpawnSettings", + "spawnBiomes": ["minecraft:mushroom_fields"], + "diet": "herbivore", + "tamingChance": 10, + "tamingItems": ["flowerItems","mushroomItems"], + "breedingItems": ["mushroomItems"], + "foodItems": ["flowerItems","mushroomItems"], + "hostileToMobs": [], + "playerHostile": false, + "fleeFromPlayer": false, + "battleWithOwner": false, + "loudness": 100 + }, + "NETHER_BAT": { + "health": 25, + "speed": 0.44999998807907104, + "attack": 4, + "inventorySize": 3, + "spawnCategory" : "NetherBatSpawnSettings", + "spawnBiomes": ["Crimson Forest","Warped Forest"], + "diet": "omnivore", + "tamingChance": 10, + "tamingItems": ["porkchop"], + "breedingItems": ["porkchop","apple","rotten_flesh"], + "foodItems": ["scavenger"], + "hostileToMobs": [], + "playerHostile": true, + "fleeFromPlayer": false, + "battleWithOwner": true, + "loudness": 100 + }, + "NUDIBRANCH": { + "health": 25, + "speed": 0.44999998807907104, + "attack": 3, + "inventorySize": 3, + "spawnCategory" : "NudibranchSpawnSettings", + "spawnBiomes": ["Warm Ocean"], + "spawnBlocks": ["minecraft:brain_coral_block","minecraft:bubble_coral_block","minecraft:fire_coral_block","minecraft:horn_coral_block","minecraft:tube_coral_block"], + "diet": "herbivore", + "tamingChance": 10, + "tamingItems": ["seagrass"], + "foodItems": ["seaweedItems"], + "breedingItems": ["kelp"], + "hostileToMobs": [], + "playerHostile": false, + "fleeFromPlayer": false, + "battleWithOwner": false, + "loudness": 100, + "specialAbilitiesEnabled": true + }, + "RIDING_LIZARD": { + "health": 20, + "speed": 0.44999998807907104, + "attack": 3, + "inventorySize": 2, + "spawnCategory" : "RidingLizardSpawnSettings", + "spawnBiomes": ["Desert"], + "diet": "carnivore", + "tamingChance": 10, + "tamingItems": ["rabbit", "chicken"], + "breedingItems": ["rabbit", "chicken", "pumpkin", "rotten_flesh"], + "foodItems": ["scavenger"], + "hostileToMobs": ["minecraft:rabbit","minecraft:chicken"], + "playerHostile": true, + "fleeFromPlayer": false, + "battleWithOwner": true, + "loudness": 100 + }, + "FIREBIRD": { + "health": 20, + "speed": 0.44999998807907104, + "attack": 3, + "inventorySize": 3, + "spawnCategory" : "FirebirdSpawnSettings", + "spawnBiomes": ["all overworld"], + "diet": "herbivore", + "tamingChance": 10, + "tamingItems": ["golden_apple"], + "breedingItems": ["golden_apple"], + "foodItems": ["golden_apple"], + "hostileToMobs": [], + "playerHostile": false, + "fleeFromPlayer": false, + "battleWithOwner": true, + "loudness": 100 + }, + "NIGHTMARE": { + "health": 35, + "speed": 0.44999998807907104, + "attack": 5, + "inventorySize": 4, + "spawnCategory" : "NightmareSpawnSettings", + "spawnBiomes": ["minecraft:basalt_deltas", "minecraft:soul_sand_valley"], + "diet": "omnivore", + "tamingChance": 3, + "tamingItems": ["bone", "coal", "charcoal"], + "breedingItems": ["blaze_rod","fire_charge"], + "hostileToMobs": ["minecraft:skeleton","minecraft:wither_skeleton"], + "foodItems": ["mushroomItems","rootItems","bone", "coal", "charcoal","blaze_rod","fire_charge"], + "playerHostile": true, + "fleeFromPlayer": false, + "battleWithOwner": true, + "loudness": 100 + } + } +} \ No newline at end of file diff --git a/config/NoChatReports/NCR-Client.json b/config/NoChatReports/NCR-Client.json new file mode 100644 index 0000000..ab19344 --- /dev/null +++ b/config/NoChatReports/NCR-Client.json @@ -0,0 +1,20 @@ +{ + "defaultSigningMode": "PROMPT", + "enableMod": true, + "showNCRButton": true, + "showReloadButton": true, + "verifiedIconEnabled": true, + "showServerSafety": true, + "hideInsecureMessageIndicators": true, + "hideModifiedMessageIndicators": true, + "hideSystemMessageIndicators": true, + "hideWarningToast": true, + "hideSigningRequestMessage": false, + "alwaysHideReportButton": false, + "skipRealmsWarning": false, + "disableTelemetry": true, + "removeTelemetryButton": true, + "demandOnServer": false, + "verifiedIconOffsetX": 0, + "verifiedIconOffsetY": 0 +} \ No newline at end of file diff --git a/config/NoChatReports/NCR-Common.json b/config/NoChatReports/NCR-Common.json new file mode 100644 index 0000000..f79a76a --- /dev/null +++ b/config/NoChatReports/NCR-Common.json @@ -0,0 +1,7 @@ +{ + "demandOnClientMessage": "You do not have No Chat Reports, and this server is configured to require it on client!", + "demandOnClient": false, + "convertToGameMessage": true, + "addQueryData": true, + "enableDebugLog": false +} \ No newline at end of file diff --git a/config/NoChatReports/NCR-Encryption.json b/config/NoChatReports/NCR-Encryption.json new file mode 100644 index 0000000..295af76 --- /dev/null +++ b/config/NoChatReports/NCR-Encryption.json @@ -0,0 +1,28 @@ +{ + "skipWarning": false, + "enableEncryption": false, + "encryptPublic": true, + "showEncryptionButton": true, + "showEncryptionIndicators": true, + "encryptionKey": "blfrngArk3chG6wzncOZ5A\u003d\u003d", + "encryptionPassphrase": "", + "algorithmName": "AES/CFB8+Base64", + "encryptableCommands": [ + "msg:1", + "w:1", + "whisper:1", + "tell:1", + "r:0", + "dm:1", + "me:0", + "m:1", + "t:1", + "pm:1", + "emsg:1", + "epm:1", + "etell:1", + "ewhisper:1", + "message:1", + "reply:0" + ] +} \ No newline at end of file diff --git a/config/NoChatReports/NCR-ServerPreferences.json b/config/NoChatReports/NCR-ServerPreferences.json new file mode 100644 index 0000000..2762d0f --- /dev/null +++ b/config/NoChatReports/NCR-ServerPreferences.json @@ -0,0 +1,3 @@ +{ + "signingModes": {} +} \ No newline at end of file diff --git a/config/NoChatReports/README.md b/config/NoChatReports/README.md new file mode 100644 index 0000000..33141b5 --- /dev/null +++ b/config/NoChatReports/README.md @@ -0,0 +1,3 @@ +# No Chat Reports +You can find updated documentation of configuration files on the wiki: +https://github.com/Aizistral-Studios/No-Chat-Reports/wiki/Configuration-Files diff --git a/config/adventurez.json5 b/config/adventurez.json5 new file mode 100644 index 0000000..62245f4 --- /dev/null +++ b/config/adventurez.json5 @@ -0,0 +1,43 @@ +{ + "necromancer_spawn_weight": 1, + "nightmare_spawn_weight": 5, + // Chance for spawning when mining gold ore in nether; 1/Value + "piglin_beast_ore_spawn_chance": 30, + // Chance for spawning when killing too many piglins; 1/Value + "piglin_beast_attack_piglin_spawn_chance": 7, + "mini_blackstone_golem_spawn_weight": 5, + // Chance for spawning when thunder occurs; 1/Value + "summoner_thunder_spawn_chance": 4, + "blaze_guardian_spawn_weight": 1, + "fungus_spawn_weight": 8, + "orc_spawn_weight": 30, + "mammoth_spawn_weight": 1, + "ender_whale_spawn_weight": 5, + "iguana_spawn_weight": 10, + // Chance for spawning when geode generates; 1/Value + "amethyst_golem_spawn_chance": 5, + "desert_rhino_spawn_weight": 1, + // Chance for spawning when desert well generates; 1/Value + "desert_rhino_well_spawn_chance": 1, + "shaman_spawn_weight": 1, + "deer_spawn_weight": 6, + "enderwarthog_spawn_weight": 1, + "allow_blackstone_golem_summoning": true, + "allow_the_eye_summoning": true, + "allow_dragon_hatching": true, + "allow_guardian_spawner_spawn": true, + "allow_source_stone_tp": true, + "resummoned_ender_dragon_drops_egg": false, + "allow_ender_dragon_nether_portal": false, + "heavy_dragon_flight": true, + "allow_special_enchant_loot": true, + "allow_extra_tooltips": true, + "allow_all_items_on_holder": false, + "warthog_rare_chance": 0.009999999776482582, + "stoned_heart_duration": 72000, + "stoned_heart_amplifier": 0, + "gilded_netherite_armor_effect_duration": 1200, + "gilded_netherite_armor_dodge_chance": 0.20000000298023224, + "allow_other_dragon_hatching": false, + "allow_gilded_blackstone_shard_throw": false +} \ No newline at end of file diff --git a/config/almostunified/debug.json b/config/almostunified/debug.json new file mode 100644 index 0000000..b352412 --- /dev/null +++ b/config/almostunified/debug.json @@ -0,0 +1,8 @@ +{ + "dumpTagMap": false, + "dumpDuplicates": false, + "dumpUnification": false, + "dumpOverview": false, + "dumpRecipes": false, + "dumpUncoveredRecipes": false +} \ No newline at end of file diff --git a/config/almostunified/duplicates.json b/config/almostunified/duplicates.json new file mode 100644 index 0000000..026ecc8 --- /dev/null +++ b/config/almostunified/duplicates.json @@ -0,0 +1,35 @@ +{ + "ignoredRecipeTypes": [ + "cucumber:shaped_tag" + ], + "ignoredRecipes": [], + "defaultDuplicateRules": { + "ignoredFields": [ + "fabric:load_conditions", + "show_notification", + "category", + "group" + ], + "rules": { + "cookingtime": "HigherRule", + "energy": "HigherRule", + "experience": "HigherRule" + }, + "shouldSanitize": false + }, + "overrideDuplicateRules": { + "minecraft:crafting_shaped": { + "ignoredFields": [ + "fabric:load_conditions", + "pattern", + "show_notification", + "category", + "key", + "group" + ], + "rules": {}, + "shouldSanitize": false + } + }, + "strictMode": false +} \ No newline at end of file diff --git a/config/almostunified/startup.json b/config/almostunified/startup.json new file mode 100644 index 0000000..448a42c --- /dev/null +++ b/config/almostunified/startup.json @@ -0,0 +1,3 @@ +{ + "serverOnly": false +} \ No newline at end of file diff --git a/config/almostunified/unify.json b/config/almostunified/unify.json new file mode 100644 index 0000000..6e3f777 --- /dev/null +++ b/config/almostunified/unify.json @@ -0,0 +1,99 @@ +{ + "modPriorities": [ + "minecraft", + "kubejs", + "crafttweaker", + "create", + "techreborn", + "modern_industrialization", + "indrev" + ], + "stoneStrata": [ + "stone", + "nether", + "deepslate", + "granite", + "diorite", + "andesite" + ], + "tags": [ + "c:{material}_nuggets", + "c:{material}_dusts", + "c:{material}_gears", + "c:{material}_gems", + "c:{material}_ingots", + "c:{material}_raw_materials", + "c:{material}_ores", + "c:{material}_plates", + "c:{material}_rods", + "c:{material}_blocks", + "c:{material}_wires", + "c:{material}_storage_blocks", + "c:raw_{material}_ores", + "c:raw_{material}_blocks", + "c:raw_{material}_storage_blocks" + ], + "materials": [ + "aeternium", + "aluminum", + "amber", + "apatite", + "bitumen", + "brass", + "bronze", + "charcoal", + "chrome", + "cinnabar", + "coal", + "coal_coke", + "cobalt", + "constantan", + "copper", + "diamond", + "electrum", + "elementium", + "emerald", + "enderium", + "fluorite", + "gold", + "graphite", + "invar", + "iridium", + "iron", + "lapis", + "lead", + "lumium", + "mithril", + "netherite", + "nickel", + "obsidian", + "osmium", + "peridot", + "platinum", + "potassium_nitrate", + "ruby", + "sapphire", + "signalum", + "silver", + "steel", + "sulfur", + "tin", + "tungsten", + "uranium", + "zinc" + ], + "priorityOverrides": {}, + "customTags": {}, + "tagOwnerships": {}, + "itemTagInheritanceMode": "ALLOW", + "itemTagInheritance": {}, + "blockTagInheritanceMode": "ALLOW", + "blockTagInheritance": {}, + "ignoredTags": [], + "ignoredItems": [], + "ignoredRecipeTypes": [ + "cucumber:shaped_tag" + ], + "ignoredRecipes": [], + "itemsHidingJeiRei": true +} \ No newline at end of file diff --git a/config/archers/items_v2.json b/config/archers/items_v2.json new file mode 100644 index 0000000..b2aeb7d --- /dev/null +++ b/config/archers/items_v2.json @@ -0,0 +1,216 @@ +{ + "ranged_weapons": { + "archers:netherite_heavy_crossbow": { + "pull_time": 35, + "damage": 15.0, + "velocity": 0.0 + }, + "archers:netherite_shortbow": { + "pull_time": 16, + "damage": 9.0, + "velocity": 0.0 + }, + "archers:royal_longbow": { + "pull_time": 30, + "damage": 10.0, + "velocity": 0.0 + }, + "archers:netherite_rapid_crossbow": { + "pull_time": 20, + "damage": 9.5, + "velocity": 0.0 + }, + "archers:heavy_crossbow": { + "pull_time": 35, + "damage": 13.0, + "velocity": 0.0 + }, + "archers:netherite_longbow": { + "pull_time": 30, + "damage": 12.0, + "velocity": 0.0 + }, + "archers:composite_longbow": { + "pull_time": 30, + "damage": 8.0, + "velocity": 0.0 + }, + "archers:rapid_crossbow": { + "pull_time": 20, + "damage": 8.5, + "velocity": 0.0 + }, + "archers:mechanic_shortbow": { + "pull_time": 16, + "damage": 8.0, + "velocity": 0.0 + }, + "archers:crystal_shortbow": { + "pull_time": 16, + "damage": 10.0, + "velocity": 0.0 + }, + "archers:crystal_longbow": { + "pull_time": 30, + "damage": 13.5, + "velocity": 0.0 + }, + "archers:ruby_rapid_crossbow": { + "pull_time": 20, + "damage": 10.5, + "velocity": 0.0 + }, + "archers:ruby_heavy_crossbow": { + "pull_time": 35, + "damage": 17.0, + "velocity": 0.0 + } + }, + "melee_weapons": { + "golden_spear": { + "attack_damage": 3.0, + "attack_speed": -2.6, + "attributes": [] + }, + "diamond_spear": { + "attack_damage": 6.0, + "attack_speed": -2.6, + "attributes": [] + }, + "flint_spear": { + "attack_damage": 4.0, + "attack_speed": -2.6, + "attributes": [] + }, + "netherite_spear": { + "attack_damage": 7.0, + "attack_speed": -2.6, + "attributes": [] + }, + "iron_spear": { + "attack_damage": 5.0, + "attack_speed": -2.6, + "attributes": [] + }, + "aeternium_spear": { + "attack_damage": 8.0, + "attack_speed": -2.6, + "attributes": [] + }, + "ruby_spear": { + "attack_damage": 8.0, + "attack_speed": -2.6, + "attributes": [] + } + }, + "armor_sets": { + "archer_armor": { + "armor_toughness": 0.0, + "knockback_resistance": 0.0, + "head": { + "armor": 2, + "attributes": [ + { + "id": "ranged_weapon:damage", + "value": 0.05, + "operation": "MULTIPLY_BASE" + } + ] + }, + "chest": { + "armor": 3, + "attributes": [ + { + "id": "ranged_weapon:damage", + "value": 0.05, + "operation": "MULTIPLY_BASE" + } + ] + }, + "legs": { + "armor": 3, + "attributes": [ + { + "id": "ranged_weapon:damage", + "value": 0.05, + "operation": "MULTIPLY_BASE" + } + ] + }, + "feet": { + "armor": 2, + "attributes": [ + { + "id": "ranged_weapon:damage", + "value": 0.05, + "operation": "MULTIPLY_BASE" + } + ] + } + }, + "ranger_armor": { + "armor_toughness": 0.0, + "knockback_resistance": 0.0, + "head": { + "armor": 2, + "attributes": [ + { + "id": "ranged_weapon:damage", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "ranged_weapon:haste", + "value": 0.03, + "operation": "MULTIPLY_BASE" + } + ] + }, + "chest": { + "armor": 3, + "attributes": [ + { + "id": "ranged_weapon:damage", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "ranged_weapon:haste", + "value": 0.03, + "operation": "MULTIPLY_BASE" + } + ] + }, + "legs": { + "armor": 3, + "attributes": [ + { + "id": "ranged_weapon:damage", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "ranged_weapon:haste", + "value": 0.03, + "operation": "MULTIPLY_BASE" + } + ] + }, + "feet": { + "armor": 2, + "attributes": [ + { + "id": "ranged_weapon:damage", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "ranged_weapon:haste", + "value": 0.03, + "operation": "MULTIPLY_BASE" + } + ] + } + } + } +} \ No newline at end of file diff --git a/config/archers/tweaks.json b/config/archers/tweaks.json new file mode 100644 index 0000000..31da91c --- /dev/null +++ b/config/archers/tweaks.json @@ -0,0 +1,7 @@ +{ + "ignore_items_required_mods": false, + "power_enchantment_multiplier_per_level": 0.08, + "quick_charge_enchantment_multiplier_per_level": 0.1, + "serverside_crossbow_charging_tolerance": 0.95, + "enable_infinity_for_crossbows": true +} \ No newline at end of file diff --git a/config/archers/villages.json b/config/archers/villages.json new file mode 100644 index 0000000..5f97ac9 --- /dev/null +++ b/config/archers/villages.json @@ -0,0 +1,79 @@ +{ + "entries": [ + { + "pool": "minecraft:village/desert/houses", + "structures": [ + { + "id": "archers:village/desert/archery_range_large", + "weight": 5, + "limit": 1 + }, + { + "id": "archers:village/desert/archery_range_small", + "weight": 5, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/savanna/houses", + "structures": [ + { + "id": "archers:village/savanna/archery_range_large", + "weight": 5, + "limit": 1 + }, + { + "id": "archers:village/savanna/archery_range_small", + "weight": 5, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/plains/houses", + "structures": [ + { + "id": "archers:village/plains/archery_range_large", + "weight": 5, + "limit": 1 + }, + { + "id": "archers:village/plains/archery_range_small", + "weight": 5, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/taiga/houses", + "structures": [ + { + "id": "archers:village/taiga/archery_range_large", + "weight": 5, + "limit": 1 + }, + { + "id": "archers:village/taiga/archery_range_small", + "weight": 5, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/snowy/houses", + "structures": [ + { + "id": "archers:village/snowy/archery_range_large", + "weight": 5, + "limit": 1 + }, + { + "id": "archers:village/snowy/archery_range_small", + "weight": 5, + "limit": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/config/archon.json5 b/config/archon.json5 new file mode 100644 index 0000000..891abfd --- /dev/null +++ b/config/archon.json5 @@ -0,0 +1,38 @@ +{ + //Sets the position of the mana display; Client-sided + //The x-offset is subtracted from the x pos of the middle of the screen. (Ex: 0 would make it right in the middle) + //The y-offset is subtracted from the y pos at the bottom of the screen. (Ex: 0 would make it at the very bottom of the screen) + //X-Offset Default: 180 + //Y-Offset Default: 15 + "mana_xoffset": 180, + "mana_yoffset": 15, + //Determines whether mana should only display if you have a mana item in your hand. + //Client-Sided, Accepts "true" or "false" + //Default: false (always shows mana) + "displayManaWithItem": false, + //Chance for a soul to drop when killing players and creatures using a soul scythe (bosses always drop a soul) + //The number should follow these bounds: 0 <= x <= 1.0 + //Default: 0.05 (1/20) + "soulDropChance": 0.05, + //Weight/Chance for the Wizard Village House to spawn in villages + //Default: 10 + "wizard_village_weight": 10, + //Determines whether the a sound should be played when using a channeler + //Client-Sided, Accepts "true" or "false" + //Default: true + "play_channel_sound": true, + //The chance that Harvesters will drop the bonus related to the mob + //The number should follow these bounds: 0 <= x <= 1.0 + //Default: 0.05 (1/20) + "harvester_chance": 0.05, + //Whether screen shaking should be enabled or not. Used for players hit with the Rumble spell. + //Client-Sided, Accepts "true" or "false" + //Default: true + "enableScreenShake": true, + // The max amount of experience the standard experience pouch can hold. + // Default: 550 + "experiencePouchMax": 550, + // The max amount of experience the super experience pouch can hold. + // Default: 2920 + "superExperiencePouchMax": 2920 +} diff --git a/config/artifacts/client.json5 b/config/artifacts/client.json5 new file mode 100644 index 0000000..5f1d6db --- /dev/null +++ b/config/artifacts/client.json5 @@ -0,0 +1,17 @@ +{ + // Whether models for gloves should be shown in first person + "showFirstPersonGloves": true, + // Whether artifacts should have tooltips explaining their effects + "showTooltips": true, + // Whether mimics can use textures from Lootr or Quark + "useModdedMimicTextures": true, + // Display artifacts on cooldown next to the hotbar + "enableCooldownOverlay": false, + /* Location of the artifact cooldown gui element + Distance from the hotbar measured in pixels + Negative values place the element left of the hotbar + */ + "cooldownOverlayOffset": 10, + // Whether the cosmetics toggle tooltip should be shown even when cosmetics are toggled on + "alwaysShowCosmeticsToggleTooltip": true +} \ No newline at end of file diff --git a/config/artifacts/common.json5 b/config/artifacts/common.json5 new file mode 100644 index 0000000..c1db3de --- /dev/null +++ b/config/artifacts/common.json5 @@ -0,0 +1,36 @@ +{ + // The chance everlasting beef drops when a cow or mooshroom is killed by a player + "everlastingBeefChance": 0.002, + // The chance that a skeleton, zombie or piglin spawns with an artifact equipped + "entityEquipmentChance": 0.001, + // The chance that an artifact generates in suspicious sand or gravel + "archaeologyChance": 0.0625, + // Whether the Kitty Slippers and Bunny Hoppers change the player's hurt sounds + "modifyHurtSounds": true, + "campsite": { + /* How many times a campsite will attempt to generate per chunk + Set this to 0 to prevent campsites from generating + */ + "count": 4, + // The minimum height campsites can spawn at + "minY": -60, + // The maximum height campsites can spawn at + "maxY": 40, + // Probability that a campsite has a mimic instead of a chest + "mimicChance": 0.3, + // Whether to use wooden chests from other mods when generating campsites + "useModdedChests": true, + // Whether campsites can contain blocks that emit light + "allowLightSources": true + }, + /* Affects how common artifacts are in chests. + Values above 1 will make artifacts rarer, values between 0 and 1 will make artifacts more common. + Doubling this value will make artifacts approximately twice as hard to find, and vice versa. + To prevent artifacts from appearing as chest loot, set this to 10000. + + To disable or change the effects of specific items, the /gamerule command can be used. + A list of available game rules and their effects can be found on the wiki on GitHub: + https://github.com/ochotonida/artifacts/wiki + */ + "artifactRarity": 1.0 +} \ No newline at end of file diff --git a/config/attributefix.json b/config/attributefix.json new file mode 100644 index 0000000..2b455b1 --- /dev/null +++ b/config/attributefix.json @@ -0,0 +1,972 @@ +{ + "attributes": { + "obscure_api:penetration": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "minecraft:generic.follow_range": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "zenith_attributes:arrow_velocity": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10, + "value": 10 + } + }, + "additionalentityattributes:generic.lung_capacity": { + "enabled": false, + "min": { + "default": -40000, + "value": -40000 + }, + "max": { + "default": 40000, + "value": 40000 + } + }, + "spell_power:arcane": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "eldritch_end:corruption": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "obscure_api:dodge": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "spell_power:critical_chance": { + "enabled": false, + "min": { + "default": 100, + "value": 100 + }, + "max": { + "default": 1000, + "value": 1000 + } + }, + "archon:void": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "additionalentityattributes:player.bonus_rare_loot_rolls": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 128, + "value": 128 + } + }, + "additionalentityattributes:player.collection_range": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 64, + "value": 64 + } + }, + "mcdw:attack_range": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "additionalentityattributes:generic.water_speed": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "obscure_api:resilience": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "additionalentityattributes:player.dig_speed": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "obscure_api:regeneration": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 40, + "value": 40 + } + }, + "ranged_weapon:haste": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "porting_lib:step_height_addition": { + "enabled": false, + "min": { + "default": -512, + "value": -512 + }, + "max": { + "default": 512, + "value": 512 + } + }, + "minecraft:generic.luck": { + "enabled": true, + "min": { + "default": -1024, + "value": -1024 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "tiered:generic.range_attack_damage": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "creeperoverhaul:reach_distance": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "obscure_api:magic_resistance": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "archon:max_mana": { + "enabled": false, + "min": { + "default": 1, + "value": 1 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "zenith_attributes:healing_received": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000, + "value": 1000 + } + }, + "porting_lib:entity_gravity": { + "enabled": false, + "min": { + "default": -8, + "value": -8 + }, + "max": { + "default": 8, + "value": 8 + } + }, + "combatroll:distance": { + "enabled": false, + "min": { + "default": 1, + "value": 1 + }, + "max": { + "default": 24, + "value": 24 + } + }, + "spell_power:critical_damage": { + "enabled": false, + "min": { + "default": 100, + "value": 100 + }, + "max": { + "default": 1000, + "value": 1000 + } + }, + "zenith_attributes:cold_damage": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000, + "value": 1000 + } + }, + "additionalentityattributes:player.water_visibility": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "additionalentityattributes:player.lava_visibility": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "additionalentityattributes:player.dropped_experience": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "obscure_api:healing_power": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "spell_power:frost": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "additionalentityattributes:generic.magic_protection": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "stepheightentityattribute:stepheight": { + "enabled": false, + "min": { + "default": -1024, + "value": -1024 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "combatroll:recharge": { + "enabled": false, + "min": { + "default": 0.1, + "value": 0.1 + }, + "max": { + "default": 200, + "value": 200 + } + }, + "tiered:generic.crit_chance": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "minecraft:zombie.spawn_reinforcements": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "zenith_attributes:dodge_chance": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "minecraft:generic.attack_knockback": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 5, + "value": 1000000 + } + }, + "minecraft:generic.armor_toughness": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 20, + "value": 1000000 + } + }, + "eldritch_end:corruption_resistance": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "obscure_api:accuracy": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "reach-entity-attributes:attack_range": { + "enabled": false, + "min": { + "default": -1024, + "value": -1024 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "additionalentityattributes:player.bonus_loot_count_rolls": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 128, + "value": 128 + } + }, + "mcdw:reach": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "zenith_attributes:armor_shred": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2, + "value": 2 + } + }, + "puffish_attributes:player.stamina": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "reach-entity-attributes:reach": { + "enabled": false, + "min": { + "default": -1024, + "value": -1024 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "additionalentityattributes:generic.lava_speed": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "zenith_attributes:overheal": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10, + "value": 10 + } + }, + "projectile_damage:generic": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "zenith_attributes:current_hp_damage": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "zenith_attributes:draw_speed": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 4, + "value": 4 + } + }, + "obscure_api:parry": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "minecraft:generic.attack_speed": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "ranged_weapon:damage": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "minecraft:generic.attack_damage": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 1000000 + } + }, + "tiered:generic.durable": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "spell_power:haste": { + "enabled": false, + "min": { + "default": 100, + "value": 100 + }, + "max": { + "default": 1000, + "value": 1000 + } + }, + "spell_power:fire": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "minecraft:generic.armor": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 30, + "value": 1000000 + } + }, + "obscure_api:critical_hit": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "porting_lib:swim_speed": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "creeperoverhaul:swim_speed": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "spell_power:lightning": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "minecraft:generic.flying_speed": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "zenith_attributes:ghost_health": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000, + "value": 1000 + } + }, + "zenith_attributes:prot_shred": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "spell_power:soul": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "archon:earth": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "zenith_attributes:fire_damage": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000, + "value": 1000 + } + }, + "additionalentityattributes:generic.jump_height": { + "enabled": false, + "min": { + "default": -1024, + "value": -1024 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "zenith_attributes:prot_pierce": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 34, + "value": 34 + } + }, + "minecraft:generic.movement_speed": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "zenith_attributes:armor_pierce": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000, + "value": 1000 + } + }, + "obscure_api:critical_damage": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "zenith_attributes:crit_chance": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10, + "value": 10 + } + }, + "minecraft:generic.max_health": { + "enabled": true, + "min": { + "default": 1, + "value": 1 + }, + "max": { + "default": 1024, + "value": 1000000 + } + }, + "combatroll:count": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 20, + "value": 20 + } + }, + "zenith_attributes:mining_speed": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10, + "value": 10 + } + }, + "minecraft:horse.jump_strength": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2, + "value": 2 + } + }, + "zenith_attributes:arrow_damage": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10, + "value": 10 + } + }, + "spell_power:healing": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "minecraft:generic.knockback_resistance": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "additionalentityattributes:player.critical_bonus_damage": { + "enabled": false, + "min": { + "default": -1, + "value": -1 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "zenith_attributes:life_steal": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10, + "value": 10 + } + }, + "tiered:generic.dig_speed": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + } + } +} \ No newline at end of file diff --git a/config/azurelib.json b/config/azurelib.json new file mode 100644 index 0000000..be7c786 --- /dev/null +++ b/config/azurelib.json @@ -0,0 +1,4 @@ +{ + "disableOptifineWarning": false, + "useVanillaUseKey": true +} \ No newline at end of file diff --git a/config/badoptimizations.txt b/config/badoptimizations.txt new file mode 100644 index 0000000..4cfec05 --- /dev/null +++ b/config/badoptimizations.txt @@ -0,0 +1,76 @@ +# BadOptimizations configuration +# Here you can configure stuff, mostly enabling/disabling specific optimizations. + +# Whether we should cancel updating the lightmap if not needed. +enable_lightmap_caching: true +# How much the in-game time must change in ticks (1/20th of a second) +# for the lightmap to immediately update. +# Higher values will result in less frequent updates +# to block lighting, but better performance. +# Values below 2 will disable hte optimization. +lightmap_time_change_needed_for_update: 80 + +# Whether the sky's color should be cached unless you're on a biome border. +enable_sky_color_caching: true +# How much the in-game time must change in ticks for the sky color to +# be recalculated with our own calculation. Higher values will result in +# the sky updating less frequently, but slightly better performance. +# Values below 2 will all have the same effect. +skycolor_time_change_needed_for_update: 3 + +# Whether we should avoid calling debug renderers +# and their calculations if there are no debug entries to render +enable_debug_renderer_disable_if_not_needed: true + +# +# Micro optimizations +# + +# Whether we should avoid calling the particle manager +# and its calculations if there are no particles. +enable_particle_manager_optimization: true +# Whether we should avoid calling the toast manager +# if there are no toasts +enable_toast_optimizations: true +# Whether the result of getSkyAngle should be cached +# for the entire frame during rendering +enable_sky_angle_caching_in_worldrenderer: true +# Whether entity renderers should be stored directly in EntityType +# instead of a HashMap. +# Disable to fix compatibility with Twilight Forest +enable_entity_renderer_caching: true +# Whether block entity renderers should be stored in BlockEntityType +# instead of a HashMap. +enable_block_entity_renderer_caching: true +# Whether entity flags should be cached instead of +# calling DataTracker. +# Also removes the unnecessary thread lock in DataTracker +# however this is also done by Lithium (they don't conflict, however). +enable_entity_flag_caching: true +# Whether we should avoid calling FOV calculations +# if the FOV effect scale is zero. +enable_remove_redundant_fov_calculations: true +# Don't tick the tutorial if the game is not in demo mode. +enable_remove_tutorial_if_not_demo: true + +# +# Other +# + +# Whether BadOptimizations should be added onto +# the left text of the F3 menu. +show_f3_text: true + +# Some config options will be force-disabled if certain mods are present +# due to incompatibilities (e.g. entity rendering caching +# is disabled w/ Twilight Forest). +# However, if you still want to use the optimizations, you can override it +# by setting this to true. Beware of crashes. And Herobrine. +ignore_mod_incompatibilities: false + +# Whether to log the entire config into console when booting up. +# If you plan on reporting an issue, please keep this on. +log_config: true + +# Do not change this +config_version: 3 diff --git a/config/balm-common.out.toml b/config/balm-common.out.toml new file mode 100644 index 0000000..d462658 --- /dev/null +++ b/config/balm-common.out.toml @@ -0,0 +1,19 @@ + +# This is an example boolean property +exampleBoolean = true +exampleEnum = "Hello" +exampleEnumList = [ "Hello", "World" ] +exampleInt = 42 +exampleIntList = [ 12, 24 ] +exampleMultilineString = "Hello World" +exampleString = "Hello World" +exampleStringList = [ "Hello", "World" ] + + +# This is an example category +[exampleCategory] +exampleFloat = 42.84 + +# This is an example string inside a category +innerField = "I am inside" + diff --git a/config/balm-common.toml b/config/balm-common.toml new file mode 100644 index 0000000..d462658 --- /dev/null +++ b/config/balm-common.toml @@ -0,0 +1,19 @@ + +# This is an example boolean property +exampleBoolean = true +exampleEnum = "Hello" +exampleEnumList = [ "Hello", "World" ] +exampleInt = 42 +exampleIntList = [ 12, 24 ] +exampleMultilineString = "Hello World" +exampleString = "Hello World" +exampleStringList = [ "Hello", "World" ] + + +# This is an example category +[exampleCategory] +exampleFloat = 42.84 + +# This is an example string inside a category +innerField = "I am inside" + diff --git a/config/batsgalore-common.toml b/config/batsgalore-common.toml new file mode 100644 index 0000000..0a12f46 --- /dev/null +++ b/config/batsgalore-common.toml @@ -0,0 +1,5 @@ +[generation] + #Should the Christmas Forest generate? + christmasForestGeneration = true + #Should the Spooky Oak Forest generate? + spookyOakForestGeneration = true diff --git a/config/bclib/biomes.json b/config/bclib/biomes.json new file mode 100644 index 0000000..eef95df --- /dev/null +++ b/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/config/bclib/cache.json b/config/bclib/cache.json new file mode 100644 index 0000000..aba4064 --- /dev/null +++ b/config/bclib/cache.json @@ -0,0 +1,6 @@ +{ + "version": { + "last [default: never]": "never", + "cached [default: ]": "" + } +} \ No newline at end of file diff --git a/config/bclib/client.json b/config/bclib/client.json new file mode 100644 index 0000000..969c1a0 --- /dev/null +++ b/config/bclib/client.json @@ -0,0 +1,29 @@ +{ + "version": { + "didShowWelcome [default: false]": true, + "check [default: true]": false + }, + "ui": { + "showUpdateInfo [default: true]": true, + "useModrinthForUpdates [default: false]": false, + "forceBetterXPreset [default: true]": true, + "suppressExperimentalDialogOnLoad [default: false]": true, + "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]": false, + "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/config/bclib/generator.json b/config/bclib/generator.json new file mode 100644 index 0000000..cefdc9c --- /dev/null +++ b/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/config/bclib/main.json b/config/bclib/main.json new file mode 100644 index 0000000..cad0474 --- /dev/null +++ b/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/config/bclib/server.json b/config/bclib/server.json new file mode 100644 index 0000000..40f68e5 --- /dev/null +++ b/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/config/betterarcheology_structures/structure_settings.json5 b/config/betterarcheology_structures/structure_settings.json5 new file mode 100644 index 0000000..0ef944c --- /dev/null +++ b/config/betterarcheology_structures/structure_settings.json5 @@ -0,0 +1,23 @@ +/* +This config is used to tweak the spawning-behaviour certain structures from the BetterArcheology Mod +*/ +{ + // Normal buildings, ruins etc. without fossils. + "archeology_sites": { + "spacing": 32, + "separation": 16, + "salt": 990880770 + }, + // Underwater ruins similar to shipwrecks containing fossiliferous dirt. + "underwater_ruins": { + "spacing": 16, + "separation": 12, + "salt": 990880772 + }, + // Rather small fossil sites with fossiliferous dirt. + "fossil_sites": { + "spacing": 24, + "separation": 12, + "salt": 990880771 + } +} \ No newline at end of file diff --git a/config/betterarcheology_structures/structure_toggle.json5 b/config/betterarcheology_structures/structure_toggle.json5 new file mode 100644 index 0000000..e8b4617 --- /dev/null +++ b/config/betterarcheology_structures/structure_toggle.json5 @@ -0,0 +1,39 @@ +/* +This config is used to enable or disable certain structures from the BetterArcheology Mod +*/ +{ + // Normal buildings, ruins etc. without fossils. + "archeology_sites": { + "archeologist_camp_grassy": true, + "archeologist_camp_redsand": true, + "archeologist_camp_sand": true, + "buried_ruins_sand": true, + "catacombs": true, + "desert_obelisk": true, + "light_temple": true, + "mesa_ruins": true, + "mott": true, + "ruins_sand": true, + "stonehenge_grassy": true, + "temple_jungle": true, + "tumulus_grassy": true + }, + // Underwater ruins similar to shipwrecks containing fossiliferous dirt. + "underwater_ruins": { + "underwater_0": true, + "underwater_1": true, + "underwater_2": true, + "underwater_3": true + }, + // Rather small fossil sites with fossiliferous dirt. + "fossil_sites": { + "fossil_chicken": true, + "fossil_chicken_birch": true, + "fossil_creeper": true, + "fossil_jungle_0": true, + "fossil_jungle_1": true, + "fossil_sheep_0": true, + "fossil_wolf": true, + "villager_grave": true + } +} \ No newline at end of file diff --git a/config/betterarcheologyconfig.properties b/config/betterarcheologyconfig.properties new file mode 100644 index 0000000..4e48923 --- /dev/null +++ b/config/betterarcheologyconfig.properties @@ -0,0 +1,6 @@ +artifact.enchantments.enabled=true #Set to true or false to enable or disable effects | default: true +penetrating.strike.protection.ignorance=0.33 #Set to % of damage-reduction from Protection Enchantments that should be ignored, keep in range of 0-1.00 | default: 0.33 +soaring.winds.boost=0.5 #Set to movement speed multiplier, that should be applied when starting to fly | default: 0.5 +ocelot.fossil.flee.range=20 #Range in Block that the Fossil scares Creepers away | default: 20 +bomb.dispenser.shooting=true #Set to true or false to enable or disable Bombs from being shot out of Dispensers like Arrows | default: true + diff --git a/config/betterchunkloading.json b/config/betterchunkloading.json new file mode 100644 index 0000000..a5df865 --- /dev/null +++ b/config/betterchunkloading.json @@ -0,0 +1,34 @@ +{ + "enablePrediction": { + "desc:": "Enables predictive chunkloading, which predicts player movement and preloads an area in movement direction: default:true", + "enablePrediction": true + }, + "predictionarea": { + "desc:": "Size of the area marked for preloading: default:7 chunks, max: 32, min: 2", + "predictionarea": 7 + }, + "enableSmartChunkLoading": { + "desc:": "Enables smart chunkloading around the player, which dynamically loads the around the player and adapts to player movement speed, to improve server performance on fast movement : default:true", + "enableSmartChunkLoading": true + }, + "smartChunkLoadModifier": { + "desc:": "Set a modifier to smart chunkloading, increasing the value increases the view distance used while moving fast, range: [0.1 -> 10.0], default: 1.0", + "smartChunkLoadModifier": 1.0 + }, + "preventWalkUnloaded": { + "desc:": "Prevents players from moving into unloaded areas on serverside, which stalls the server and forceloads the chunk: default:true", + "preventWalkUnloaded": true + }, + "enableSmartPostProcessing": { + "desc:": "Enables smart post processing, which slightly improves the general chunk loading speed by waiting with post processing(e.g. fluid updates) until neighbouring chunks are loaded: default:true", + "enableSmartPostProcessing": true + }, + "enableFasterChunkTasks": { + "desc:": "Enables faster worldgen tasks: default:true", + "enableFasterChunkTasks": true + }, + "debugLogging": { + "desc:": "Enables debug logging to show chunk loading changes: default:false", + "debugLogging": false + } +} \ No newline at end of file diff --git a/config/bettercombat/client.json5 b/config/bettercombat/client.json5 new file mode 100644 index 0000000..4ffbe6d --- /dev/null +++ b/config/bettercombat/client.json5 @@ -0,0 +1,16 @@ +{ + "isHoldToAttackEnabled": true, + "isMiningWithWeaponsEnabled": true, + "isSwingThruGrassEnabled": true, + "isAttackInsteadOfMineWhenEnemiesCloseEnabled": true, + "isHighlightCrosshairEnabled": true, + "hudHighlightColor": 16711680, + "isShowingArmsInFirstPerson": false, + "isShowingOtherHandFirstPerson": true, + "isSweepingParticleEnabled": true, + "isTooltipAttackRangeEnabled": true, + "weaponSwingSoundVolume": 100, + "isDebugOBBEnabled": true, + "swingThruGrassBlacklist": "farmersdelight", + "mineWithWeaponBlacklist": "" +} \ No newline at end of file diff --git a/config/bettercombat/fallback_compatibility.json b/config/bettercombat/fallback_compatibility.json new file mode 100644 index 0000000..75440c6 --- /dev/null +++ b/config/bettercombat/fallback_compatibility.json @@ -0,0 +1,116 @@ +{ + "schema_version": 1, + "blacklist_item_id_regex": "pickaxe", + "fallback_compatibility": [ + { + "item_id_regex": "claymore|great_sword|greatsword", + "weapon_attributes": "bettercombat:claymore" + }, + { + "item_id_regex": "great_hammer|greathammer|war_hammer|warhammer|maul", + "weapon_attributes": "bettercombat:hammer" + }, + { + "item_id_regex": "double_axe|doubleaxe|war_axe|waraxe|great_axe|greataxe", + "weapon_attributes": "bettercombat:double_axe" + }, + { + "item_id_regex": "scythe", + "weapon_attributes": "bettercombat:scythe" + }, + { + "item_id_regex": "halberd", + "weapon_attributes": "bettercombat:halberd" + }, + { + "item_id_regex": "glaive", + "weapon_attributes": "bettercombat:glaive" + }, + { + "item_id_regex": "spear", + "weapon_attributes": "bettercombat:spear" + }, + { + "item_id_regex": "lance", + "weapon_attributes": "bettercombat:lance" + }, + { + "item_id_regex": "anchor", + "weapon_attributes": "bettercombat:anchor" + }, + { + "item_id_regex": "battlestaff|battle_staff", + "weapon_attributes": "bettercombat:battlestaff" + }, + { + "item_id_regex": "claw", + "weapon_attributes": "bettercombat:claw" + }, + { + "item_id_regex": "fist|gauntlet", + "weapon_attributes": "bettercombat:fist" + }, + { + "item_id_regex": "trident|javelin|impaled", + "weapon_attributes": "bettercombat:trident" + }, + { + "item_id_regex": "katana", + "weapon_attributes": "bettercombat:katana" + }, + { + "item_id_regex": "rapier", + "weapon_attributes": "bettercombat:rapier" + }, + { + "item_id_regex": "sickle", + "weapon_attributes": "bettercombat:sickle" + }, + { + "item_id_regex": "soul_knife", + "weapon_attributes": "bettercombat:soul_knife" + }, + { + "item_id_regex": "dagger|knife", + "weapon_attributes": "bettercombat:dagger" + }, + { + "item_id_regex": "staff|wand|sceptre|stave|rod", + "weapon_attributes": "bettercombat:wand" + }, + { + "item_id_regex": "mace|hammer|flail", + "weapon_attributes": "bettercombat:mace" + }, + { + "item_id_regex": "axe", + "weapon_attributes": "bettercombat:axe" + }, + { + "item_id_regex": "coral_blade", + "weapon_attributes": "bettercombat:coral_blade" + }, + { + "item_id_regex": "twin_blade|twinblade", + "weapon_attributes": "bettercombat:twin_blade" + }, + { + "item_id_regex": "cutlass|scimitar|machete", + "weapon_attributes": "bettercombat:cutlass" + }, + { + "item_id_regex": "sword|blade", + "weapon_attributes": "bettercombat:sword" + } + ], + "ranged_weapons": [ + { + "item_id_regex": "two_handed_crossbow", + "weapon_attributes": "bettercombat:crossbow_two_handed_heavy" + }, + { + "item_id_regex": "two_handed_bow", + "weapon_attributes": "bettercombat:bow_two_handed_heavy" + } + ] +} \ No newline at end of file diff --git a/config/bettercombat/server.json5 b/config/bettercombat/server.json5 new file mode 100644 index 0000000..36435ce --- /dev/null +++ b/config/bettercombat/server.json5 @@ -0,0 +1,93 @@ +{ + /* Upswing (aka windup) is the first phase of the attack (between clicking and performing the damage). + Typical duration of upswing is `weapon cooldown * 0.5`. (Weapon specific upswing values can be defined in weapon attributes) + This config allows you to change upswing duration. + Example values: + - `0.5` (default, fast paced attack initiation) upswing typically lasts 25% of the attack cooldown + - `1.0` (classic setting, realistic attack initiation) upswing typically lasts 50% of the attack cooldown + */ + "upswing_multiplier": 0.5, + // Bypass damage receive throttling of LivingEntity from player attacks. + "allow_fast_attacks": true, + // Allows client-side target search and server-side attack request execution against currently mounted entity of the player + "allow_attacking_mount": false, + // The minimum number of ticks between two attacks + "attack_interval_cap": 2, + /* Blacklist for entities that are acting as vehicle but should not be treated as protected mounts. + Classical example is an alexsmobs:crocodile attempting a death spin. + (Note all hostile mobs hittable by default, this config is to fix faulty mobs) + */ + "hostile_player_vehicles": [ + "alexsmobs:crocodile" + ], + // Allows vanilla sweeping mechanic to work and Sweeping Edge enchantment + "allow_vanilla_sweeping": false, + // Allows new sweeping mechanic (by Better Combat) to work, including Sweeping Edge enchantment + "allow_reworked_sweeping": true, + /* The more additional targets a weapon swing hits, the weaker it will get. + Entities struck (+1) in a swing more than this, won't get weakened any further. + */ + "reworked_sweeping_extra_target_count": 4, + /* Determines how weak the attack becomes when striking `reworked_sweeping_extra_target_count + 1` targets. + Example values: + - `0.5` -50% damage + */ + "reworked_sweeping_maximum_damage_penalty": 0.5, + /* The maximum level Sweeping Edge enchantment applied to the attackers weapon will restore this amount of penalty. + Example values: + - `0.5` restores 50% damage penalty when 3 levels are applied, so 16.66% when 1 level is applied + */ + "reworked_sweeping_enchant_restores": 0.5, + "reworked_sweeping_plays_sound": true, + "reworked_sweeping_emits_particles": true, + "reworked_sweeping_sound_and_particles_only_for_swords": true, + // Allows client-side target search to ignore obstacles. WARNING! Setting this to `false` significantly increases the load on clients. + "allow_attacking_thru_walls": false, + // Applies movement speed multiplier while attacking. (Min: 0, Max: 1). Use `0` for a full stop while attacking. Use `1` for no movement speed penalty + "movement_speed_while_attacking": 0.5, + // Determines if applying the movement speed multiplier while attacking is done smoothly or instantly + "movement_speed_applied_smoothly": true, + // Determines whether or not to apply movement speed reduction while attacking mounted + "movement_speed_effected_while_mounting": false, + // Attacks faster than a vanilla sword will do smaller knockback, proportionally. + "knockback_reduced_for_fast_attacks": true, + // Combo is reset after idling `combo_reset_rate * weapon_cooldown` + "combo_reset_rate": 3.0, + // Multiplier for `attack_range`, during target lookup on both sides. Large sized entities may be colliding with weapon hitbox, but center of entities can have bigger distance than `attack_range` + "target_search_range_multiplier": 2.0, + // Total multiplier, (examples: +30% = 1.3, -30% = 0.7) + "dual_wielding_attack_speed_multiplier": 1.2000000476837158, + // Total multiplier, (examples: +30% = 1.3, -30% = 0.7) + "dual_wielding_main_hand_damage_multiplier": 1.0, + // Total multiplier, (examples: +30% = 1.3, -30% = 0.7) + "dual_wielding_off_hand_damage_multiplier": 1.0, + /* Relations determine when players' undirected weapon swings (cleaves) will hurt another entity (target). + - `FRIENDLY` - The target can never be damaged by the player. + - `NEUTRAL` - The target can be damaged only if the player is directly looking at it. + - `HOSTILE` - The target can be damaged if located within the weapon swing area. + (NOTE: Vanilla sweeping can still hit targets, if not disabled via `allow_sweeping`) + + The various relation related configs are being checked in the following order: + - `player_relations` + - `player_relation_to_passives` + - `player_relation_to_hostiles` + - `player_relation_to_other` + (The first relation to be found for the target will be applied.) + */ + "player_relations": { + "minecraft:player": "NEUTRAL", + "minecraft:villager": "NEUTRAL", + "minecraft:iron_golem": "NEUTRAL", + "guardvillagers:guard": "NEUTRAL" + }, + // Relation to unspecified entities those are instance of PassiveEntity(Yarn) + "player_relation_to_passives": "HOSTILE", + // Relation to unspecified entities those are instance of HostileEntity(Yarn) + "player_relation_to_hostiles": "HOSTILE", + // Fallback relation + "player_relation_to_other": "HOSTILE", + // Try to guess and apply a preset for items without weapon attributes data file + "fallback_compatibility_enabled": true, + // Allow printing the content of weapon attributes registry + "weapon_registry_logging": false +} \ No newline at end of file diff --git a/config/betterdeserttemples-fabric-1_20.toml b/config/betterdeserttemples-fabric-1_20.toml new file mode 100644 index 0000000..3efd9a8 --- /dev/null +++ b/config/betterdeserttemples-fabric-1_20.toml @@ -0,0 +1,3 @@ +[general] +disableVanillaPyramids = true +applyMiningFatigue = true diff --git a/config/betterdeserttemples/README.txt b/config/betterdeserttemples/README.txt new file mode 100644 index 0000000..7d9fed0 --- /dev/null +++ b/config/betterdeserttemples/README.txt @@ -0,0 +1,7 @@ +This directory is for a few additional options for YUNG's Better Desert Temples. +Options provided may vary by version. +This directory contains subdirectories for supported versions. The first time you run Better Desert Temples, a version subdirectory will be created if that version supports advanced options. +For example, the first time you use Better Desert Temples for 1.18.2 on Forge, the 'forge-1_18_2' subdirectory will be created in this folder. +If no subdirectory for your version is created, then that version probably does not support the additional options. +NOTE -- MOST OPTIONS CAN BE FOUND IN A CONFIG FILE OUTSIDE THIS FOLDER! +For example, on Forge 1.18.2 the file is 'betterdeserttemples-forge-1_18_2.toml'. \ No newline at end of file diff --git a/config/betterdeserttemples/fabric-1_20/README.txt b/config/betterdeserttemples/fabric-1_20/README.txt new file mode 100644 index 0000000..09b809b --- /dev/null +++ b/config/betterdeserttemples/fabric-1_20/README.txt @@ -0,0 +1,30 @@ +###################################### +# armorstands.json # +###################################### + This file contains ItemRandomizers describing the probability distribution of armor on armor stands. +Armor stands spawn in armory rooms and wardrobe rooms. +For information on ItemRandomizers, see the bottom of this README. +###################################### +# itemframes.json # +###################################### + This file contains ItemRandomizers describing the probability distribution of items in item frames. +Item frames only spawn in food storage rooms and armoury rooms. +For information on ItemRandomizers, see the bottom of this README. +###################################### +# ItemRandomizers # +###################################### +Describes a set of items and the probability of each item being chosen. + - entries: An object where each entry's key is a item, and each value is that item's probability of being chosen. + The total sum of all probabilities SHOULD NOT exceed 1.0! + - defaultItem: The item used for any leftover probability ranges. + For example, if the total sum of all the probabilities of the entries is 0.6, then + there is a 0.4 chance of the defaultItem being selected. +Here's an example ItemRandomizer: +"entries": { + "minecraft:stone_axe": 0.25, + "minecraft:shield": 0.2, + "minecraft:air": 0.1 +}, +"defaultItem": "minecraft:iron_axe" +For each item, this randomizer has a 25% chance of returning a stone axe, 20% chance of choosing a shield, +10% chance of choosing air (nothing), and a 100 - (25 + 20 + 10) = 45% chance of choosing an iron axe (since it's the default item). diff --git a/config/betterdeserttemples/fabric-1_20/armorstands.json b/config/betterdeserttemples/fabric-1_20/armorstands.json new file mode 100644 index 0000000..1771730 --- /dev/null +++ b/config/betterdeserttemples/fabric-1_20/armorstands.json @@ -0,0 +1,58 @@ +{ + "armoryHelmets": { + "entries": { + "golden_helmet": 0.2, + "chainmail_helmet": 0.3 + }, + "defaultItem": "air" + }, + "wardrobeHelmets": { + "entries": { + "chainmail_helmet": 0.2, + "leather_helmet": 0.4 + }, + "defaultItem": "air" + }, + "armoryChestplates": { + "entries": { + "golden_chestplate": 0.2, + "chainmail_chestplate": 0.3 + }, + "defaultItem": "air" + }, + "wardrobeChestplates": { + "entries": { + "chainmail_chestplate": 0.2, + "leather_chestplate": 0.4 + }, + "defaultItem": "air" + }, + "armoryLeggings": { + "entries": { + "chainmail_leggings": 0.3, + "golden_leggings": 0.2 + }, + "defaultItem": "air" + }, + "wardrobeLeggings": { + "entries": { + "leather_leggings": 0.4, + "chainmail_leggings": 0.2 + }, + "defaultItem": "air" + }, + "armoryBoots": { + "entries": { + "chainmail_boots": 0.3, + "golden_boots": 0.2 + }, + "defaultItem": "air" + }, + "wardrobeBoots": { + "entries": { + "leather_boots": 0.4, + "chainmail_boots": 0.2 + }, + "defaultItem": "air" + } +} \ No newline at end of file diff --git a/config/betterdeserttemples/fabric-1_20/itemframes.json b/config/betterdeserttemples/fabric-1_20/itemframes.json new file mode 100644 index 0000000..f9bade4 --- /dev/null +++ b/config/betterdeserttemples/fabric-1_20/itemframes.json @@ -0,0 +1,31 @@ +{ + "armouryItems": { + "entries": { + "stone_axe": 0.05, + "shield": 0.1, + "bow": 0.1, + "golden_axe": 0.1, + "golden_sword": 0.1, + "name_tag": 0.05, + "stone_sword": 0.05, + "arrow": 0.05 + }, + "defaultItem": "air" + }, + "storageItems": { + "entries": { + "cookie": 0.1, + "melon_seeds": 0.025, + "cake": 0.1, + "rabbit_foot": 0.01, + "pumpkin_seeds": 0.025, + "honey_bottle": 0.1, + "bread": 0.2, + "potato": 0.2, + "slime_ball": 0.05, + "wheat_seeds": 0.025, + "beetroot_seeds": 0.025 + }, + "defaultItem": "air" + } +} \ No newline at end of file diff --git a/config/betterdungeons-fabric-1_20.toml b/config/betterdungeons-fabric-1_20.toml new file mode 100644 index 0000000..f47999a --- /dev/null +++ b/config/betterdungeons-fabric-1_20.toml @@ -0,0 +1,16 @@ +[betterDungeons.general] +enableHeads = true +removeVanillaDungeons = true +enableNetherBlocks = true +[betterDungeons.zombieDungeon] +zombieDungeonMaxSurfaceStaircaseLength = 20 +[betterDungeons.smallDungeon] +bannerMaxCount = 2 +chestMinCount = 1 +chestMaxCount = 2 +enableOreProps = true +[betterDungeons.smallNetherDungeon] +enabled = false +witherSkeletonsDropWitherSkulls = true +blazesDropBlazeRods = true +bannerMaxCount = 2 diff --git a/config/betterend/blocks.json b/config/betterend/blocks.json new file mode 100644 index 0000000..a51c9e3 --- /dev/null +++ b/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/config/betterend/client.json b/config/betterend/client.json new file mode 100644 index 0000000..5c936ef --- /dev/null +++ b/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/config/betterend/enchantments.json b/config/betterend/enchantments.json new file mode 100644 index 0000000..f3c8f71 --- /dev/null +++ b/config/betterend/enchantments.json @@ -0,0 +1,3 @@ +{ + "end_veil [default: true]": true +} \ No newline at end of file diff --git a/config/betterend/entities.json b/config/betterend/entities.json new file mode 100644 index 0000000..caf1f50 --- /dev/null +++ b/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/config/betterend/generator.json b/config/betterend/generator.json new file mode 100644 index 0000000..f3d1664 --- /dev/null +++ b/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/config/betterend/items.json b/config/betterend/items.json new file mode 100644 index 0000000..094bb9c --- /dev/null +++ b/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/config/betterend/portals.json b/config/betterend/portals.json new file mode 100644 index 0000000..dd5a230 --- /dev/null +++ b/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/config/betterendisland-fabric-1_20.toml b/config/betterendisland-fabric-1_20.toml new file mode 100644 index 0000000..03e3d13 --- /dev/null +++ b/config/betterendisland-fabric-1_20.toml @@ -0,0 +1,3 @@ +[general] +resummonedDragonDropsEgg = false +useVanillaSpawnPlatform = false diff --git a/config/betterfortresses-fabric-1_20.toml b/config/betterfortresses-fabric-1_20.toml new file mode 100644 index 0000000..de34590 --- /dev/null +++ b/config/betterfortresses-fabric-1_20.toml @@ -0,0 +1,2 @@ +[general] +disableVanillaFortresses = true diff --git a/config/betterfortresses/README.txt b/config/betterfortresses/README.txt new file mode 100644 index 0000000..041affb --- /dev/null +++ b/config/betterfortresses/README.txt @@ -0,0 +1,8 @@ +This directory is for a few additional options for YUNG's Better Nether Fortresses. +Options provided may vary by version. +This directory contains subdirectories for supported versions. The first time you run Better Nether Fortresses, a version subdirectory will be created if that version supports advanced options. +For example, the first time you use Better Nether Fortresses for MC 1.19.2 on Fabric, the 'fabric-1_19' subdirectory will be created in this folder. +If no subdirectory for your version is created, then that version probably does not support the additional options. +NOTE -- Most of this mod's config settings can be found in a config file outside this folder! +For example, on Fabric 1.19.2 the file is 'betterfortresses-fabric-1_19.toml'. +Also note that many of the structure's settings such as spawn rate & spawn conditions can only be modified via data pack. \ No newline at end of file diff --git a/config/betterfortresses/fabric-1_20/README.txt b/config/betterfortresses/fabric-1_20/README.txt new file mode 100644 index 0000000..ffdedac --- /dev/null +++ b/config/betterfortresses/fabric-1_20/README.txt @@ -0,0 +1,26 @@ +###################################### +# itemframes.json # +###################################### + This file contains ItemRandomizers describing the probability distribution of items in item frames. +Item frames only spawn in certain rooms and hallway pieces. +For information on ItemRandomizers, see the bottom of this README. +###################################### +# ItemRandomizers # +###################################### +Describes a set of items and the probability of each item being chosen. + - entries: An object where each entry's key is an item, and each value is that item's probability of being chosen. + The total sum of all probabilities SHOULD NOT exceed 1.0! + - defaultItem: The item used for any leftover probability ranges. + For example, if the total sum of all the probabilities of the entries is 0.6, then + there is a 0.4 chance of the defaultItem being selected. +Here's an example ItemRandomizer: +{ + "entries": { + "minecraft:cobblestone": 0.25, + "minecraft:air": 0.2, + "minecraft:stone_sword": 0.1 + }, + "defaultItem": "minecraft:iron_axe" +} +This randomizer has a 25% chance of returning cobblestone, 20% chance of choosing air, +10% chance of choosing a stone sword, and a 100 - (25 + 20 + 10) = 45% chance of choosing iron axe (since it's the default item). diff --git a/config/betterfortresses/fabric-1_20/itemframes.json b/config/betterfortresses/fabric-1_20/itemframes.json new file mode 100644 index 0000000..ecddf1a --- /dev/null +++ b/config/betterfortresses/fabric-1_20/itemframes.json @@ -0,0 +1,48 @@ +{ + "weaponItems": { + "entries": { + "stone_axe": 0.025, + "iron_axe": 0.025, + "shield": 0.025, + "golden_axe": 0.05, + "golden_sword": 0.05, + "stone_sword": 0.025, + "netherite_sword": 0.005, + "iron_sword": 0.025 + }, + "defaultItem": "air" + }, + "lootItems": { + "entries": { + "nether_wart": 0.1, + "gold_ingot": 0.1, + "gold_nugget": 0.2 + }, + "defaultItem": "air" + }, + "studyItems": { + "entries": { + "writable_book": 0.1, + "paper": 0.1, + "enchanted_book": 0.1, + "book": 0.4 + }, + "defaultItem": "air" + }, + "messHallItems": { + "entries": { + "porkchop": 0.3, + "cooked_porkchop": 0.3, + "gold_ingot": 0.2 + }, + "defaultItem": "air" + }, + "alchemyItems": { + "entries": { + "magma_cream": 0.3, + "quartz": 0.3, + "fire_charge": 0.2 + }, + "defaultItem": "air" + } +} \ No newline at end of file diff --git a/config/betterfpsdist.json b/config/betterfpsdist.json new file mode 100644 index 0000000..3043467 --- /dev/null +++ b/config/betterfpsdist.json @@ -0,0 +1,6 @@ +{ + "stretch": { + "desc:": "The amount by which the chunk render distance sphere is stretched in Y direction. default:2.0, min 0.5, max 10", + "stretch": 2.0 + } +} \ No newline at end of file diff --git a/config/betterjungletemples-fabric-1_20.toml b/config/betterjungletemples-fabric-1_20.toml new file mode 100644 index 0000000..64f7043 --- /dev/null +++ b/config/betterjungletemples-fabric-1_20.toml @@ -0,0 +1,2 @@ +[betterJungleTemples.general] +disableVanillaJungleTemples = true diff --git a/config/bettermineshafts-fabric-1_20.toml b/config/bettermineshafts-fabric-1_20.toml new file mode 100644 index 0000000..ab9e55e --- /dev/null +++ b/config/bettermineshafts-fabric-1_20.toml @@ -0,0 +1,28 @@ +minY = -55 +maxY = 30 +disableVanillaMineshafts = true + +[spawnRates] +lanternSpawnRate = 0.0067 +torchSpawnRate = 0.02 +workstationSpawnRate = 0.025 +workstationDungeonSpawnRate = 0.25 +smallShaftSpawnRate = 0.07 +cobwebSpawnRate = 0.15 +smallShaftChestMinecartSpawnRate = 0.00125 +mainShaftChestMinecartSpawnRate = 0.01 +smallShaftTntMinecartSpawnRate = 0.0024999999441206455 +mainShaftTntMinecartSpawnRate = 0.0024999999441206455 +zombieVillagerRoomSpawnChance = 2 +smallShaftPieceChainLength = 9 + +[ores] +enabled = true +cobble = 50 +coal = 20 +iron = 9 +redstone = 7 +gold = 7 +lapis = 3 +emerald = 3 +diamond = 1 diff --git a/config/betternether/biomes.json b/config/betternether/biomes.json new file mode 100644 index 0000000..ef65146 --- /dev/null +++ b/config/betternether/biomes.json @@ -0,0 +1,139 @@ +{ + "minecraft": { + "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 + } + } + } + } + }, + "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 + } + } + } + } + }, + "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 + } + } + } + } + }, + "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 + } + } + } + } + } + } +} \ No newline at end of file diff --git a/config/betternether/blocks.json b/config/betternether/blocks.json new file mode 100644 index 0000000..3acb190 --- /dev/null +++ b/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/config/betternether/generator.json b/config/betternether/generator.json new file mode 100644 index 0000000..82c3455 --- /dev/null +++ b/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/config/betternether/items.json b/config/betternether/items.json new file mode 100644 index 0000000..a915329 --- /dev/null +++ b/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, + "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, + "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, + "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_pickaxe [default: true]": true, + "cincinnasite_hoe [default: true]": true, + "cincinnasite_helmet [default: true]": true, + "cincinnasite_axe [default: true]": true, + "cincinnasite_chestplate [default: true]": true, + "cincinnasite_boots [default: true]": true, + "cincinnasite_shears [default: true]": true, + "cincinnasite_leggings [default: true]": true, + "cincinnasite_shovel [default: true]": true, + "cincinnasite_sword [default: true]": true, + "nether_ruby_pickaxe [default: true]": true, + "nether_ruby_hoe [default: true]": true, + "nether_ruby_helmet [default: true]": true, + "nether_ruby_axe [default: true]": true, + "nether_ruby_chestplate [default: true]": true, + "nether_ruby_boots [default: true]": true, + "nether_ruby_leggings [default: true]": true, + "nether_ruby_shovel [default: true]": true, + "nether_ruby_sword [default: true]": true, + "cincinnasite_pickaxe_diamond [default: true]": true, + "cincinnasite_hoe_diamond [default: true]": true, + "cincinnasite_axe_diamond [default: true]": true, + "cincinnasite_shovel_diamond [default: true]": true, + "cincinnasite_sword_diamond [default: true]": true, + "flaming_ruby_pickaxe [default: true]": true, + "flaming_ruby_hoe [default: true]": true, + "flaming_ruby_helmet [default: true]": true, + "flaming_ruby_axe [default: true]": true, + "flaming_ruby_chestplate [default: true]": true, + "flaming_ruby_boots [default: true]": true, + "flaming_ruby_leggings [default: true]": true, + "flaming_ruby_shovel [default: true]": true, + "flaming_ruby_sword [default: true]": true + } +} \ No newline at end of file diff --git a/config/betternether/main.json b/config/betternether/main.json new file mode 100644 index 0000000..31cd6a6 --- /dev/null +++ b/config/betternether/main.json @@ -0,0 +1,15 @@ +{ + "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 + }, + "improvement": { + "smaller_armor_offset [default: true]": true, + "lavafall_particles [default: true]": true, + "fog_density[vanilla: 1.0] [default: 0.75]": 0.75 + } +} \ No newline at end of file diff --git a/config/betternether/mobs.json b/config/betternether/mobs.json new file mode 100644 index 0000000..9f67797 --- /dev/null +++ b/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/config/betteroceanmonuments-fabric-1_20.toml b/config/betteroceanmonuments-fabric-1_20.toml new file mode 100644 index 0000000..ca08d83 --- /dev/null +++ b/config/betteroceanmonuments-fabric-1_20.toml @@ -0,0 +1,2 @@ +[general] +disableVanillaMonuments = true diff --git a/config/betterstrongholds-fabric-1_20.toml b/config/betterstrongholds-fabric-1_20.toml new file mode 100644 index 0000000..44379d7 --- /dev/null +++ b/config/betterstrongholds-fabric-1_20.toml @@ -0,0 +1,5 @@ +[betterStrongholds.general] +cobwebReplacementChanceNormal = 0.1 +cobwebReplacementChanceSpawner = 0.3 +torchSpawnRate = 0.1 +lanternSpawnRate = 0.2 diff --git a/config/betterstrongholds/README.txt b/config/betterstrongholds/README.txt new file mode 100644 index 0000000..a66f7c5 --- /dev/null +++ b/config/betterstrongholds/README.txt @@ -0,0 +1,7 @@ +This directory is for a few additional options for YUNG's Better Strongholds. +Options provided may vary by version. +This directory contains subdirectories for supported versions. The first time you run Better Strongholds, a version subdirectory will be created if that version supports advanced options. +For example, the first time you use Better Strongholds for MC 1.16 on Forge, the 'forge-1_16' subdirectory will be created in this folder. +If no subdirectory for your version is created, then that version probably does not support the additional options. +NOTE -- MOST OPTIONS CAN BE FOUND IN A CONFIG FILE OUTSIDE THIS FOLDER! +For example, on Forge 1.16 the file is 'betterstrongholds-forge-1_16.toml'. \ No newline at end of file diff --git a/config/betterstrongholds/fabric-1_20/README.txt b/config/betterstrongholds/fabric-1_20/README.txt new file mode 100644 index 0000000..96b8874 --- /dev/null +++ b/config/betterstrongholds/fabric-1_20/README.txt @@ -0,0 +1,49 @@ +###################################### +# ores.json # +###################################### + This file contains a BlockSetSelector (see below) describing the probability of a given ore being chosen. +These probabilities are used in treasure rooms in the stronghold, in which +piles of ore have a chance of spawning. +For information on BlockSetSelectors, see the bottom of this README. +###################################### +# rareblocks.json # +###################################### + This file contains a BlockSetSelector describing the probability of a given block being chosen. +These probabilities are used in grand libraries, in which +two rare blocks will spawn. +For information on BlockSetSelectors, see the bottom of this README. +###################################### +# armorstands.json # +###################################### + This file contains ItemSetSelectors describing the probability distribution of armor on armor stands. +Common armor stands spawn in Armoury rooms, while Rare ones are only available in the rare Commander rooms. +For information on ItemSetSelectors, see the bottom of this README. +###################################### +# itemframes.json # +###################################### + This file contains ItemSetSelectors describing the probability distribution of items in item frames. +Item frames only spawn in storage rooms and armoury rooms. +For information on ItemSetSelectors, see the bottom of this README. +###################################### +# BlockSetSelectors # +###################################### +Describes a set of blockstates and the probability of each blockstate being chosen. + - entries: An object where each entry's key is a blockstate, and each value is that blockstate's probability of being chosen. + The total sum of all probabilities SHOULD NOT exceed 1.0! + - defaultBlock: The blockstate used for any leftover probability ranges. + For example, if the total sum of all the probabilities of the entries is 0.6, then + there is a 0.4 chance of the defaultBlock being selected. +Here's an example block selector: +"entries": { + "minecraft:cobblestone": 0.25, + "minecraft:air": 0.2, + "minecraft:stone_bricks": 0.1 +}, +"defaultBlock": "minecraft:oak_planks" +For each block, this selector has a 25% chance of returning cobblestone, 20% chance of choosing air, +10% chance of choosing stone bricks, and a 100 - (25 + 20 + 10) = 45% chance of choosing oak planks (since it's the default block). +###################################### +# ItemSetSelectors # +###################################### +Describes a set of items and the probability of each item being chosen. +Works the same as BlockSetSelectors, but with items instead of blockstates. diff --git a/config/betterstrongholds/fabric-1_20/armorstands.json b/config/betterstrongholds/fabric-1_20/armorstands.json new file mode 100644 index 0000000..ea2eeb5 --- /dev/null +++ b/config/betterstrongholds/fabric-1_20/armorstands.json @@ -0,0 +1,60 @@ +{ + "commonHelmets": { + "entries": { + "iron_helmet": 0.3, + "carved_pumpkin": 0.01, + "chainmail_helmet": 0.3, + "leather_helmet": 0.1 + }, + "defaultItem": "air" + }, + "rareHelmets": { + "entries": { + "diamond_helmet": 0.3, + "carved_pumpkin": 0.2 + }, + "defaultItem": "air" + }, + "commonChestplates": { + "entries": { + "chainmail_chestplate": 0.3, + "leather_chestplate": 0.1, + "iron_chestplate": 0.3 + }, + "defaultItem": "air" + }, + "rareChestplates": { + "entries": { + "diamond_chestplate": 0.3 + }, + "defaultItem": "air" + }, + "commonLeggings": { + "entries": { + "leather_leggings": 0.1, + "chainmail_leggings": 0.3, + "iron_leggings": 0.3 + }, + "defaultItem": "air" + }, + "rareLeggings": { + "entries": { + "diamond_leggings": 0.3 + }, + "defaultItem": "air" + }, + "commonBoots": { + "entries": { + "leather_boots": 0.1, + "iron_boots": 0.3, + "chainmail_boots": 0.3 + }, + "defaultItem": "air" + }, + "rareBoots": { + "entries": { + "diamond_boots": 0.3 + }, + "defaultItem": "air" + } +} \ No newline at end of file diff --git a/config/betterstrongholds/fabric-1_20/itemframes.json b/config/betterstrongholds/fabric-1_20/itemframes.json new file mode 100644 index 0000000..381b917 --- /dev/null +++ b/config/betterstrongholds/fabric-1_20/itemframes.json @@ -0,0 +1,34 @@ +{ + "armouryItems": { + "entries": { + "stone_axe": 0.05, + "iron_axe": 0.1, + "shield": 0.1, + "bow": 0.1, + "golden_axe": 0.05, + "golden_sword": 0.05, + "name_tag": 0.05, + "stone_sword": 0.05, + "iron_sword": 0.1, + "arrow": 0.05 + }, + "defaultItem": "air" + }, + "storageItems": { + "entries": { + "melon_seeds": 0.025, + "cake": 0.05, + "rabbit_foot": 0.01, + "compass": 0.05, + "pumpkin_seeds": 0.025, + "paper": 0.25, + "flint": 0.05, + "lead": 0.05, + "slime_ball": 0.05, + "map": 0.25, + "wheat_seeds": 0.025, + "beetroot_seeds": 0.025 + }, + "defaultItem": "air" + } +} \ No newline at end of file diff --git a/config/betterstrongholds/fabric-1_20/ores.json b/config/betterstrongholds/fabric-1_20/ores.json new file mode 100644 index 0000000..503b21d --- /dev/null +++ b/config/betterstrongholds/fabric-1_20/ores.json @@ -0,0 +1,14 @@ +{ + "oreChances": { + "entries": { + "minecraft:emerald_ore": 0.05, + "minecraft:coal_ore": 0.2, + "minecraft:iron_ore": 0.2, + "minecraft:gold_ore": 0.2, + "minecraft:diamond_ore": 0.05, + "minecraft:lapis_ore": 0.15, + "minecraft:redstone_ore[lit=false]": 0.15 + }, + "defaultBlock": "minecraft:coal_ore" + } +} \ No newline at end of file diff --git a/config/betterstrongholds/fabric-1_20/rareblocks.json b/config/betterstrongholds/fabric-1_20/rareblocks.json new file mode 100644 index 0000000..d4b93eb --- /dev/null +++ b/config/betterstrongholds/fabric-1_20/rareblocks.json @@ -0,0 +1,11 @@ +{ + "blockChances": { + "entries": { + "minecraft:iron_block": 0.3, + "minecraft:diamond_block": 0.1, + "minecraft:gold_block": 0.3, + "minecraft:quartz_block": 0.3 + }, + "defaultBlock": "minecraft:iron_block" + } +} \ No newline at end of file diff --git a/config/betterwitchhuts-fabric-1_20.toml b/config/betterwitchhuts-fabric-1_20.toml new file mode 100644 index 0000000..259e334 --- /dev/null +++ b/config/betterwitchhuts-fabric-1_20.toml @@ -0,0 +1,2 @@ +[general] +disableVanillaWitchHuts = true diff --git a/config/blockrunner-client.toml b/config/blockrunner-client.toml new file mode 100644 index 0000000..7d3edd0 --- /dev/null +++ b/config/blockrunner-client.toml @@ -0,0 +1,4 @@ +#Prevent running on blocks with higher speeds from changing the field of view. +disable_field_of_view_changes = true +#Add a tooltip to blocks that have an altered block speed with the multiplier. +block_speed_multiplier_tooltip = true diff --git a/config/blockrunner.json b/config/blockrunner.json new file mode 100644 index 0000000..b360884 --- /dev/null +++ b/config/blockrunner.json @@ -0,0 +1,11 @@ +{ + "schema_version": "2", + "#blockrunner:very_quick_blocks": 1.55, + "#blockrunner:slightly_slow_blocks": 0.85, + "#blockrunner:slightly_quick_blocks": 1.15, + "#blockrunner:very_slow_blocks": 0.45, + "#blockrunner:quick_blocks": 1.35, + "#blockrunner:slow_blocks": 0.65, + "minecraft:dirt_path": 1.35, + "#minecraft:stone_bricks": 1.15 +} \ No newline at end of file diff --git a/config/bosses_of_mass_destruction.json5 b/config/bosses_of_mass_destruction.json5 new file mode 100644 index 0000000..13fcbaf --- /dev/null +++ b/config/bosses_of_mass_destruction.json5 @@ -0,0 +1,66 @@ +{ + "lichConfig": { + "eternalNighttime": true, + "experienceDrop": 1500, + "idleHealingPerTick": 0.20000000298023224, + "health": 300.0, + "missile": { + "statusEffectId": "minecraft:slowness", + "statusEffectDuration": 100, + "statusEffectPotency": 2, + "damage": 9.0 + }, + "comet": { + "explosionStrength": 4.0 + }, + "summonMechanic": { + "isEnabled": true, + "entitiesThatCountToSummonCounter": [ + "minecraft:zombie", + "minecraft:skeleton", + "minecraft:drowned", + "minecraft:giant", + "minecraft:husk", + "minecraft:phantom", + "minecraft:skeleton_horse", + "minecraft:stray", + "minecraft:wither", + "minecraft:wither_skeleton", + "minecraft:zoglin", + "minecraft:zombie_horse", + "minecraft:zombie_villager", + "minecraft:zombified_piglin" + ], + "numEntitiesKilledToDropSoulStar": 50 + } + }, + "obsidilithConfig": { + "health": 300.0, + "armor": 14.0, + "attack": 16.0, + "idleHealingPerTick": 0.5, + "experienceDrop": 1000, + "spawnPillarOnDeath": true, + "anvilAttackExplosionStrength": 4.0 + }, + "gauntletConfig": { + "health": 250.0, + "armor": 8.0, + "attack": 16.0, + "idleHealingPerTick": 0.5, + "experienceDrop": 1000, + "spawnAncientDebrisOnDeath": true, + "energizedPunchExplosionSize": 4.5, + "normalPunchExplosionMultiplier": 1.5 + }, + "voidBlossomConfig": { + "health": 350.0, + "armor": 4.0, + "attack": 12.0, + "idleHealingPerTick": 0.5, + "experienceDrop": 1000 + }, + "generalConfig": { + "tableOfElevationRadius": 3 + } +} \ No newline at end of file diff --git a/config/bountiful/bountiful.json b/config/bountiful/bountiful.json new file mode 100644 index 0000000..ec9f3f1 --- /dev/null +++ b/config/bountiful/bountiful.json @@ -0,0 +1,14 @@ +{ + "boardUpdateFrequency": 45, + "boardGenFrequency": 2, + "flatBonusTimePerBounty": 0, + "shouldBountiesHaveTimersAndExpire": true, + "dataPackExclusions": [ + "bounty_pools/bountiful/example_pool", + "bounty_pools/*/another_example", + "bounty_decrees/other/*" + ], + "objectiveModifier": 0, + "maxNumRewards": 2, + "showCompletionToast": true +} \ No newline at end of file diff --git a/config/camping.json b/config/camping.json new file mode 100644 index 0000000..923ea8c --- /dev/null +++ b/config/camping.json @@ -0,0 +1,3 @@ +{ + "enableGlint": true +} \ No newline at end of file diff --git a/config/cardinal-components-api.properties b/config/cardinal-components-api.properties new file mode 100644 index 0000000..b08e3fa --- /dev/null +++ b/config/cardinal-components-api.properties @@ -0,0 +1,6 @@ +# If set to false, warnings will not get logged when a component fails to be resolved (typically due to mods being removed) +# Default value: true +log-deserialization-warnings = true + +# Internal value, do not edit or your changes may be arbitrarily reset +config-version = 1 diff --git a/config/cave-dweller-config.json5 b/config/cave-dweller-config.json5 new file mode 100644 index 0000000..e072dee --- /dev/null +++ b/config/cave-dweller-config.json5 @@ -0,0 +1,25 @@ +{ + "GIVE_DARKNESS": true, + "DISAPPEAR": true, + "SPAWN_CHANCE_PER_TICK": 0.005, + "RESET_CALM_MIN": 300, + "RESET_CALM_MAX": 600, + "RESET_CALM_COOLDOWN": 1200, + "RESET_CALM_COOLDOWN_CHANCE": 0.4, + "RESET_NOISE_MIN": 240, + "RESET_NOISE_MAX": 360, + "SPAWN_HEIGHT": 40, + "ALLOW_SURFACE_SPAWN": false, + "SKY_LIGHT_LEVEL": 8, + "BLOCK_LIGHT_LEVEL": 15, + "SPOTTING_RANGE": 60, + "TIME_UNTIL_LEAVE": 300, + "TIME_UNTIL_LEAVE_CHASE": 30, + "CAN_CLIMB": true, + "ALLOW_RIDING": false, + "TARGET_INVISIBLE": true, + "MAX_HEALTH": 60.0, + "ATTACK_DAMAGE": 6.0, + "ATTACK_SPEED": 0.35, + "MOVEMENT_SPEED": 0.5 +} \ No newline at end of file diff --git a/config/collective.json5 b/config/collective.json5 new file mode 100644 index 0000000..62069c2 --- /dev/null +++ b/config/collective.json5 @@ -0,0 +1,12 @@ +{ + // When enabled, transfer the held items and armour from replaced entities by any of the Entity Spawn mods which depend on Collective. + "transferItemsBetweenReplacedEntities": true, + // The amount of times Collective loops through possible mob drops to get them all procedurally. Drops are only generated when a dependent mod uses them. Lowering this can increase world load time but decrease accuracy. + // min: 1, max: 500 + "loopsAmountUsedToGetAllEntityDrops": 100, + // The delay of the is-there-a-block-around-check around entities in ms. Used in mods which depends on a specific blockstate in the world. Increasing this number can increase TPS if needed. + // min: 0, max: 3600000 + "findABlockCheckAroundEntitiesDelayMs": 30000, + // Enables pets for Patrons. Will be added in a future release. + "enablePatronPets": true +} \ No newline at end of file diff --git a/config/combatroll/client.json5 b/config/combatroll/client.json5 new file mode 100644 index 0000000..8364d53 --- /dev/null +++ b/config/combatroll/client.json5 @@ -0,0 +1,11 @@ +{ + "playCooldownSound": true, + "playCooldownFlash": true, + "playRollSound": true, + "hudArrowColor": 5540067, + "hudBackgroundOpacity": 75, + "showWhenFull": true, + "showHUDInCreative": false, + "showKeybinding": true, + "keybindingLabelPosition": "LEFT" +} \ No newline at end of file diff --git a/config/combatroll/enchantments.json b/config/combatroll/enchantments.json new file mode 100644 index 0000000..4cc504c --- /dev/null +++ b/config/combatroll/enchantments.json @@ -0,0 +1,23 @@ +{ + "longfooted": { + "enabled": true, + "max_level": 5, + "min_cost": 12, + "step_cost": 12, + "bonus_per_level": 1.0 + }, + "acrobat": { + "enabled": true, + "max_level": 10, + "min_cost": 15, + "step_cost": 14, + "bonus_per_level": 0.1 + }, + "multi_roll": { + "enabled": true, + "max_level": 4, + "min_cost": 15, + "step_cost": 17, + "bonus_per_level": 1.0 + } +} \ No newline at end of file diff --git a/config/combatroll/hud_config.json b/config/combatroll/hud_config.json new file mode 100644 index 0000000..032453d --- /dev/null +++ b/config/combatroll/hud_config.json @@ -0,0 +1,9 @@ +{ + "rollWidget": { + "origin": "BOTTOM", + "offset": { + "field_1343": 108.0, + "field_1342": -12.0 + } + } +} \ No newline at end of file diff --git a/config/combatroll/server.json5 b/config/combatroll/server.json5 new file mode 100644 index 0000000..49fd269 --- /dev/null +++ b/config/combatroll/server.json5 @@ -0,0 +1,22 @@ +{ + // The number of game ticks players become invulnerable upon rolling + "invulnerable_ticks_upon_roll": 0, + // The duration of the roll ability, expressed as a number of ticks, during which the player cannot use item/attack/jump etc... + "roll_duration": 8, + // Allows Vanilla Minecraft auto jump feature to work while rolling + "allow_auto_jump_while_rolling": true, + // Allows jumping while rolling. WARNING! Setting this to `true` breaks roll distance attribute and enchantment + "allow_jump_while_rolling": false, + // Allows combat roll while the player has its weapon on cooldown + "allow_rolling_while_weapon_cooldown": false, + // Allows combat roll while the player is in the air. WARNING! Setting this to `true` breaks roll distance attribute and enchantment + "allow_rolling_while_airborn": false, + // The amount of exhaust (hunger) to be added to the player on every roll + "exhaust_on_roll": 0.10000000149011612, + // The amount of food level above which players can do a roll + "food_level_required": 6.0, + // The cooldown duration of the combat roll ability expressed in seconds + "roll_cooldown": 4.0, + // Default roll distance attribute is `3`. Settings this to `1` will make it `4`. Warning! Attribute based scaling does not effect this. + "additional_roll_distance": 0.0 +} \ No newline at end of file diff --git a/config/connectivity.json b/config/connectivity.json new file mode 100644 index 0000000..f3f4ca8 --- /dev/null +++ b/config/connectivity.json @@ -0,0 +1,34 @@ +{ + "disableLoginLimits": { + "desc:": "Should login packet size limits be disabled? Error:(IOException(\"Payload may not be larger than 1048576 bytes\")) default:true", + "disableLoginLimits": true + }, + "disablePacketLimits": { + "desc:": "Should play packet size limits be disabled? Error:(Badly compressed packet) default:true", + "disablePacketLimits": true + }, + "disableChatVerificationDisconnect": { + "desc:": "(Clientside) Disables players disconnecting on chat message verification problems,(enable debugPrintMessages to see the message causing issues). default:true", + "disableChatVerificationDisconnect": true + }, + "debugPrintMessages": { + "desc:": "Enable addition debug logging for networking errors. default:false", + "debugPrintMessages": false + }, + "logintimeout": { + "desc:": "Set the max login timeout in seconds. default = 120", + "logintimeout": 120 + }, + "disconnectTimeout": { + "desc:": "Set the ingame disconnect timeout for disconnecting players. Default = 60sec", + "disconnectTimeout": 60 + }, + "packetHistoryMinutes": { + "desc:": "Set the amount of minutes for which network packet history data is saved. Default = 5 minutes", + "packetHistoryMinutes": 5 + }, + "showFullResourceLocationException": { + "desc:": "Enable to see the full log output for all resource location exceptions. Default = false", + "showFullResourceLocationException": false + } +} \ No newline at end of file diff --git a/config/convenientdecor.json5 b/config/convenientdecor.json5 new file mode 100644 index 0000000..798ef5f --- /dev/null +++ b/config/convenientdecor.json5 @@ -0,0 +1,21 @@ +{ + //Turn individual functionalities on or off. + "features": { + // Right-clicking a farmland block with a watering can will permanently hydrate it. + // + // -- WARNING -- + // This MUST be set the same on both the client and server, and changing it requires a full restart to take effect! + // Contact your server administrator if you are unsure, and preferably leave this as it was provided by default. + "wateringCanPermanentFarmland": true, + // Umbrella attracts lightning in the thunderstorm + "umbrellaAttractsLightning": true, + // Umbrella slows down the player's falling speed and reduces fall damage. + "umbrellaSlowsDownFalling": true, + // Rain clothes grant additional hearts in the rain and thunderstorm. + "rainclothesIncreasedHp": true, + // The umbrella protects players from rain and sunlight when used with the Origins mod. + "umbrellaOriginsIntegration": true, + // Rainhats and Raincoats (with the hood activated) protect players from rain when used with the Origins mod + "rainclothesOriginsIntegration": true + } +} diff --git a/config/creeperoverhaul.jsonc b/config/creeperoverhaul.jsonc new file mode 100644 index 0000000..e53dcfc --- /dev/null +++ b/config/creeperoverhaul.jsonc @@ -0,0 +1,42 @@ +{ + // Changes the Creeper Overhaul creepers to destroy blocks or not. + "destroyBlocks": true, + "client": { + // Change the Vanilla Creeper to a new and improved texture with better animations. + "replaceDefaultCreeper": true + }, + "spawning": { + // Change the Creeper Overhaul creepers to spawn or not. + "allowSpawning": true, + // Change the Jungle Creeper to spawn or not. + "allowJungleCreeperSpawning": true, + // Change the Bamboo Creeper to spawn or not. + "allowBambooCreeperSpawning": true, + // Change the Desert Creeper to spawn or not. + "allowDesertCreeperSpawning": true, + // Change the Badlands Creeper to spawn or not. + "allowBadlandsCreeperSpawning": true, + // Change the Hills Creeper to spawn or not. + "allowHillsCreeperSpawning": true, + // Change the Savannah Creeper to spawn or not. + "allowSavannahCreeperSpawning": true, + // Change the Mushroom Creeper to spawn or not. + "allowMushroomCreeperSpawning": true, + // Change the Swamp Creeper to spawn or not. + "allowSwampCreeperSpawning": true, + // Change the Dripstone Creeper to spawn or not. + "allowDripstoneCreeperSpawning": true, + // Change the Cave Creeper to spawn or not. + "allowCaveCreeperSpawning": true, + // Change the Dark Oak Creeper to spawn or not. + "allowDarkOakCreeperSpawning": true, + // Change the Spruce Creeper to spawn or not. + "allowSpruceCreeperSpawning": true, + // Change the Beach Creeper to spawn or not. + "allowBeachCreeperSpawning": true, + // Change the Snowy Creeper to spawn or not. + "allowSnowyCreeperSpawning": true, + // Change the Ocean Creeper to spawn or not. + "allowOceanCreeperSpawning": true + } +} \ No newline at end of file diff --git a/config/cristellib/minecraftED.json5 b/config/cristellib/minecraftED.json5 new file mode 100644 index 0000000..3d86d2c --- /dev/null +++ b/config/cristellib/minecraftED.json5 @@ -0,0 +1,75 @@ +/* + This config file makes it possible to switch off any Minecraft structure. + To disable a structure, simply set the value of that structure to "false". + To change the rarity of a structure category, use the other file in the folder. +*/ +{ + "igloos": { + "igloo": true + }, + "desert_pyramids": { + "desert_pyramid": true + }, + "end_cities": { + "end_city": true + }, + "ocean_ruins": { + "ocean_ruin_cold": true, + "ocean_ruin_warm": true + }, + "shipwrecks": { + "shipwreck": true, + "shipwreck_beached": true + }, + "woodland_mansions": { + "mansion": true + }, + "ancient_cities": { + "ancient_city": true + }, + "buried_treasures": { + "buried_treasure": true + }, + "villages": { + "village_plains": true, + "village_desert": true, + "village_savanna": true, + "village_snowy": true, + "village_taiga": true + }, + "nether_complexes": { + "fortress": true, + "bastion_remnant": true + }, + "ocean_monuments": { + "monument": true + }, + "jungle_temples": { + "jungle_pyramid": true + }, + "nether_fossils": { + "nether_fossil": true + }, + "mineshafts": { + "mineshaft": true, + "mineshaft_mesa": true + }, + "pillager_outposts": { + "pillager_outpost": true + }, + "swamp_huts": { + "swamp_hut": true + }, + "strongholds": { + "stronghold": true + }, + "ruined_portals": { + "ruined_portal": true, + "ruined_portal_desert": true, + "ruined_portal_jungle": true, + "ruined_portal_swamp": true, + "ruined_portal_mountain": true, + "ruined_portal_ocean": true, + "ruined_portal_nether": true + } +} \ No newline at end of file diff --git a/config/cristellib/minecraftP.json5 b/config/cristellib/minecraftP.json5 new file mode 100644 index 0000000..3d62c1e --- /dev/null +++ b/config/cristellib/minecraftP.json5 @@ -0,0 +1,96 @@ +/* +This config file makes it possible to change the spacing, separation, salt (and frequency) of Minecraft's structure sets. + SPACING --- controls how far a structure can be from others of its kind + SEPARATION --- controls how close to each other two structures of the same type can be. +KEEP IN MIND THAT SPACING ALWAYS NEEDS TO BE HIGHER THAN SEPARATION. +*/ +{ + "igloos": { + "spacing": 32, + "separation": 8, + "salt": 14357618 + }, + "desert_pyramids": { + "spacing": 32, + "separation": 8, + "salt": 14357617 + }, + "end_cities": { + "spacing": 20, + "separation": 11, + "salt": 10387313 + }, + "ocean_ruins": { + "spacing": 20, + "separation": 8, + "salt": 14357621 + }, + "shipwrecks": { + "spacing": 24, + "separation": 4, + "salt": 165745295 + }, + "woodland_mansions": { + "spacing": 80, + "separation": 20, + "salt": 10387319 + }, + "ancient_cities": { + "spacing": 24, + "separation": 8, + "salt": 20083232 + }, + "buried_treasures": { + "spacing": 1, + "separation": 0, + "frequency": 0.01, + "salt": 0 + }, + "villages": { + "spacing": 34, + "separation": 8, + "salt": 10387312 + }, + "nether_complexes": { + "spacing": 27, + "separation": 4, + "salt": 30084232 + }, + "ocean_monuments": { + "spacing": 32, + "separation": 5, + "salt": 10387313 + }, + "jungle_temples": { + "spacing": 32, + "separation": 8, + "salt": 14357619 + }, + "nether_fossils": { + "spacing": 2, + "separation": 1, + "salt": 14357921 + }, + "mineshafts": { + "spacing": 1, + "separation": 0, + "frequency": 0.004, + "salt": 0 + }, + "pillager_outposts": { + "spacing": 32, + "separation": 8, + "frequency": 0.2, + "salt": 165745296 + }, + "swamp_huts": { + "spacing": 32, + "separation": 8, + "salt": 14357620 + }, + "ruined_portals": { + "spacing": 40, + "separation": 15, + "salt": 34222645 + } +} \ No newline at end of file diff --git a/config/cupboard.json b/config/cupboard.json new file mode 100644 index 0000000..51d25a0 --- /dev/null +++ b/config/cupboard.json @@ -0,0 +1,22 @@ +{ + "showCommandExecutionErrors": { + "desc:": "Whether to display errors during command execution: default:true", + "showCommandExecutionErrors": true + }, + "debugChunkloadAttempts": { + "desc:": "Enables debug logging of chunks being forceloaded on serverthread by directly accessing an unloaded chunk, which stalls the server until the chunk finishes loading, incompatible with lithium and its forks: default:false", + "debugChunkloadAttempts": false + }, + "skipErrorOnEntityLoad": { + "desc:": "Prevent crashes on entity loading: default:false", + "skipErrorOnEntityLoad": false + }, + "logOffthreadEntityAdd": { + "desc:": "Entities should only be added on the server thread itself, cupboard fixes the crashes caused by mods violating that, this option enables the logging of those: default:true", + "logOffthreadEntityAdd": true + }, + "forceHeapDumpOnOOM": { + "desc:": "Enables creating a heap dump automatically once the game crashes with an out of memory issue, use with care heapdumps take a lot of space. default:false", + "forceHeapDumpOnOOM": false + } +} \ No newline at end of file diff --git a/config/cutthrough-client.toml b/config/cutthrough-client.toml new file mode 100644 index 0000000..9dd6091 --- /dev/null +++ b/config/cutthrough-client.toml @@ -0,0 +1,2 @@ +#Only allow targeting alive entities, as opposed to entities that have already died and only remain to render a death animation. Greatly helps in combat as dead entities will no longer absorb hits. +target_alive_only = true diff --git a/config/debugify-descriptions.json b/config/debugify-descriptions.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/config/debugify-descriptions.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/config/debugify.json b/config/debugify.json new file mode 100644 index 0000000..d4f7625 --- /dev/null +++ b/config/debugify.json @@ -0,0 +1,72 @@ +{ + "MC-577": true, + "MC-2025": true, + "MC-4490": true, + "MC-7569": true, + "MC-8187": true, + "MC-12829": true, + "MC-14923": true, + "MC-22882": true, + "MC-30391": true, + "MC-31819": true, + "MC-46766": true, + "MC-55347": true, + "MC-59810": false, + "MC-69216": true, + "MC-72151": true, + "MC-79545": true, + "MC-80859": true, + "MC-88371": true, + "MC-89146": true, + "MC-90084": true, + "MC-90683": true, + "MC-93018": true, + "MC-93384": true, + "MC-100991": true, + "MC-108948": true, + "MC-111516": true, + "MC-112730": true, + "MC-116379": true, + "MC-119417": true, + "MC-119754": true, + "MC-121706": true, + "MC-121772": true, + "MC-121903": true, + "MC-122477": true, + "MC-122627": true, + "MC-123739": true, + "MC-124117": true, + "MC-127970": true, + "MC-129909": true, + "MC-132878": true, + "MC-135971": true, + "MC-140646": true, + "MC-143474": true, + "MC-155509": true, + "MC-159163": true, + "MC-160095": true, + "MC-165381": true, + "MC-176559": true, + "MC-179072": true, + "MC-183776": true, + "MC-183990": true, + "MC-193343": true, + "MC-197260": true, + "MC-199467": true, + "MC-200418": true, + "MC-206922": true, + "MC-215530": true, + "MC-215531": true, + "MC-217716": true, + "MC-223153": true, + "MC-224729": true, + "MC-227169": true, + "MC-231097": true, + "MC-231743": true, + "MC-232869": true, + "MC-237493": true, + "MC-263865": true, + "opt_out_updater": false, + "gameplay_fixes_in_multiplayer": false, + "default_disabled": false +} \ No newline at end of file diff --git a/config/deeperdarker.json5 b/config/deeperdarker.json5 new file mode 100644 index 0000000..54520db --- /dev/null +++ b/config/deeperdarker.json5 @@ -0,0 +1,27 @@ +{ + // Chance of either sculk leeches or stalkers spawning. + spawnSomethingFromAncientVaseChance: 0.16, + // Chance of sculk leeches spawning. This is only used if something should spawn in the first place, as per `spawnSomethingFromAncientVaseChance`. If sculk leeches do not spawn, a stalker will be spawned instead. + sculkLeechesFromAncientVaseChance: 0.7, + renderWardenHelmetHorns: true, + geysersApplySlowFalling: false, + geyserLaunchVelocity: 2.5, + // The minimum inner width (not counting the frame) of the Otherside portal in order to light it successfully + portalMinWidth: 8, + // The minimum inner height (not counting the frame) of the Otherside portal in order to light it successfully + portalMinHeight: 4, + // The maximum inner width (not counting the frame) of the Otherside portal in order to light it successfully + portalMaxWidth: 48, + // The maximum inner height (not counting the frame) of the Otherside portal in order to light it successfully + portalMaxHeight: 24, + // The lowest Y coordinate to search to generate an Otherside portal + portalMinSearchHeight: 2, + // The highest Y coordinate to search to generate an Otherside portal + portalMaxSearchHeight: 122, + // The width of Otherside portals generated when traveling through dimensions and no portal is available + generatedPortalWidth: 8, + // The height of Otherside portals generated when traveling through dimensions and no portal is available + generatedPortalHeight: 4, + wardenHeartPulses: true, + changePhantomTextures: true +} \ No newline at end of file diff --git a/config/deuf_refabricated.json b/config/deuf_refabricated.json new file mode 100644 index 0000000..a63050d --- /dev/null +++ b/config/deuf_refabricated.json @@ -0,0 +1,3 @@ +{ + "enable_logging": false +} \ No newline at end of file diff --git a/config/doubledoors.json5 b/config/doubledoors.json5 new file mode 100644 index 0000000..acd8729 --- /dev/null +++ b/config/doubledoors.json5 @@ -0,0 +1,15 @@ +{ + // Whether the recursive opening feature should be enabled. This allows you to for example build a giant door with trapdoors which will all open at the same time, as long as they are connected. The 'recursiveOpeningMaxBlocksDistance' config option determines how far the function should search. + "enableRecursiveOpening": true, + // How many blocks the recursive function should search when 'enableRecursiveOpening' is enabled. + // min: 1, max: 64 + "recursiveOpeningMaxBlocksDistance": 10, + // When enables, the mod works with double doors. + "enableDoors": true, + // When enables, the mod works with double fence gates. + "enableFenceGates": true, + // When enables, the mod works with double trapdoors. + "enableTrapdoors": true, + // Checks if there are other mods loaded with double door functionality, such as Quark. If found, it edits a line in their config to disable double doors. Fixes doors not opening due to code being ran twice. + "enableModIncompatibilityCheck": true +} \ No newline at end of file diff --git a/config/dungeon_difficulty_client.json b/config/dungeon_difficulty_client.json new file mode 100644 index 0000000..0f4e4c9 --- /dev/null +++ b/config/dungeon_difficulty_client.json @@ -0,0 +1,5 @@ +{ + "enable_overriding_enchantment_rarity": true, + "enable_scaled_items_rarity": true, + "scaled_item_rarity_max": "RARE" +} \ No newline at end of file diff --git a/config/dungeon_difficulty_v2.json b/config/dungeon_difficulty_v2.json new file mode 100644 index 0000000..2c7c791 --- /dev/null +++ b/config/dungeon_difficulty_v2.json @@ -0,0 +1,292 @@ +{ + "meta": { + "comment": "IMPORTANT! Make sure to set `allow_customization` to `true` to allow customization of the config", + "allow_customization": false, + "sanitize_config": true, + "rounding_unit": 0.5 + }, + "perPlayerDifficulty": { + "enabled": true, + "counting": "EVERYWHERE", + "entities": [ + { + "entity_matches": { + "attitude": "ANY", + "entity_id_regex": ".*" + }, + "attributes": [ + { + "attribute": "damage", + "operation": "MULTIPLY_BASE", + "randomness": 0.0, + "value": 0.2 + }, + { + "attribute": "generic.max_health", + "operation": "MULTIPLY_BASE", + "randomness": 0.0, + "value": 0.2 + } + ], + "experience_multiplier": 0.0 + } + ] + }, + "difficulty_types": [ + { + "name": "normal", + "entities": [ + { + "entity_matches": { + "attitude": "ANY", + "entity_id_regex": ".*" + }, + "attributes": [ + { + "attribute": "damage", + "operation": "MULTIPLY_BASE", + "randomness": 0.0, + "value": 0.25 + }, + { + "attribute": "generic.armor", + "operation": "ADDITION", + "randomness": 0.0, + "value": 1.0 + }, + { + "attribute": "generic.max_health", + "operation": "MULTIPLY_BASE", + "randomness": 0.1, + "value": 0.25 + } + ], + "experience_multiplier": 0.2 + } + ], + "rewards": { + "armor": [], + "weapons": [] + } + }, + { + "name": "dungeon", + "parent": "normal", + "entities": [ + { + "entity_matches": { + "attitude": "ANY", + "entity_id_regex": ".*" + }, + "attributes": [], + "spawners": { + "spawn_range_multiplier": 0.0, + "spawn_count_multiplier": 0.5, + "max_nearby_entities_multiplier": 1.0, + "min_spawn_delay_multiplier": -0.2, + "max_spawn_delay_multiplier": -0.2, + "required_player_range_multiplier": 0.0 + }, + "experience_multiplier": 0.0 + } + ], + "rewards": { + "armor": [ + { + "item_matches": { + "item_id_regex": ".*", + "loot_table_regex": ".*", + "rarity_regex": ".*" + }, + "attributes": [ + { + "attribute": "generic.armor", + "operation": "MULTIPLY_BASE", + "randomness": 0.0, + "value": 0.1 + }, + { + "attribute": "generic.max_health", + "operation": "ADDITION", + "randomness": 0.0, + "value": 1.0 + } + ] + } + ], + "weapons": [ + { + "item_matches": { + "item_id_regex": ".*", + "loot_table_regex": ".*", + "rarity_regex": ".*" + }, + "attributes": [ + { + "attribute": "damage", + "operation": "MULTIPLY_BASE", + "randomness": 0.05, + "value": 0.15 + }, + { + "attribute": "power", + "operation": "MULTIPLY_BASE", + "randomness": 0.05, + "value": 0.15 + } + ] + } + ] + } + } + ], + "dimensions": [ + { + "world_matches": { + "dimension_regex": "minecraft:overworld" + }, + "zones": [ + { + "zone_matches": { + "biome_regex": ".*", + "biome_tag_regex": ".*", + "structure_id": "stronghold" + }, + "difficulty": { + "name": "dungeon", + "level": 4 + } + }, + { + "zone_matches": { + "biome_regex": ".*", + "biome_tag_regex": ".*", + "structure_id": "monument" + }, + "difficulty": { + "name": "dungeon", + "level": 2 + } + }, + { + "zone_matches": { + "biome_regex": ".*", + "biome_tag_regex": ".*", + "structure_id": "desert_pyramid" + }, + "difficulty": { + "name": "dungeon", + "level": 2 + } + }, + { + "zone_matches": { + "biome_regex": ".*", + "biome_tag_regex": ".*", + "structure_id": "jungle_pyramid" + }, + "difficulty": { + "name": "dungeon", + "level": 2 + } + }, + { + "zone_matches": { + "biome_regex": ".*", + "biome_tag_regex": ".*", + "structure_id": "pillager_outpost" + }, + "difficulty": { + "name": "normal", + "level": 2 + } + }, + { + "zone_matches": { + "biome_regex": "desert", + "biome_tag_regex": ".*" + }, + "difficulty": { + "name": "normal", + "level": 1 + } + }, + { + "zone_matches": { + "biome_regex": "frozen|snowy|ice", + "biome_tag_regex": ".*" + }, + "difficulty": { + "name": "normal", + "level": 1 + } + }, + { + "zone_matches": { + "biome_regex": "jungle", + "biome_tag_regex": ".*" + }, + "difficulty": { + "name": "normal", + "level": 1 + } + } + ] + }, + { + "world_matches": { + "dimension_regex": "minecraft:the_nether" + }, + "difficulty": { + "name": "normal", + "level": 3 + }, + "zones": [ + { + "zone_matches": { + "biome_regex": ".*", + "biome_tag_regex": ".*", + "structure_id": "fortress" + }, + "difficulty": { + "name": "dungeon", + "level": 4 + } + }, + { + "zone_matches": { + "biome_regex": ".*", + "biome_tag_regex": ".*", + "structure_id": "bastion_remnant" + }, + "difficulty": { + "name": "dungeon", + "level": 4 + } + } + ] + }, + { + "world_matches": { + "dimension_regex": "minecraft:the_end" + }, + "difficulty": { + "name": "normal", + "level": 5 + }, + "zones": [ + { + "zone_matches": { + "biome_regex": ".*", + "biome_tag_regex": ".*", + "structure_id": "end_city" + }, + "difficulty": { + "name": "dungeon", + "level": 6 + } + } + ] + } + ] +} \ No newline at end of file diff --git a/config/dungeonnowloading-client.toml b/config/dungeonnowloading-client.toml new file mode 100644 index 0000000..e69de29 diff --git a/config/dungeonnowloading-server.toml b/config/dungeonnowloading-server.toml new file mode 100644 index 0000000..75d2f02 --- /dev/null +++ b/config/dungeonnowloading-server.toml @@ -0,0 +1,35 @@ +[general-settings] + #Whether the items show helpful tooltip + toggle_helpful_tooltip = true + #Whether the blocks added by the mod cause destruction + toggle_destructive_blocks = false +[multiplayer-boss-scaling] + #Whether the boss scales with number of players. + toggle_multiplayer_scaling = true + #Multiplies the boss health by this value per additional player. + #Range: 0.0 ~ 1.7976931348623157E308 + multiplayer_boss_health_scale = 0.5 + #Multiplies the boss attack by this value per additional player. + #Range: 0.0 ~ 1.7976931348623157E308 + multiplayer_boss_attack_scale = 0.0 + #Whether the boss drops loot for all the players that fought the boss. + toggle_multiplayer_boss_loot = true +[boss-scaling] + #Multiplies the boss health by this value. + #Range: 0.0 ~ 1.7976931348623157E308 + boss_health_scale = 1.0 + #Multiplies the boss attack damage by this value. + #Range: 0.0 ~ 1.7976931348623157E308 + boss_damage_scale = 1.0 + #Enables the boss to reset when no player is near the boss. + toggle_boss_reset = true +[mob-scaling-config] + #Multiplies the health of the pre spawned mob in the dungeon by this value. + #Range: 0.0 ~ 1.7976931348623157E308 + dungeon_mob_health_scale = 1.0 + #Multiplies the attack of the pre spawned mob in the dungeon by this value. + #Range: 0.0 ~ 1.7976931348623157E308 + dungeon_mob_attack_scale = 1.0 +[pvp-settings] + #Whether some features work for Pvp purpose + toggle_pvp = false diff --git a/config/economical_villager_trading.json b/config/economical_villager_trading.json new file mode 100644 index 0000000..536a4a1 --- /dev/null +++ b/config/economical_villager_trading.json @@ -0,0 +1,7 @@ +{ + "villagerTradeAdjustBalance": -1.0, + "enableReputationPriceAdjustments": true, + "villagerXpMultiplier": 1.0, + "enableVillagerLevelupWhileTrading": true, + "fetchTranslationUpdates": true +} \ No newline at end of file diff --git a/config/eldritch_end/biomes/hasturian_wastes.json b/config/eldritch_end/biomes/hasturian_wastes.json new file mode 100644 index 0000000..e909c12 --- /dev/null +++ b/config/eldritch_end/biomes/hasturian_wastes.json @@ -0,0 +1,11 @@ +{ + "enabled": true, + "biome_weight": 3.0, + "biome_temperature": 5.0, + "enable_spike_generation": true, + "spike_generation_chance": 100, + "etyr_spawn_chance_per_block": 2, + "enable_grass_generation": true, + "grass_generation_chance": 10, + "spawn_dendlers": true +} \ No newline at end of file diff --git a/config/eldritch_end/biomes/primordial_abyss.json b/config/eldritch_end/biomes/primordial_abyss.json new file mode 100644 index 0000000..eedef0b --- /dev/null +++ b/config/eldritch_end/biomes/primordial_abyss.json @@ -0,0 +1,13 @@ +{ + "enabled": true, + "enable_midlands": false, + "spawn_endermen": false, + "spawn_aberrations": true, + "biome_weight": 4.0, + "biome_temperature": 1.0, + "enable_tendril_patches": true, + "tendril_patch_chance": 10, + "enable_roots_generation": true, + "roots_generation_chance": 10, + "enable_leaves_generation": true +} \ No newline at end of file diff --git a/config/eldritch_end/bosses/hastur.json b/config/eldritch_end/bosses/hastur.json new file mode 100644 index 0000000..1e2e1a9 --- /dev/null +++ b/config/eldritch_end/bosses/hastur.json @@ -0,0 +1,8 @@ +{ + "HEALTH_ATTRIBUTE": 2500.0, + "MINION_SPAWN_AMOUNT": 3.0, + "HASTUR_OMNIVAMPIRISM_AMOUNT": 0.1, + "TENTACLE_CHANCE_PERSEC": 5.0, + "ENCARNATION_LIGHTNING_DAMAGE": 100.0, + "PLAYER_DYING_KILLS_OTHER_PLAYERS": true +} \ No newline at end of file diff --git a/config/eldritch_end/eldritch_end-client.json b/config/eldritch_end/eldritch_end-client.json new file mode 100644 index 0000000..0214a56 --- /dev/null +++ b/config/eldritch_end/eldritch_end-client.json @@ -0,0 +1,3 @@ +{ + "enable_fog": true +} \ No newline at end of file diff --git a/config/eldritch_end/entities/aberration.json b/config/eldritch_end/entities/aberration.json new file mode 100644 index 0000000..26a18d7 --- /dev/null +++ b/config/eldritch_end/entities/aberration.json @@ -0,0 +1,9 @@ +{ + "HEALTH_ATTRIBUTE": 20.0, + "MOVEMENT_SPEED_ATTRIBUTE": 0.3, + "ATTACK_DAMAGE_ATTRIBUTE": 4.0, + "ATTACK_SPEED_ATTRIBUTE": 1.0, + "CHASE_SPEED": 1.2, + "WANDER_SPEED": 1.0, + "initital_corruption_duration_ticks": 200 +} \ No newline at end of file diff --git a/config/eldritch_end/entities/dendler.json b/config/eldritch_end/entities/dendler.json new file mode 100644 index 0000000..50e563d --- /dev/null +++ b/config/eldritch_end/entities/dendler.json @@ -0,0 +1,5 @@ +{ + "HEALTH_ATTRIBUTE": 40.0, + "MOVEMENT_SPEED_ATTRIBUTE": 0.3, + "WANDER_SPEED": 0.6 +} \ No newline at end of file diff --git a/config/eldritch_end/entities/tentacle.json b/config/eldritch_end/entities/tentacle.json new file mode 100644 index 0000000..d48c8f3 --- /dev/null +++ b/config/eldritch_end/entities/tentacle.json @@ -0,0 +1,5 @@ +{ + "HEALTH_ATTRIBUTE": 20.0, + "ATTACK_DAMAGE_ATTRIBUTE": 6.0, + "ATTACK_SPEED_ATTRIBUTE": 1.0 +} \ No newline at end of file diff --git a/config/eldritch_end/mechanics/corruption.json b/config/eldritch_end/mechanics/corruption.json new file mode 100644 index 0000000..48a737f --- /dev/null +++ b/config/eldritch_end/mechanics/corruption.json @@ -0,0 +1,12 @@ +{ + "show_icon_only_when_corrupted": false, + "temporary_corruption_amount_per_stack": 10, + "maximum_corruption": 200, + "maximum_etyr_resistance": 100, + "e_damageTaken_startingLevel": 10, + "e_tentacles_startingLevel": 25, + "e_vision_startingLevel": 40, + "e_damageDealt_startingLevel": 50, + "e_eyes_startingLevel": 70, + "e_lethal_startingLevel": 100 +} \ No newline at end of file diff --git a/config/emi.css b/config/emi.css new file mode 100644 index 0000000..f79ca42 --- /dev/null +++ b/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: true; + + /** + * 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: liters; + + /** + * 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: favorites; + + /** + * 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.a"; + + /** + * 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/config/endrem.json b/config/endrem.json new file mode 100644 index 0000000..6ed3563 --- /dev/null +++ b/config/endrem.json @@ -0,0 +1,32 @@ +{ + "common": { + "enableEyeOfEnderComment": "Enable/Disable usage of Ender Eyes", + "ENABLE_EYE_OF_ENDER": false, + "throwEyeOfEnderComment": "Enable/Disable throwing of Ender Eyes", + "THROW_EYE_OF_ENDER": false, + "frameHasRandomEyeComment": "Enable/Disable whether or not ender eyes can naturally generate within the frames of the portal", + "FRAME_HAS_RANDOM_EYE": false, + "eyeBreakProbabilityComment": "Percentage chance of eyes breaking when thrown", + "EYE_BREAK_PROBABILITY": 10, + "crypticAndEvilEyeComment": "Decides if the cryptic eye and the evil eye is obtainable in game", + "IS_CRYPTIC_EYE_OBTAINABLE": true, + "IS_EVIL_EYE_OBTAINABLE": true, + "removeVanillaEyeComment": "Decides whether or not you can remove an ender eye from a frame", + "CAN_REMOVE_EYE": false, + "lootTablesIdComment": "this below is what you want to modify if you wanna change the loot tables of the eyes and their chance to appear.", + "ROGUE_EYE_LOOT_TABLE_ID": "minecraft:chests/jungle_temple", + "CORRUPTED_EYE_LOOT_TABLE_ID": "minecraft:chests/pillager_outpost", + "BLACK_EYE_LOOT_TABLE_ID": "minecraft:chests/buried_treasure", + "LOST_EYE_LOOT_TABLE_ID": "minecraft:chests/abandoned_mineshaft", + "OLD_EYE_LOOT_TABLE_ID": "minecraft:chests/desert_pyramid", + "COLD_EYE_LOOT_TABLE_ID": "minecraft:chests/igloo_chest", + "NETHER_EYE_LOOT_TABLE_ID": "minecraft:chests/nether_bridge", + "CURSED_EYE_LOOT_TABLE_ID": "minecraft:chests/bastion_treasure", + "MAGICAL_EYE_MANSION_LOOT_TABLE_ID": "minecraft:chests/woodland_mansion", + "MAGICAL_EYE_EVOKER_LOOT_TABLE_ID": "minecraft:entities/evoker", + "WITHER_EYE_LOOT_TABLE_ID": "minecraft:entities/wither", + "GUARDIAN_EYE_LOOT_TABLE_ID": "minecraft:entities/elder_guardian", + "WITCH_PUPIL_LOOT_TABLE_ID": "minecraft:entities/witch", + "UNDEAD_SOUL_LOOT_TABLE_ID": "minecraft:entities/skeleton_horse" + } +} \ No newline at end of file diff --git a/config/enhanced_bes.properties b/config/enhanced_bes.properties new file mode 100644 index 0000000..e03ea58 --- /dev/null +++ b/config/enhanced_bes.properties @@ -0,0 +1,20 @@ +#Configuration file for Enhanced Block Entities +#Mon Aug 05 19:30:06 CDT 2024 +decorated_pot_ao=false +sign_ao=false +render_enhanced_signs=true +bell_ao=true +shulker_box_ao=false +experimental_signs=true +chest_ao=false +sign_text_rendering=smart +render_enhanced_decorated_pots=true +experimental_chests=true +christmas_chests=allowed +bed_ao=false +render_enhanced_chests=true +render_enhanced_beds=true +render_enhanced_shulker_boxes=true +experimental_beds=true +render_enhanced_bells=true +force_resource_pack_compat=false diff --git a/config/entity_model_features.json b/config/entity_model_features.json new file mode 100644 index 0000000..0d91ab5 --- /dev/null +++ b/config/entity_model_features.json @@ -0,0 +1,21 @@ +{ + "logModelCreationData": false, + "debugOnRightClick": false, + "renderModeChoice": "NORMAL", + "vanillaModelHologramRenderMode_2": "OFF", + "attemptRevertingEntityModelsAlteredByAnotherMod": true, + "modelExportMode": "NONE", + "attemptPhysicsModPatch_2": "CUSTOM", + "modelUpdateFrequency": "Average", + "entityRenderModeOverrides": {}, + "entityPhysicsModPatchOverrides": {}, + "entityVanillaHologramOverrides": {}, + "modelsNamesDisabled": [], + "allowEBEModConfigModify": true, + "animationLODDistance": 20, + "retainDetailOnLowFps": true, + "retainDetailOnLargerMobs": true, + "animationFrameSkipDuringIrisShadowPass": true, + "preventFirstPersonHandAnimating": false, + "onlyClientPlayerModel": false +} \ No newline at end of file diff --git a/config/entity_texture_features.json b/config/entity_texture_features.json new file mode 100644 index 0000000..d5673a5 --- /dev/null +++ b/config/entity_texture_features.json @@ -0,0 +1,36 @@ +{ + "illegalPathSupportMode": "None", + "enableCustomTextures": true, + "enableCustomBlockEntities": true, + "textureUpdateFrequency_V2": "Fast", + "enableEmissiveTextures": true, + "enableEnchantedTextures": true, + "enableEmissiveBlockEntities": true, + "emissiveRenderMode": "DULL", + "alwaysCheckVanillaEmissiveSuffix": true, + "enableArmorAndTrims": true, + "skinFeaturesEnabled": true, + "skinTransparencyMode": "ETF_SKINS_ONLY", + "skinTransparencyInExtraPixels": true, + "skinFeaturesEnableTransparency": true, + "skinFeaturesEnableFullTransparency": false, + "tryETFTransparencyForAllSkins": false, + "enableEnemyTeamPlayersSkinFeatures": true, + "enableBlinking": true, + "blinkFrequency": 150, + "blinkLength": 1, + "advanced_IncreaseCacheSizeModifier": 1.0, + "debugLoggingMode": "None", + "logTextureDataInitialization": false, + "hideConfigButton": false, + "disableVanillaDirectoryVariantTextures": false, + "use3DSkinLayerPatch": true, + "enableFullBodyWardenTextures": true, + "entityEmissiveOverrides": {}, + "propertiesDisabled": [], + "propertyInvertUpdatingOverrides": [], + "entityRandomOverrides": {}, + "entityEmissiveBrightOverrides": {}, + "entityRenderLayerOverrides": {}, + "entityLightOverrides": {} +} \ No newline at end of file diff --git a/config/entityculling.json b/config/entityculling.json new file mode 100644 index 0000000..1308d3b --- /dev/null +++ b/config/entityculling.json @@ -0,0 +1,38 @@ +{ + "configVersion": 6, + "renderNametagsThroughWalls": true, + "blockEntityWhitelist": [ + "create:rope_pulley", + "botania:flame_ring", + "minecraft:beacon", + "create:hose_pulley", + "betterend:eternal_pedestal", + "botania:magic_missile", + "botania:falling_star" + ], + "entityWhitelist": [ + "botania:mana_burst", + "drg_flares:drg_flares" + ], + "tracingDistance": 128, + "debugMode": false, + "sleepDelay": 10, + "hitboxLimit": 50, + "skipMarkerArmorStands": true, + "tickCulling": true, + "tickCullingWhitelist": [ + "create:contraption", + "create:stationary_contraption", + "create:gantry_contraption", + "minecraft:boat", + "mts:builder_seat", + "minecraft:firework_rocket", + "create:carriage_contraption", + "mts:builder_rendering", + "drg_flares:drg_flares", + "mts:builder_existing" + ], + "disableF3": false, + "skipEntityCulling": false, + "skipBlockEntityCulling": false +} \ No newline at end of file diff --git a/config/epicknights/armor.json5 b/config/epicknights/armor.json5 new file mode 100644 index 0000000..8fd7b9d --- /dev/null +++ b/config/epicknights/armor.json5 @@ -0,0 +1,25 @@ +{ + "enableKnightArmor": true, + "enableJoustingArmor": true, + "enableGothicArmor": true, + "enableMaximilianArmor": true, + "enableChainmailArmor": true, + "enablePlatemailArmor": true, + "enableHalfarmor": true, + "enableCrusaderArmor": true, + "enableBrigandineArmor": true, + "enableGambesonArmor": true, + "enableCeremonialArmor": true, + "enableShishak": true, + "enableNormanHelmet": true, + "enableRustedHalfarmorArmor": true, + "enableRustedChainmailArmor": true, + "enableRustedKettlehat": true, + "enableRustedNormanHelmet": true, + "enableRustedCrusaderArmor": true, + "enableXIVCenturyKnightArmor": true, + "enableWingedHussarArmor": true, + "enableCuirassierArmor": true, + "enableKastenbrustArmor": true, + "enableLamellarArmor": true +} \ No newline at end of file diff --git a/config/epicknights/general.json5 b/config/epicknights/general.json5 new file mode 100644 index 0000000..6f85514 --- /dev/null +++ b/config/epicknights/general.json5 @@ -0,0 +1,24 @@ +{ + // If true, monsters will be equipped with some armor and weapons of the mod. This is an boolean. Default value is true. + "equipMonsters": true, + // If true, monsters will be equipped with some armor and weapons only if game the game difficulty set to hard. This is an boolean. Default value is true. + "equipMonstersOnlyIfHard": true, + // Affects the chance that monsters will be equipped by default. This is an float. Default value is 0.5, Maximum value is 1.0. + "equipChance": 0.5, + // If false, equipment will not be overriden. This is an float. Default value is false. + "overrideEquipment": false, + // If true, crafting recipes with the surcoat is available not only for the armor of this mod. Default value is true. + "enableSurcoatRecipeForAllArmor": true, + // If Epic Fight or Better Combat is installed, it will be used as true. If true, all the weapons have the same reach distance. It's recommended to set to true to avoid conflicts with some combat mods. Default value is false. + "disableAttackReach": false, + // If true, lance will not collide with mobs when you're riding a horse. It's recommended to set to true to avoid conflicts with some combat mods. Default value is false. + "disableLanceCollision": false, + // If true, all the weapons don't penetrate armor. It's recommended to set to true to avoid conflicts with some combat mods. Default value is false. + "disableArmorPiercing": false, + // If true, flame-bladed swords won't add laceration effect. + "disableLaceration": false, + // If true, all the weapons don't have any debuff as long as you hold something with both hands. It's recommended to set to true to avoid conflicts with some combat mods. Default value is false. + "disableTwoHanded": false, + // If true, you can't block with the weapons from the mod. It's recommended to set to true to avoid conflicts with some combat mods. Default value is false. + "disableWeaponBlocking": false +} \ No newline at end of file diff --git a/config/epicknights/mobs_equipment.json5 b/config/epicknights/mobs_equipment.json5 new file mode 100644 index 0000000..5a0f2ad --- /dev/null +++ b/config/epicknights/mobs_equipment.json5 @@ -0,0 +1,9 @@ +{ + // Specify mob IDs, dimensions and the items that mobs will have with some chance, all separated by a space + "equipments": [ + "minecraft:zombie minecraft:overworld magistuarmory:rustedchainmail_helmet magistuarmory:rustednorman_helmet magistuarmory:rustedkettlehat magistuarmory:rustedbarbute magistuarmory:rustedgreathelm magistuarmory:rustedchainmail_chestplate magistuarmory:rustedcrusader_chestplate magistuarmory:rustedhalfarmor_chestplate magistuarmory:rustedchainmail_leggings magistuarmory:rustedchainmail_boots magistuarmory:rustedcrusader_boots magistuarmory:rusted_bastardsword magistuarmory:rusted_bastardsword magistuarmory:rusted_heavymace magistuarmory:corruptedroundshield", + "minecraft:skeleton minecraft:overworld magistuarmory:rustedchainmail_helmet magistuarmory:rustednorman_helmet magistuarmory:rustedkettlehat magistuarmory:rustedbarbute magistuarmory:rustedgreathelm magistuarmory:rustedchainmail_chestplate magistuarmory:rustedcrusader_chestplate magistuarmory:rustedhalfarmor_chestplate magistuarmory:rustedchainmail_leggings magistuarmory:rustedchainmail_boots magistuarmory:corruptedroundshield magistuarmory:rustedcrusader_boots magistuarmory:rusted_bastardsword minecraft:bow", + "minecraft:piglin_brute minecraft:zombified_piglin minecraft:golden_helmet minecraft:golden_chestplate minecraft:golden_leggings minecraft:golden_boots magistuarmory:brigandine_chestplate magistuarmory:gambeson_boots magistuarmory:gold_bastardsword magistuarmory:gold_guisarme magistuarmory:gold_shortsword magistuarmory:gold_lochaberaxe magistuarmory:gold_buckler magistuarmory:gold_target", + "minecraft:wither_skeleton 0.3 magistuarmory:sallet magistuarmory:maximilian_helmet magistuarmory:gothic_chestplate magistuarmory:maximilian_chestplate magistuarmory:gothic_leggings magistuarmory:maximilian_leggings magistuarmory:gothic_boots magistuarmory:maximilian_helmet magistuarmory:steel_zweihander magistuarmory:steel_flamebladedsword magistuarmory:steel_lucernhammer" + ] +} \ No newline at end of file diff --git a/config/epicknights/shields.json5 b/config/epicknights/shields.json5 new file mode 100644 index 0000000..3db9946 --- /dev/null +++ b/config/epicknights/shields.json5 @@ -0,0 +1,12 @@ +{ + "enableHeaterShield": true, + "enableTarget": true, + "enableBuckler": true, + "enableRondache": true, + "enableTartsche": true, + "enableEllipticalShield": true, + "enableRoundShield": true, + "enablePavese": true, + "enableKiteShield": true, + "enableCorruptedRoundShield": true +} \ No newline at end of file diff --git a/config/epicknights/weapons.json5 b/config/epicknights/weapons.json5 new file mode 100644 index 0000000..5d0931e --- /dev/null +++ b/config/epicknights/weapons.json5 @@ -0,0 +1,170 @@ +{ + "barbedClub": { + "enabled": true, + "baseAttackDamage": 5.199999809265137, + "baseAttackSpeed": 1.0, + "bonusAttackReach": 0.0 + }, + "blacksmithHammer": { + "enabled": true, + "baseAttackDamage": 5.0, + "baseAttackSpeed": 1.0, + "bonusAttackReach": 0.0 + }, + "club": { + "enabled": true, + "baseAttackDamage": 7.0, + "baseAttackSpeed": 0.800000011920929, + "bonusAttackReach": 0.0 + }, + "flail": { + "enabled": true, + "baseAttackDamage": 6.199999809265137, + "baseAttackSpeed": 1.0, + "bonusAttackReach": 0.0 + }, + "heavyMace": { + "enabled": true, + "baseAttackDamage": 4.800000190734863, + "baseAttackSpeed": 1.149999976158142, + "bonusAttackReach": 0.0 + }, + "heavyWarHammer": { + "enabled": true, + "baseAttackDamage": 5.0, + "baseAttackSpeed": 1.0499999523162842, + "bonusAttackReach": 0.0 + }, + "lucerneHammer": { + "enabled": true, + "baseAttackDamage": 4.400000095367432, + "baseAttackSpeed": 1.100000023841858, + "bonusAttackReach": 0.699999988079071 + }, + "morningstar": { + "enabled": true, + "baseAttackDamage": 4.699999809265137, + "baseAttackSpeed": 1.25, + "bonusAttackReach": 0.0 + }, + "rustedHeavyMace": { + "enabled": true, + "baseAttackDamage": 2.0, + "baseAttackSpeed": 1.5099999904632568, + "bonusAttackReach": 0.0 + }, + "stiletto": { + "enabled": true, + "baseAttackDamage": 2.0, + "baseAttackSpeed": 1.600000023841858, + "bonusAttackReach": 0.0 + }, + "claymore": { + "enabled": true, + "baseAttackDamage": 5.300000190734863, + "baseAttackSpeed": 1.2200000286102295, + "bonusAttackReach": 0.0 + }, + "flameBladedSword": { + "enabled": true, + "baseAttackDamage": 6.0, + "baseAttackSpeed": 1.1200000047683716, + "bonusAttackReach": 0.5 + }, + "zweihander": { + "enabled": true, + "baseAttackDamage": 6.0, + "baseAttackSpeed": 1.1200000047683716, + "bonusAttackReach": 0.5 + }, + "concaveEdgedHalberd": { + "enabled": true, + "baseAttackDamage": 7.300000190734863, + "baseAttackSpeed": 0.8999999761581421, + "bonusAttackReach": 1.0 + }, + "giantLance": { + "enabled": true, + "baseAttackDamage": 2.5, + "baseAttackSpeed": 0.8399999737739563, + "bonusAttackReach": 2.0 + }, + "lochaberAxe": { + "enabled": true, + "baseAttackDamage": 7.0, + "baseAttackSpeed": 1.0, + "bonusAttackReach": 0.8999999761581421 + }, + "bastardSword": { + "enabled": true, + "baseAttackDamage": 4.25, + "baseAttackSpeed": 1.399999976158142, + "bonusAttackReach": 0.0 + }, + "estoc": { + "enabled": true, + "baseAttackDamage": 4.099999904632568, + "baseAttackSpeed": 1.399999976158142, + "bonusAttackReach": 0.5 + }, + "messerSword": { + "enabled": true, + "baseAttackDamage": 3.4000000953674316, + "baseAttackSpeed": 1.5, + "bonusAttackReach": 0.0 + }, + "nobleSword": { + "enabled": true, + "baseAttackDamage": 4.25, + "baseAttackSpeed": 1.5099999904632568, + "bonusAttackReach": 0.0 + }, + "rustedBastardSword": { + "enabled": true, + "baseAttackDamage": 2.0, + "baseAttackSpeed": 1.5099999904632568, + "bonusAttackReach": 0.0 + }, + "ahlspiess": { + "enabled": true, + "baseAttackDamage": 2.799999952316284, + "baseAttackSpeed": 1.2799999713897705, + "bonusAttackReach": 1.0 + }, + "guisarme": { + "enabled": true, + "baseAttackDamage": 3.1500000953674316, + "baseAttackSpeed": 1.1200000047683716, + "bonusAttackReach": 1.899999976158142 + }, + "pike": { + "enabled": true, + "baseAttackDamage": 3.0, + "baseAttackSpeed": 1.1699999570846558, + "bonusAttackReach": 3.0 + }, + "pitchfork": { + "enabled": true, + "baseAttackDamage": 2.799999952316284, + "baseAttackSpeed": 1.100000023841858, + "bonusAttackReach": 2.0 + }, + "ranseur": { + "enabled": true, + "baseAttackDamage": 3.299999952316284, + "baseAttackSpeed": 1.1699999570846558, + "bonusAttackReach": 2.0 + }, + "katzbalger": { + "enabled": true, + "baseAttackDamage": 3.200000047683716, + "baseAttackSpeed": 1.649999976158142, + "bonusAttackReach": 0.0 + }, + "shortSword": { + "enabled": true, + "baseAttackDamage": 2.5, + "baseAttackSpeed": 1.7000000476837158, + "bonusAttackReach": 0.0 + } +} \ No newline at end of file diff --git a/config/etf_warnings.json b/config/etf_warnings.json new file mode 100644 index 0000000..972c737 --- /dev/null +++ b/config/etf_warnings.json @@ -0,0 +1,3 @@ +{ + "ignoredConfigIds": [] +} \ No newline at end of file diff --git a/config/explorerscompass.json b/config/explorerscompass.json new file mode 100644 index 0000000..8e86c0b --- /dev/null +++ b/config/explorerscompass.json @@ -0,0 +1,24 @@ +{ + "common": { + "allowTeleportComment": "Allows a player to teleport to a located structure when in creative mode, opped, or in cheat mode.", + "allowTeleport": true, + "displayCoordinatesComment": "Allows players to view the precise coordinates and distance of a located structure on the HUD, rather than relying on the direction the compass is pointing.", + "displayCoordinates": true, + "maxRadiusComment": "The maximum radius that will be searched for a structure. Raising this value will increase search accuracy but will potentially make the process more resource intensive.", + "maxRadius": 10000, + "maxSamplesComment": "The maximum number of samples to be taken when searching for a structure.", + "maxSamples": 100000, + "structureBlacklistComment": "A list of structures that the compass will not display in the GUI and will not be able to search for. The wildcard character * can be used to match any number of characters, and ? can be used to match one character. Ex (ignore backslashes): [\"minecraft:stronghold\", \"minecraft:endcity\", \"minecraft:*village*\"]", + "structureBlacklist": [] + }, + "client": { + "displayWithChatOpenComment": "Displays compass information even while chat is open.", + "displayWithChatOpen": true, + "translateStructureNamesComment": "Attempts to translate structure names before fixing the unlocalized names. Translations may not be available for all structures.", + "translateStructureNames": true, + "overlayLineOffsetComment": "The line offset for information rendered on the HUD.", + "overlayLineOffset": 1, + "overlaySideComment": "The side for information rendered on the HUD. Ex: LEFT, RIGHT", + "overlaySide": "LEFT" + } +} \ No newline at end of file diff --git a/config/fabric/indigo-renderer.properties b/config/fabric/indigo-renderer.properties new file mode 100644 index 0000000..09664c5 --- /dev/null +++ b/config/fabric/indigo-renderer.properties @@ -0,0 +1,9 @@ +#Indigo properties file +#Thu Aug 08 14:56:48 MDT 2024 +fix-mean-light-calculation=auto +debug-compare-lighting=auto +fix-exterior-vertex-lighting=auto +ambient-occlusion-mode=hybrid +always-tesselate-blocks=auto +fix-smooth-lighting-offset=auto +fix-luminous-block-ambient-occlusion=auto diff --git a/config/fallingtree.json b/config/fallingtree.json new file mode 100644 index 0000000..37853c8 --- /dev/null +++ b/config/fallingtree.json @@ -0,0 +1,50 @@ +{ + "trees": { + "allowedLogs": [], + "deniedLogs": [], + "allowedLeaves": [], + "allowedNonDecayLeaves": [], + "deniedLeaves": [], + "breakMode": "INSTANTANEOUS", + "detectionMode": "WHOLE_TREE", + "maxScanSize": 500, + "maxSize": 100, + "maxLeafDistanceFromLog": 15, + "maxSizeAction": "ABORT", + "breakOrder": "FURTHEST_FIRST", + "minimumLeavesAroundRequired": 1, + "includePersistentLeavesInRequiredCount": true, + "treeBreaking": true, + "leavesBreaking": true, + "leavesBreakingForceRadius": 0, + "allowMixedLogs": false, + "breakNetherTreeWarts": true, + "breakMangroveRoots": true, + "searchAreaRadius": -1, + "allowedAdjacentBlocks": [], + "adjacentStopMode": "STOP_ALL" + }, + "tools": { + "allowed": [], + "denied": [], + "preserve": false, + "ignoreTools": false, + "damageMultiplicand": 1.0, + "damageRounding": "ROUND_DOWN", + "speedMultiplicand": 0.0, + "forceToolUsage": false + }, + "player": { + "allowedTags": [] + }, + "enchantment": { + "registerEnchant": false, + "registerSpecificEnchant": false, + "hideEnchant": false, + "requireEnchantment": false + }, + "sneakMode": "SNEAK_DISABLE", + "breakInCreative": false, + "lootInCreative": true, + "notificationMode": "ACTION_BAR" +} \ No newline at end of file diff --git a/config/ferritecore.mixin.properties b/config/ferritecore.mixin.properties new file mode 100644 index 0000000..2e6759f --- /dev/null +++ b/config/ferritecore.mixin.properties @@ -0,0 +1,22 @@ +# Replace the blockstate neighbor table +replaceNeighborLookup = true +# Do not store the properties of a state explicitly and read themfrom the replace neighbor table instead. Requires replaceNeighborLookup to be enabled +replacePropertyMap = true +# Cache the predicate instances used in multipart models +cacheMultipartPredicates = true +# Avoid creation of new strings when creating ModelResourceLocations +modelResourceLocations = true +# Do not create a new MultipartBakedModel instance for each block state using the same multipartmodel. Requires cacheMultipartPredicates to be enabled +multipartDeduplication = true +# Deduplicate cached data for blockstates, most importantly collision and render shapes +blockstateCacheDeduplication = true +# Deduplicate vertex data of baked quads in the basic model implementations +bakedQuadDeduplication = true +# Use smaller data structures for "simple" models, especially models with few side-specific faces +modelSides = true +# Replace objects used to detect multi-threaded access to chunks by a much smaller field. This option is disabled by default due to very rare and very hard-to-reproduce crashes, use at your own risk! +useSmallThreadingDetector = false +# Use a slightly more compact, but also slightly slower representation for block states +compactFastMap = false +# Populate the neighbor table used by vanilla. Enabling this slightly increases memory usage, but can help with issues in the rare case where mods access it directly. +populateNeighborTable = false diff --git a/config/forgeconfigapiport.toml b/config/forgeconfigapiport.toml new file mode 100644 index 0000000..a5260ec --- /dev/null +++ b/config/forgeconfigapiport.toml @@ -0,0 +1,13 @@ +#When single config values need to be corrected (think like the config value is a number 1-10, but the user enters an incompatible input like '5.0', in that case only this single value needs fixing not the whole file), +#Forge restores the built-in default value for that option, but ignores a value that is set in a possibly present default config in 'defaultconfigs'. +#This option fixes this behavior and checks for a value in a default config from 'defaultconfigs' before falling back to the built-in default. +correctConfigValuesFromDefaultConfig = true +#Path to load default configs from, intended for setting global server configs for newly created worlds, but also works when recreating client and common configs. +defaultConfigsPath = "defaultconfigs" +#Config loading from a file config appears to occasionally fail and throw a com.electronwill.nightconfig.core.io.ParsingException: Not enough data available. +#This workaround catches the exception, and recreates a fresh file to try config loading for again. If loading fails for the new file the original exception is thrown. +#To make sure any required changes through configs stay intact through such recreations, placed your changed configs in the 'defaultconfigs' directory. +recreateConfigsWhenParsingFails = true +#Prevent server config files from being saved inside the current world directory. Instead, save them to the global config directory in .minecraft/config/. +#This option effectively disables per world server configs, but helps a lot with avoiding user confusion. +forceGlobalServerConfigs = true diff --git a/config/friendsandfoes.json b/config/friendsandfoes.json new file mode 100644 index 0000000..c583ae3 --- /dev/null +++ b/config/friendsandfoes.json @@ -0,0 +1,49 @@ +{ + "checkForNewUpdates": true, + "enableCopperGolem": true, + "generateCopperGolemAreaStructure": true, + "copperGolemAreaStructureWeight": 1, + "generateCopperGolemInAncientCity": true, + "copperGolemAncientCityCenterWeight": 10, + "enableGlare": true, + "enableGlareSpawn": true, + "enableGlareGriefing": true, + "glareSpawnWeight": 4, + "glareSpawnMinGroupSize": 1, + "glareSpawnMaxGroupSize": 1, + "enableMauler": true, + "enableMaulerSpawn": true, + "maulerDesertSpawnWeight": 8, + "maulerDesertSpawnMinGroupSize": 1, + "maulerDesertSpawnMaxGroupSize": 1, + "maulerBadlandsSpawnWeight": 16, + "maulerBadlandsSpawnMinGroupSize": 1, + "maulerBadlandsSpawnMaxGroupSize": 1, + "maulerSavannaSpawnWeight": 32, + "maulerSavannaSpawnMinGroupSize": 1, + "maulerSavannaSpawnMaxGroupSize": 1, + "enableMoobloom": true, + "enableMoobloomSpawn": true, + "moobloomSpawnWeight": 4, + "moobloomSpawnMinGroupSize": 2, + "moobloomSpawnMaxGroupSize": 4, + "enableIceologer": true, + "enableIceologerSpawn": true, + "enableIceologerInRaids": true, + "generateIceologerCabinStructure": true, + "enableIllusioner": true, + "enableIllusionerSpawn": true, + "enableIllusionerInRaids": true, + "generateIllusionerShackStructure": true, + "generateIllusionerTrainingGroundsStructure": true, + "enableZombieHorseTrap": true, + "enableRascal": true, + "enableRascalSpawn": true, + "enableTuffGolem": true, + "generateTuffGolemInStronghold": true, + "enableWildfire": true, + "generateCitadelStructure": true, + "enableBeekeeperVillagerProfession": true, + "generateBeekeeperAreaStructure": true, + "beekeeperAreaStructureWeight": 2 +} diff --git a/config/fwaystones/config.json5 b/config/fwaystones/config.json5 new file mode 100644 index 0000000..55e2fbf --- /dev/null +++ b/config/fwaystones/config.json5 @@ -0,0 +1,73 @@ +{ + "worldgen": { + "generate_in_villages": true, + "min_per_village": 1, + "max_per_village": 1, + "village_waystone_weight": 2 + }, + "teleportation_cost": { + "cost_type": "LEVEL", + "cost_item": "minecraft:ender_pearl", + "base_cost": 1, + "cost_per_block_distance": 0.0, + "cost_multiplier_between_dimensions": 1.0 + }, + "discover_with_item": "none", + "take_amount_from_discover_item": 0, + "consume_infinite_knowledge_scroll_on_use": false, + "consume_local_void_on_use": true, + "free_local_void_teleport": true, + "store_waystone_data_on_sneak_break": true, + "discover_waystone_on_map_use": false, + "can_owners_redeem_payments": false, + "waystone_block_hardness": 4.0, + "waystone_block_required_mining_level": 1, + "permission_level_for_breaking_waystones": "ANYONE", + "global_mode_toggle_permission_levels": "OWNER", + "teleportation_cooldown": { + "cooldown_ticks_when_hurt": 0, + "cooldown_ticks_from_abyss_watcher": 0, + "cooldown_ticks_from_pocket_wormhole": 0, + "cooldown_ticks_from_local_void": 0, + "cooldown_ticks_from_void_totem": 0, + "cooldown_ticks_from_waystone": 0 + }, + "disable_teleportation_from_dimensions": [], + "disable_teleportation_to_dimensions": [], + "ignore_dimension_blacklists_if_same_dimension": true, + "add_waystone_structure_piece": { + "minecraft:village/desert/houses": "desert_village_waystone", + "minecraft:village/savanna/houses": "village_waystone", + "minecraft:village/plains/houses": "village_waystone", + "minecraft:village/taiga/houses": "village_waystone", + "minecraft:village/snowy/houses": "village_waystone", + // These are all of our villages where a waystone is added. If you also want to use T&T with another mod that also adds compat with the waystone mod, just paste what is below this message all the way down to the "/*" sign // + "kaisyn:village/badlands_pueblo/houses": "village_waystone", + "kaisyn:village/beach_lighthouse/side/cross": "village_waystone", + "kaisyn:village/birch_forest_romanian/houses": "village_waystone", + "kaisyn:village/flower_forest_japanese/houses": "village_waystone", + "kaisyn:village/grove_villager_outpost/decor": "village_waystone", + "kaisyn:village/jungle_tribal/houses": "village_waystone", + "kaisyn:village/meadow_swiss/houses": "village_waystone", + "kaisyn:village/mushroom_fields_fantasy/houses": "village_waystone", + "kaisyn:village/old_growth_taiga_polish/houses": "village_waystone", + "kaisyn:village/snowy_slopes_inn/decor": "village_waystone", + "kaisyn:village/snowy_taiga_viking/houses": "village_waystone", + "kaisyn:village/sparse_jungle_polynesian/houses": "village_waystone", + "kaisyn:village/sunflower_plains_farm/side/farms": "village_waystone", + "kaisyn:village/swamp_boat/houses": "village_waystone", + "kaisyn:village/exclusives/iberian/houses": "village_waystone", + "kaisyn:village/exclusives/mediterranean/houses/regular": "village_waystone", + "kaisyn:village/exclusives/rustic/houses": "village_waystone", + "kaisyn:village/exclusives/swedish/houses": "village_waystone", + "kaisyn:village/exclusives/tudor/houses": "village_waystone" + /* + The following villages don't have a waystone added either because they are too small or the terrain in these villages would cause problems: + - Ocean village (Villager Fleet) + - Wooded Badlands Village (Tipi camp) + - Classic (Pre-1.14) Village (exclusive structure + - Wandering Trader Camp (exclusive structure) + - Nilotic Village (exclusive structure) + */ + } +} \ No newline at end of file diff --git a/config/fzzy_core/README.txt b/config/fzzy_core/README.txt new file mode 100644 index 0000000..ae765b9 --- /dev/null +++ b/config/fzzy_core/README.txt @@ -0,0 +1,16 @@ +README +Fzzy Core +------------------ + +This Readme is for config options related to the Fzzy Core library. To learn more about the functionality of Fzzy Core, go to the github Wiki or check out the codes KDoc + + +Flavors Config: +The flavors config sets how advanced flavor descriptions will appear in-game. For library users, advanced flavor descriptions are used to describe in plain words what a flavor text is inferring. + +> showFlavorDesc: when set to true, flavor descriptions will always show in tooltips directly below the flavor text +> showFlavorDescOnAdvanced: when set to true, flavor descriptions will show when advanced tooltips are selected. NOTE: showFlavorDesc overrides this functionality and will show the desc. no matter what. + +To always show flavor descriptions: showFlavorDesc: true; showFlavorDescOnAdvanced: any +To show descriptions only on advanced tooltips (default): showFlavorDesc: false; showFlavorDescOnAdvanced: false +To never show descriptions: showFlavorDesc: false; showFlavorDescOnAdvanced: false diff --git a/config/fzzy_core/flavors_v0.json b/config/fzzy_core/flavors_v0.json new file mode 100644 index 0000000..4ac9c32 --- /dev/null +++ b/config/fzzy_core/flavors_v0.json @@ -0,0 +1,4 @@ +{ + "showFlavorDesc": false, + "showFlavorDescOnAdvanced": true +} \ No newline at end of file diff --git a/config/gazebo/villages.json b/config/gazebo/villages.json new file mode 100644 index 0000000..17a2568 --- /dev/null +++ b/config/gazebo/villages.json @@ -0,0 +1,54 @@ +{ + "entries": [ + { + "pool": "minecraft:village/desert/houses", + "structures": [ + { + "id": "gazebo:village/desert/gazebo", + "weight": 5, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/savanna/houses", + "structures": [ + { + "id": "gazebo:village/savanna/gazebo", + "weight": 5, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/plains/houses", + "structures": [ + { + "id": "gazebo:village/plains/gazebo", + "weight": 5, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/taiga/houses", + "structures": [ + { + "id": "gazebo:village/taiga/gazebo", + "weight": 3, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/snowy/houses", + "structures": [ + { + "id": "gazebo:village/snowy/gazebo", + "weight": 5, + "limit": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/config/grapplemod.json b/config/grapplemod.json new file mode 100644 index 0000000..ee7a03d --- /dev/null +++ b/config/grapplemod.json @@ -0,0 +1,289 @@ +{ + "options": { + "grapplinghook": { + "custom": { + "rope": { + "maxlen": { + "default_value": 30.0, + "enabled": 0, + "max": 60.0, + "max_upgraded": 200.0, + "min": 0.0, + "min_upgraded": 0.0 + }, + "phaserope": { + "default_value": false, + "enabled": 0 + }, + "sticky": { + "default_value": false, + "enabled": 0 + } + }, + "hookthrower": { + "hookgravity": { + "default_value": 1.0, + "enabled": 0, + "max": 100.0, + "max_upgraded": 100.0, + "min": 1.0, + "min_upgraded": 0.0 + }, + "throwspeed": { + "default_value": 2.0, + "enabled": 0, + "max": 5.0, + "max_upgraded": 20.0, + "min": 0.0, + "min_upgraded": 0.0 + }, + "reelin": { + "default_value": true, + "enabled": 0 + }, + "verticalthrowangle": { + "default_value": 0.0, + "enabled": 0, + "max": 45.0, + "max_upgraded": 90.0, + "min": 0.0, + "min_upgraded": 0.0 + }, + "sneakingverticalthrowangle": { + "default_value": 0.0, + "enabled": 0, + "max": 45.0, + "max_upgraded": 90.0, + "min": 0.0, + "min_upgraded": 0.0 + }, + "detachonkeyrelease": { + "default_value": false, + "enabled": 0 + } + }, + "motor": { + "motor": { + "default_value": false, + "enabled": 0 + }, + "motormaxspeed": { + "default_value": 4.0, + "enabled": 0, + "max": 4.0, + "max_upgraded": 10.0, + "min": 0.0, + "min_upgraded": 0.0 + }, + "motoracceleration": { + "default_value": 0.2, + "enabled": 0, + "max": 0.2, + "max_upgraded": 1.0, + "min": 0.0, + "min_upgraded": 0.0 + }, + "motorwhencrouching": { + "default_value": false, + "enabled": 0 + }, + "motorwhennotcrouching": { + "default_value": true, + "enabled": 0 + }, + "smartmotor": { + "default_value": false, + "enabled": 0 + }, + "motordampener": { + "default_value": false, + "enabled": 1 + }, + "pullbackwards": { + "default_value": true, + "enabled": 0 + } + }, + "swing": { + "playermovementmult": { + "default_value": 1.0, + "enabled": 0, + "max": 2.0, + "max_upgraded": 5.0, + "min": 0.0, + "min_upgraded": 0.0 + } + }, + "enderstaff": { + "enderstaff": { + "default_value": false, + "enabled": 0 + } + }, + "forcefield": { + "repel": { + "default_value": false, + "enabled": 0 + }, + "repelforce": { + "default_value": 1.0, + "enabled": 0, + "max": 1.0, + "max_upgraded": 5.0, + "min": 0.0, + "min_upgraded": 0.0 + } + }, + "magnet": { + "attract": { + "default_value": false, + "enabled": 0 + }, + "attractradius": { + "default_value": 3.0, + "enabled": 0, + "max": 3.0, + "max_upgraded": 10.0, + "min": 0.0, + "min_upgraded": 0.0 + } + }, + "doublehook": { + "doublehook": { + "default_value": false, + "enabled": 0 + }, + "smartdoublemotor": { + "default_value": true, + "enabled": 0 + }, + "angle": { + "default_value": 20.0, + "enabled": 0, + "max": 45.0, + "max_upgraded": 90.0, + "min": 0.0, + "min_upgraded": 0.0 + }, + "sneakingangle": { + "default_value": 10.0, + "enabled": 0, + "max": 45.0, + "max_upgraded": 90.0, + "min": 0.0, + "min_upgraded": 0.0 + }, + "oneropepull": { + "default_value": false, + "enabled": 0 + } + }, + "rocket": { + "rocketenabled": { + "default_value": false, + "enabled": 0 + }, + "rocket_force": { + "default_value": 1.0, + "enabled": 0, + "max": 1.0, + "max_upgraded": 5.0, + "min": 0.0, + "min_upgraded": 0.0 + }, + "rocket_active_time": { + "default_value": 0.5, + "enabled": 0, + "max": 0.5, + "max_upgraded": 20.0, + "min": 0.0, + "min_upgraded": 0.0 + }, + "rocket_refuel_ratio": { + "default_value": 15.0, + "enabled": 0, + "max": 30.0, + "max_upgraded": 30.0, + "min": 15.0, + "min_upgraded": 1.0 + }, + "rocket_vertical_angle": { + "default_value": 0.0, + "enabled": 0, + "max": 90.0, + "max_upgraded": 90.0, + "min": 0.0, + "min_upgraded": 0.0 + } + } + }, + "blocks": { + "grapplingBlocks": "any", + "grapplingNonBlocks": "none", + "grappleBreakBlocks": "none" + }, + "other": { + "hookaffectsentities": true, + "rope_snap_buffer": 5.0, + "default_durability": 500, + "rope_jump_power": 1.0, + "rope_jump_at_angle": false, + "rope_jump_cooldown_s": 0.0, + "climb_speed": 0.3 + } + }, + "longfallboots": { + "longfallbootsrecipe": true + }, + "enderstaff": { + "ender_staff_strength": 1.5, + "ender_staff_recharge": 100 + }, + "enchantments": { + "wallrun": { + "wall_jump_up": 0.7, + "wall_jump_side": 0.4, + "max_wallrun_time": 3.0, + "wallrun_speed": 0.1, + "wallrun_max_speed": 0.7, + "wallrun_drag": 0.01, + "wallrun_min_speed": 0.0, + "enchant_rarity_wallrun": 0 + }, + "doublejump": { + "doublejumpforce": 0.8, + "doublejump_relative_to_falling": false, + "dont_doublejump_if_falling_faster_than": 9.9999999E7, + "enchant_rarity_double_jump": 0 + }, + "slide": { + "slidingjumpforce": 0.6, + "sliding_friction": 0.006666666828095913, + "sliding_min_speed": 0.15, + "sliding_end_min_speed": 0.01, + "enchant_rarity_sliding": 0 + } + }, + "other": { + "override_allowflight": true, + "airstrafe_max_speed": 0.7, + "airstrafe_acceleration": 0.015, + "dont_override_movement_in_air": false + } + }, + "clientOptions": { + "camera": { + "wallrun_camera_tilt_degrees": 10.0, + "wallrun_camera_animation_s": 0.5 + }, + "sounds": { + "wallrun_sound_effect_time_s": 0.35, + "wallrun_sound_volume": 1.0, + "doublejump_sound_volume": 1.0, + "slide_sound_volume": 1.0, + "wallrunjump_sound_volume": 1.0, + "rocket_sound_volume": 1.0, + "enderstaff_sound_volume": 1.0 + } + } +} \ No newline at end of file diff --git a/config/graveyard/the-graveyard-3.0-config.json5 b/config/graveyard/the-graveyard-3.0-config.json5 new file mode 100644 index 0000000..8547506 --- /dev/null +++ b/config/graveyard/the-graveyard-3.0-config.json5 @@ -0,0 +1,201 @@ +{ + /* Welcome to The Graveyard Config! + + Structures: + Enable or disable structure spawns. + + Mobs: + Configure if mobs burn in sunlight and/or if mobs are affected by the wither effect (all graveyard mobs). + Configure the biomes, in which graveyard mobs spawn. + Fabric: + Configure spawning weight and group size of the spawn (ghoul, revenant, nightmare, skeleton creeper). + Forge: + To configure spawning weight and group size, change the .json files in data/graveyard/forge/biome_modifiers. + + + Additional: + Configure graveyard fog particles rising from moss and set the chance of spawning them (higher numbers = lower chance of spawning). + Configure if hordes of graveyard mobs can spawn and set their size and frequency. + Configure if urns have a double chest inventory. + Configure if the wither skeleton spawner in the large graveyard will be replaced by a skeleton spawner. + +*/ + "structureConfigEntries": { + "small_grave": { + "enabled": true + }, + "crypt": { + "enabled": true + }, + "small_graveyard": { + "enabled": true + }, + "small_desert_grave": { + "enabled": true + }, + "memorial_tree": { + "enabled": true + }, + "small_desert_graveyard": { + "enabled": true + }, + "large_graveyard": { + "enabled": true + }, + "small_savanna_grave": { + "enabled": true + }, + "mushroom_grave": { + "enabled": true + }, + "haunted_house": { + "enabled": true + }, + "giant_mushroom": { + "enabled": true + }, + "altar": { + "enabled": true + }, + "ruins": { + "enabled": true + }, + "medium_graveyard": { + "enabled": true + }, + "lich_prison": { + "enabled": true + }, + "dead_tree": { + "enabled": true + }, + "small_mountain_grave": { + "enabled": true + } + }, + "particleConfigEntries": { + "graveyard_fog_particle": { + "canGenerate": true, + "spawnChance": 50 + } + }, + "mobConfigEntries": { + "acolyte": { + "enabled": false, + "weight": 0, + "minGroup": 0, + "maxGroup": 0, + "canBurnInSunlight": false, + "canBeWithered": false + }, + "revenant": { + "enabled": true, + "weight": 25, + "minGroup": 5, + "maxGroup": 8, + "canBurnInSunlight": true, + "canBeWithered": false + }, + "wraith": { + "enabled": false, + "weight": 0, + "minGroup": 0, + "maxGroup": 0, + "canBurnInSunlight": true, + "canBeWithered": false + }, + "corrupted_vindicator": { + "enabled": false, + "weight": 0, + "minGroup": 0, + "maxGroup": 0, + "canBurnInSunlight": true, + "canBeWithered": false + }, + "skeleton_creeper": { + "enabled": true, + "weight": 25, + "minGroup": 1, + "maxGroup": 4, + "canBurnInSunlight": true, + "canBeWithered": false + }, + "corrupted_pillager": { + "enabled": false, + "weight": 0, + "minGroup": 0, + "maxGroup": 0, + "canBurnInSunlight": true, + "canBeWithered": false + }, + "ghoul": { + "enabled": true, + "weight": 25, + "minGroup": 2, + "maxGroup": 5, + "canBurnInSunlight": true, + "canBeWithered": false + }, + "reaper": { + "enabled": true, + "weight": 5, + "minGroup": 2, + "maxGroup": 3, + "canBurnInSunlight": true, + "canBeWithered": false + }, + "nightmare": { + "enabled": true, + "weight": 10, + "minGroup": 1, + "maxGroup": 1, + "canBurnInSunlight": false, + "canBeWithered": false + } + }, + "hordeConfigEntries": { + "horde_spawn": { + "enabled": true, + "mobSpawnAttempts": 40, + "ticksUntilNextSpawn": 24000, + "additionalRandomizedTicks": 1200 + } + }, + "corruptedChampionConfigEntries": { + "corrupted_champion": { + "healthInCastingPhase": 400.0, + "healthInHuntingPhase": 200.0, + "damageCastingPhase": 30.0, + "damageHuntingPhaseAddition": 40.0, + "armor": 14.0, + "armorToughness": 12.0, + "speedInHuntPhase": 0.15, + "durationHuntingPhase": 800, + "durationFallingCorpseSpell": 400, + "durationHealingSpell": 700, + "durationLevitationSpell": 150, + "maxAmountSkullsInShootSkullSpell": 5, + "maxSummonedMobs": 30, + "maxGroupSizeSummonedMobs": 5, + "ghoulSpawnTimerInFight": 6000, + "isBloodCollectableEntity": [ + "entity.minecraft.villager" + ], + "isBossSummonableItem": [ + "item.minecraft.debug_stick" + ], + "summoningNeedsStaffFragments": true, + "isMultiphaseFight": true, + "isInvulnerableDuringSpells": true, + "cooldownCorpseSpell": 400, + "cooldownTeleportPlayerAndHeal": 600, + "cooldownLevitationSpell": 400, + "playerTeleportYOffset": -15 + } + }, + "booleanEntries": { + "disableWitherSkeletonSpawner": false, + "urnHasDoubleInventory": true, + "enableBossMusic": true + } +} diff --git a/config/guardvillagers.json b/config/guardvillagers.json new file mode 100644 index 0000000..b31c7bd --- /dev/null +++ b/config/guardvillagers.json @@ -0,0 +1,30 @@ +{ + "reputationRequirementToBeAttacked": -100, + "reputationRequirement": 15, + "guardEntitysRunFromPolarBears": false, + "guardEntitysOpenDoors": true, + "guardEntityFormation": true, + "clericHealing": true, + "armorerRepairGuardEntityArmor": true, + "attackAllMobs": false, + "guardAlwaysShield": false, + "friendlyFire": true, + "mobBlackList": [], + "amountOfHealthRegenerated": 1.0, + "followHero": true, + "healthModifier": 20.0, + "speedModifier": 0.5, + "followRangeModifier": 20.0, + "giveGuardStuffHotv": false, + "setGuardPatrolHotv": false, + "chanceToDropEquipment": 100.0, + "useSteveModel": false, + "raidAnimals": false, + "witchesVillager": true, + "blackSmithHealing": true, + "convertVillagerIfHaveHotv": false, + "guardVillagerHelpRange": 50.0, + "illagersRunFromPolarBears": true, + "villagersRunFromPolarBears": true, + "guardArrowsHurtVillagers": true +} \ No newline at end of file diff --git a/config/immediatelyfast.json b/config/immediatelyfast.json new file mode 100644 index 0000000..194acbf --- /dev/null +++ b/config/immediatelyfast.json @@ -0,0 +1,23 @@ +{ + "REGULAR_INFO": "----- Regular config values below -----", + "font_atlas_resizing": true, + "map_atlas_generation": true, + "hud_batching": true, + "fast_text_lookup": true, + "fast_buffer_upload": true, + "fast_buffer_upload_size_mb": 256, + "fast_buffer_upload_explicit_flush": true, + "COSMETIC_INFO": "----- Cosmetic only config values below (Does not optimize anything) -----", + "dont_add_info_into_debug_hud": false, + "EXPERIMENTAL_INFO": "----- Experimental config values below (Rendering glitches may occur) -----", + "experimental_disable_error_checking": false, + "experimental_disable_resource_pack_conflict_handling": false, + "experimental_sign_text_buffering": false, + "experimental_screen_batching": false, + "DEBUG_INFO": "----- Debug only config values below (Do not touch) -----", + "debug_only_and_not_recommended_disable_universal_batching": false, + "debug_only_and_not_recommended_disable_mod_conflict_handling": false, + "debug_only_and_not_recommended_disable_hardware_conflict_handling": false, + "debug_only_print_additional_error_information": false, + "debug_only_use_last_usage_for_batch_ordering": false +} \ No newline at end of file diff --git a/config/immersive_armors.json b/config/immersive_armors.json new file mode 100644 index 0000000..4dc5157 --- /dev/null +++ b/config/immersive_armors.json @@ -0,0 +1,17 @@ +{ + "hideSecondLayerUnderArmor": true, + "enableEffects": true, + "enableEnchantmentGlint": true, + "_documentation": "https://github.com/Luke100000/ImmersiveArmors/blob/HEAD/config.md", + "hudClockX": -111, + "hudClockXOffhand": -140, + "hudClockY": -20, + "hudCompassX": 95, + "hudCompassXOffhand": 124, + "hudCompassY": -20, + "lootChance": 0.025, + "mobEntityUseImmersiveArmorChance": 0.5, + "overwriteValues": {}, + "enabledArmors": {}, + "version": 1 +} \ No newline at end of file diff --git a/config/immersive_mc.toml b/config/immersive_mc.toml new file mode 100644 index 0000000..b15fdfd --- /dev/null +++ b/config/immersive_mc.toml @@ -0,0 +1,120 @@ +#Whether immersives on anvils should be allowed +anvil_immersion = true +#Whether immersives on brewing stands should be allowed +brewing_immersion = true +#Whether immersives on all types of chests should be allowed. Unless users enable right_click_chest, this is VR only. +chest_immersion = true +#Whether immersives on crafting tables should be allowed +crafting_immersion = true +#Whether immersives on furnaces should be allowed +furnace_immersion = true +#Whether immersives on jukeboxes should be allowed (VR only) +jukebox_immersion = true +#Allow VR users to grab items at a distance. +ranged_grab = true +#Whether VR users can physically push buttons +button_immersion = true +#Whether immersives on Enchanting Tables should be allowed +enchant_table_immersion = true +#Whether VR users can hold items above a campfire to cook them +campfire_immersion = true +#Whether VR users can physically toggle levers +lever_immersion = true +#Allow VR players to use a bag to manage their inventory +bag_inventory = true +#Whether VR users can adjust the delay of repeaters using their hands +repeater_immersion = true +#Whether VR users can open/close doors and fence gates using their hands +door_immersion = true +#Whether VR users can pet animals they've tamed (or animals that are tamed for all once tamed, like horses) +can_pet = true +#Whether VR users can equip armor by placing the armor on them +armor_immersion = true +#Whether VR users can feed animals using both hands +feed_animals = true +#Whether immersives on Shulker Boxes should be allowed +shulker_box_immersion = true +#Whether VR players can pet any living entity instead of just pets that they're owners of. Requires 'can_pet' to be enabled! +can_pet_any_living = false +#Whether VR users can use a more immersive shield. They only need to hold a shield in the direction to block, no need to right click! +immersive_shield = true +#Range in blocks that VR players can pick up items using ranged grab. Set to -1 to use Minecraft's pick range. +#Range: -1 ~ 12 +ranged_grab_range = 8 +#Whether immersives on beacons should be allowed +beacon_immersion = true +#Whether immersives on barrels should be allowed +barrel_immersion = true +#Whether VR users can throw items based on the speed of their hand +use_throwing = true +#Whether VR throwing users can throw up to 5% beyond the velocity of non-VR users depending on how hard they throw +allow_throwing_beyond_max = true +#Whether immersives on hoppers should be allowed. +hopper_immersion = true +#Whether immersives for smithing tables should be allowed. +smithing_table_immersion = true +#Whether immersives for chiseled bookshelves should be allowed. +chiseled_bookshelf_immersion = true +#Whether immersives for written books should be allowed. +written_book_immersion = true +#Whether immersives for cauldrons should be allowed. +cauldron_immersion = true +#Whether immersives for furnaces from Iron Furnaces should be allowed. +iron_furnaces_furnace_immersion = true +#Whether immersives for the crafting station from Tinkers' Construct should be allowed. +tinkers_construct_crafting_station_immersion = true +#Allow users to crouch + right-click to bypass immersives. +crouch_bypass_immersion = false +#Do controller rumble for ImmersiveMC actions. +do_rumble = true +#Return items to oneself when walking away from immersives that items tend to not be stored in. +return_items = true +#Disables all of ImmersiveMC when not in VR. +disable_outside_vr = false +#Color for the bag as a base-10 RGB number. +#Range: 0 ~ 16777215 +bag_color = 11901820 +#Allows for right-clicking chests to use their immersive. Works outside of VR! +right_click_chest = false +#Makes the furnace immersive more centered instead of similar to the vanilla GUI +center_furnace = false +#Makes the brewing stand more centered instead of similar to the vanilla GUI +center_brewing = false +#Which bag type to display +#Range: 0 ~ 3 +bag_mode = 0 +#The mode for the placement guide +#Range: 0 ~ 2 +placement_guide_mode = 0 +#Integer representation for the mode to use when placing items using ImmersiveMC +#Range: 0 ~ 3 +placement_mode = 0 +#Whether the item output of a crafting table should spin +spin_crafting_output = true +#Allow right-clicking immersives in VR, like how NonVR users do. +right_click_in_vr = false +#Enables compatability for 3D resource packs like Classic 3D (16x) +resource_pack_3d_compat = false +#The size of item guides that aren't selected by the player +#Range: 0.0 ~ 1.0 +item_guide_size = 1.0 +#The size of item guides that are selected by the player +#Range: 0.0 ~ 1.0 +item_guide_selected_size = 1.0 +#Color for the item guides that help with item placement (aqua by default). +#Range: 0 ~ 4294967295 +item_guide_color = 855703551 +#Color for the item guides that help with item placement when hovered over (green by default). +#Range: 0 ~ 4294967295 +item_guide_selected_color = 855703296 +#Color for the particles shown when grabbing items from range (aqua by default). +#Range: 0 ~ 4294967295 +ranged_grab_color = 4278255615 +#Disable vanilla GUIs when their respective immersive is enabled +disable_vanilla_interactions = false +#Reach behind bag mode. +#Range: 0 ~ 3 +reach_behind_bag_mode = 0 +#!!!!DON'T TOUCH!!!! Version number for this configuration file! Do not change! It is used by ImmersiveMC to track config updates so it can automatically update your configuration files when needed! +#Range: > 1 +config_version = 1 diff --git a/config/indium-renderer.properties b/config/indium-renderer.properties new file mode 100644 index 0000000..0e8c037 --- /dev/null +++ b/config/indium-renderer.properties @@ -0,0 +1,4 @@ +#Indium properties file +#Thu Aug 08 14:56:48 MDT 2024 +ambient-occlusion-mode=auto +always-tesselate-blocks=auto diff --git a/config/inventorysorter/blacklist.json5 b/config/inventorysorter/blacklist.json5 new file mode 100644 index 0000000..ad7e441 --- /dev/null +++ b/config/inventorysorter/blacklist.json5 @@ -0,0 +1,8 @@ +{ + // URL for blacklist to be downloaded from + "blacklistDownloadURL": "https://raw.githubusercontent.com/kyrptonaught/Inventory-Sorter/1.19/DownloadableBlacklist.json5", + // The opened inventory's sort button will not be visible, only the player's when this inventory is opened + "doNotSortList": [], + // Neither the opened inventory, nor your player inventory will be sortable when this inventory is opened + "hideSortBtnsList": [] +} \ No newline at end of file diff --git a/config/inventorysorter/config.json5 b/config/inventorysorter/config.json5 new file mode 100644 index 0000000..4cdaf3c --- /dev/null +++ b/config/inventorysorter/config.json5 @@ -0,0 +1,21 @@ +{ + // Enable 'Sort' button in inventorys + "displaySort": true, + // Middle click slot to sort inventorys + "middleClick": true, + // Double click slot to sort inventorys + "doubleClickSort": true, + // Enable second 'Sort' button in player inv + "seperateBtn": true, + // Sorting inv also sorts player inv + "sortPlayer": false, + // Method of sorting, NAME,CATEGORY,MOD + "sortType": "NAME", + // Display Sort Button Tooltip + "displayTooltip": true, + // Sort Inventory key + "keybinding": "key.keyboard.p", + // Should sort half of open inv highlighted by mouse + "sortMouseHighlighted": true, + "debugMode": false +} \ No newline at end of file diff --git a/config/iris.properties b/config/iris.properties new file mode 100644 index 0000000..244cb85 --- /dev/null +++ b/config/iris.properties @@ -0,0 +1,8 @@ +#This file stores configuration options for Iris, such as the currently active shaderpack +#Thu Aug 08 14:56:52 MDT 2024 +colorSpace=SRGB +disableUpdateMessage=false +enableDebugOptions=false +maxShadowRenderDistance=32 +shaderPack= +enableShaders=true diff --git a/config/jade/hide-blocks.json b/config/jade/hide-blocks.json new file mode 100644 index 0000000..234be58 --- /dev/null +++ b/config/jade/hide-blocks.json @@ -0,0 +1,6 @@ +{ + "__comment": "This is a blocklist for the target of Jade. You can add registry ids to the \"values\" list. Restart the game to apply changes.", + "values": [ + "minecraft:barrier" + ] +} \ No newline at end of file diff --git a/config/jade/hide-entities.json b/config/jade/hide-entities.json new file mode 100644 index 0000000..42747f4 --- /dev/null +++ b/config/jade/hide-entities.json @@ -0,0 +1,10 @@ +{ + "__comment": "This is a blocklist for the target of Jade. You can add registry ids to the \"values\" list. Restart the game to apply changes.", + "values": [ + "minecraft:area_effect_cloud", + "minecraft:firework_rocket", + "minecraft:interaction", + "minecraft:text_display", + "minecraft:lightning_bolt" + ] +} \ No newline at end of file diff --git a/config/jade/jade.json b/config/jade/jade.json new file mode 100644 index 0000000..7a5cee8 --- /dev/null +++ b/config/jade/jade.json @@ -0,0 +1,41 @@ +{ + "general": { + "debug": false, + "itemModNameTooltip": true, + "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.7, + "iconMode": "TOP", + "animation": true, + "disappearingDelay": 0.0, + "overlaySquare": false, + "flipMainHand": false, + "autoScaleThreshold": 0.4, + "overlayPosY": 1.0, + "overlayScale": 1.0, + "overlayAnchorX": 0.5, + "overlayAnchorY": 0.0, + "activeTheme": "jade:dark", + "themesHash": -328442023, + "overlayPosX": 0.5 + }, + "formatting": { + "modName": "§9§o%s" + } +} \ No newline at end of file diff --git a/config/jade/plugins.json b/config/jade/plugins.json new file mode 100644 index 0000000..7d40e79 --- /dev/null +++ b/config/jade/plugins.json @@ -0,0 +1,69 @@ +{ + "minecraft": { + "item_storage.show_name_amount": 5, + "furnace": true, + "harvest_tool.show_unbreakable": false, + "animal_owner": true, + "harvest_tool.effective_tool": true, + "item_storage.normal_amount": 9, + "item_storage": true, + "harvest_tool": true, + "armor_stand": true, + "fluid_storage.detailed": false, + "energy_storage": true, + "entity_armor.max_for_render": 40, + "breaking_progress": true, + "tnt_stability": true, + "item_storage.items_per_line": 9, + "item_frame": true, + "crop_progress": true, + "command_block": true, + "mob_growth": true, + "harvest_tool.new_line": false, + "entity_health.max_for_render": 40, + "entity_health.show_fractions": false, + "mob_spawner": true, + "redstone": true, + "fluid_storage": true, + "chicken_egg": true, + "jukebox": true, + "brewing_stand": true, + "energy_storage.detailed": false, + "note_block": true, + "beehive": true, + "item_storage.detailed_amount": 54, + "player_head": true, + "block_states": false, + "lectern": true, + "entity_armor": true, + "harvest_tool.creative": false, + "horse_stats": true, + "item_tooltip": true, + "entity_health": true, + "enchantment_power": true, + "zombie_villager": true, + "villager_profession": true, + "mob_breeding": true, + "entity_health.icons_per_line": 10, + "total_enchantment_power": true, + "potion_effects": true, + "painting": true, + "chiseled_bookshelf": true + }, + "zenith": { + "adventure": true, + "ench": true, + "spawner": true + }, + "jade": { + "coordinates.rel": false, + "distance": false, + "block_face": false, + "coordinates": false, + "registry_name": "OFF", + "mod_name": true + }, + "waystones": { + "waystone": true + } +} \ No newline at end of file diff --git a/config/jade/sort-order.json b/config/jade/sort-order.json new file mode 100644 index 0000000..845e38f --- /dev/null +++ b/config/jade/sort-order.json @@ -0,0 +1,51 @@ +{ + "jade:block_face": null, + "jade:distance": null, + "jade:mod_name": null, + "jade:object_name": null, + "jade:registry_name": null, + "minecraft:animal_owner": null, + "minecraft:armor_stand": null, + "minecraft:beehive": null, + "minecraft:block_display": null, + "minecraft:block_states": null, + "minecraft:brewing_stand": null, + "minecraft:campfire": null, + "minecraft:chicken_egg": null, + "minecraft:chiseled_bookshelf": null, + "minecraft:command_block": null, + "minecraft:crop_progress": null, + "minecraft:enchantment_power": null, + "minecraft:energy_storage": null, + "minecraft:entity_armor": null, + "minecraft:entity_health": null, + "minecraft:falling_block": null, + "minecraft:fluid_storage": null, + "minecraft:furnace": null, + "minecraft:harvest_tool": null, + "minecraft:horse_stats": null, + "minecraft:item_ber": null, + "minecraft:item_display": null, + "minecraft:item_frame": null, + "minecraft:item_storage": null, + "minecraft:item_tooltip": null, + "minecraft:jukebox": null, + "minecraft:lectern": null, + "minecraft:mob_breeding": null, + "minecraft:mob_growth": null, + "minecraft:mob_spawner": null, + "minecraft:note_block": null, + "minecraft:painting": null, + "minecraft:player_head": null, + "minecraft:potion_effects": null, + "minecraft:progress": null, + "minecraft:redstone": null, + "minecraft:tnt_stability": null, + "minecraft:total_enchantment_power": null, + "minecraft:villager_profession": null, + "minecraft:zombie_villager": null, + "waystones:waystone": null, + "zenith:adventure": null, + "zenith:ench": null, + "zenith:spawner": null +} \ No newline at end of file diff --git a/config/jade/usernamecache.json b/config/jade/usernamecache.json new file mode 100644 index 0000000..cd27633 --- /dev/null +++ b/config/jade/usernamecache.json @@ -0,0 +1,4 @@ +{ + "7c262ec9-cb1f-4063-b903-8b2f6a75c07d": "Sneed", + "ee8e9e4a-bbe6-4b6b-9b4a-d7856bc02b34": "hiiina" +} \ No newline at end of file diff --git a/config/jei/blacklist.cfg b/config/jei/blacklist.cfg new file mode 100644 index 0000000..e69de29 diff --git a/config/jei/ingredient-list-mod-sort-order.ini b/config/jei/ingredient-list-mod-sort-order.ini new file mode 100644 index 0000000..1c23003 --- /dev/null +++ b/config/jei/ingredient-list-mod-sort-order.ini @@ -0,0 +1,27 @@ +Minecraft +AdventureZ +Archers (RPG Series) +Artifacts +FTB Quests +Friends&Foes +Gliders +GuardVillagers +Jewelry (RPG Series) +Macaw's Bridges +Macaw's Doors +Macaw's Fences and Walls +Macaw's Furniture +Macaw's Lights and Lamps +Macaw's Paths and Pavings +Macaw's Roofs +Macaw's Trapdoors +Macaw's Windows +Paladins & Priests (RPG Series) +Rogues & Warriors (RPG Series) +Runes +Small Ships +Spell Engine +Valentine's Blessing +Waystones +Wizards (RPG Series) +Zenith diff --git a/config/jei/ingredient-list-type-sort-order.ini b/config/jei/ingredient-list-type-sort-order.ini new file mode 100644 index 0000000..f7523ae --- /dev/null +++ b/config/jei/ingredient-list-type-sort-order.ini @@ -0,0 +1,2 @@ +net.minecraft.class_1799 +mezz.jei.api.fabric.ingredients.fluids.IJeiFluidIngredient diff --git a/config/jei/jei-client.ini b/config/jei/jei-client.ini new file mode 100644 index 0000000..89e14b9 --- /dev/null +++ b/config/jei/jei-client.ini @@ -0,0 +1,211 @@ +[appearance] + # Description: Display search bar in the center + # Valid Values: [true, false] + # Default Value: false + CenterSearch = false + + # Description: Max. recipe gui height + # Valid Values: Any integer greater than or equal to 175 + # Default Value: 350 + RecipeGuiHeight = 350 + + +[cheat_mode] + # Description: How items should be handed to you + # Valid Values: [INVENTORY, MOUSE_PICKUP] + # Default Value: MOUSE_PICKUP + GiveMode = MOUSE_PICKUP + + # Description: Enable cheating items into the hotbar by using the shift+number keys. + # Valid Values: [true, false] + # Default Value: false + CheatToHotbarUsingHotkeysEnabled = false + + # Description: Enable showing items that are not in the creative menu. + # Valid Values: [true, false] + # Default Value: false + ShowHiddenItems = false + + +[bookmarks] + # Description: Add new bookmarks to the front of the bookmark list instead of the end. + # Valid Values: [true, false] + # Default Value: false + AddBookmarksToFrontEnabled = false + + # Description: Extra features for bookmark tooltips + # Valid Values: A comma-separated list containing values of: + # [PREVIEW, INGREDIENTS] + # Default Value: PREVIEW + BookmarkTooltipFeatures = PREVIEW + + # Description: Hold shift to show bookmark tooltip features + # Valid Values: [true, false] + # Default Value: true + HoldShiftToShowBookmarkTooltipFeatures = true + + # Description: Drag bookmarks to rearrange them in the list + # Valid Values: [true, false] + # Default Value: true + DragToRearrangeBookmarksEnabled = true + + +[advanced] + # Description: Set low-memory mode (makes search very slow, but uses less RAM) + # Valid Values: [true, false] + # Default Value: false + LowMemorySlowSearchEnabled = false + + # Description: Catch render errors from ingredients and attempt to recover from them instead of crashing. + # Valid Values: [true, false] + # Default Value: true + CatchRenderErrorsEnabled = true + + # Description: When looking up recipes with items that contain fluids, also look up recipes for the fluids. + # Valid Values: [true, false] + # Default Value: false + lookupFluidContentsEnabled = false + + # Description: When searching for item tags, also include tags for the default blocks contained in the items. + # Valid Values: [true, false] + # Default Value: true + lookupBlockTagsEnabled = true + + # Description: Number of milliseconds before a long mouse click is considered to become a drag operation + # Valid Values: An integer in the range [0, 1000] (inclusive) + # Default Value: 150 + dragDelayInMilliseconds = 150 + + +[sorting] + # Description: Sorting order for the ingredient list + # Valid Values: A comma-separated list containing values of: + # [MOD_NAME, INGREDIENT_TYPE, ALPHABETICAL, CREATIVE_MENU, TAG, ARMOR, MAX_DURABILITY] + # Default Value: MOD_NAME, INGREDIENT_TYPE, CREATIVE_MENU + IngredientSortStages = MOD_NAME, INGREDIENT_TYPE, CREATIVE_MENU + + # Description: Sorting order for displayed recipes + # Valid Values: A comma-separated list containing values of: + # [BOOKMARKED, CRAFTABLE] + # Default Value: BOOKMARKED, CRAFTABLE + RecipeSorterStages = BOOKMARKED, CRAFTABLE + + +[tags] + # Description: Show tag content in tooltips + # Valid Values: [true, false] + # Default Value: true + TagContentTooltipEnabled = true + + # Description: Hide tags that only have 1 ingredient + # Valid Values: [true, false] + # Default Value: true + HideSingleIngredientTagsEnabled = true + + +[search] + # Description: Search mode for Mod Names (prefix: @) + # Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED] + # Default Value: REQUIRE_PREFIX + ModNameSearchMode = REQUIRE_PREFIX + + # Description: Search mode for Tooltips (prefix: #) + # Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED] + # Default Value: ENABLED + TooltipSearchMode = ENABLED + + # Description: Search mode for Tag Names (prefix: $) + # Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED] + # Default Value: REQUIRE_PREFIX + TagSearchMode = REQUIRE_PREFIX + + # Description: Search mode for Colors (prefix: ^) + # Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED] + # Default Value: DISABLED + ColorSearchMode = DISABLED + + # Description: Search mode for resources locations (prefix: &) + # Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED] + # Default Value: DISABLED + ResourceLocationSearchMode = DISABLED + + # Description: Search advanced tooltips (visible with F3+H) + # Valid Values: [true, false] + # Default Value: false + SearchAdvancedTooltips = false + + # Description: Search mod ids in addition to mod names + # Valid Values: [true, false] + # Default Value: true + SearchModIds = true + + # Description: Search by the shorthand first letters of a mod's name + # Valid Values: [true, false] + # Default Value: true + SearchShortModNames = true + + +[IngredientList] + # Description: Max number of rows shown + # Valid Values: An integer in the range [1, 100] (inclusive) + # Default Value: 16 + MaxRows = 16 + + # Description: Max number of columns shown + # Valid Values: An integer in the range [4, 100] (inclusive) + # Default Value: 9 + MaxColumns = 9 + + # Description: Horizontal alignment of the ingredient grid inside the available area + # Valid Values: [LEFT, CENTER, RIGHT] + # Default Value: RIGHT + HorizontalAlignment = RIGHT + + # Description: Vertical alignment of the ingredient grid inside the available area + # Valid Values: [TOP, CENTER, BOTTOM] + # Default Value: TOP + VerticalAlignment = TOP + + # Description: Visibility of the top page buttons. Use AUTO_HIDE to only show it when there are multiple pages. + # Valid Values: [ENABLED, AUTO_HIDE, DISABLED] + # Default Value: ENABLED + ButtonNavigationVisibility = ENABLED + + # Description: Set to true to draw a background texture behind the gui. + # Valid Values: [true, false] + # Default Value: false + DrawBackground = false + + +[BookmarkList] + # Description: Max number of rows shown + # Valid Values: An integer in the range [1, 100] (inclusive) + # Default Value: 16 + MaxRows = 16 + + # Description: Max number of columns shown + # Valid Values: An integer in the range [4, 100] (inclusive) + # Default Value: 9 + MaxColumns = 9 + + # Description: Horizontal alignment of the ingredient grid inside the available area + # Valid Values: [LEFT, CENTER, RIGHT] + # Default Value: LEFT + HorizontalAlignment = LEFT + + # Description: Vertical alignment of the ingredient grid inside the available area + # Valid Values: [TOP, CENTER, BOTTOM] + # Default Value: TOP + VerticalAlignment = TOP + + # Description: Visibility of the top page buttons. Use AUTO_HIDE to only show it when there are multiple pages. + # Valid Values: [ENABLED, AUTO_HIDE, DISABLED] + # Default Value: ENABLED + ButtonNavigationVisibility = ENABLED + + # Description: Set to true to draw a background texture behind the gui. + # Valid Values: [true, false] + # Default Value: false + DrawBackground = false + + diff --git a/config/jei/jei-colors.ini b/config/jei/jei-colors.ini new file mode 100644 index 0000000..8e75fe1 --- /dev/null +++ b/config/jei/jei-colors.ini @@ -0,0 +1,8 @@ +[colors] + # Description: Color values to search for + # Valid Values: A comma-separated list containing values of: + # Any color name and an RGB hex color, separated by a ':' + # Default Value: White:EEEEEE, LightBlue:7492CC, Cyan:00EEEE, Blue:2222DD, LapisBlue:25418B, Teal:008080, Yellow:CACB58, GoldenYellow:EED700, Orange:D97634, Pink:D1899D, HotPink:FC0FC0, Magenta:B24BBB, Purple:813EB9, EvilPurple:2E1649, Lavender:B57EDC, Indigo:480082, Sand:DBD3A0, Tan:BB9B63, LightBrown:A0522D, Brown:634B33, DarkBrown:3A2D13, LimeGreen:43B239, SlimeGreen:83CB73, Green:008000, DarkGreen:224D22, GrassGreen:548049, Red:963430, BrickRed:B0604B, NetherBrick:2A1516, Redstone:CE3E36, Black:181515, CharcoalGray:464646, IronGray:646464, Gray:808080, Silver:C0C0C0 + SearchColors = White:EEEEEE, LightBlue:7492CC, Cyan:00EEEE, Blue:2222DD, LapisBlue:25418B, Teal:008080, Yellow:CACB58, GoldenYellow:EED700, Orange:D97634, Pink:D1899D, HotPink:FC0FC0, Magenta:B24BBB, Purple:813EB9, EvilPurple:2E1649, Lavender:B57EDC, Indigo:480082, Sand:DBD3A0, Tan:BB9B63, LightBrown:A0522D, Brown:634B33, DarkBrown:3A2D13, LimeGreen:43B239, SlimeGreen:83CB73, Green:008000, DarkGreen:224D22, GrassGreen:548049, Red:963430, BrickRed:B0604B, NetherBrick:2A1516, Redstone:CE3E36, Black:181515, CharcoalGray:464646, IronGray:646464, Gray:808080, Silver:C0C0C0 + + diff --git a/config/jei/jei-debug.ini b/config/jei/jei-debug.ini new file mode 100644 index 0000000..946acb8 --- /dev/null +++ b/config/jei/jei-debug.ini @@ -0,0 +1,27 @@ +[debug] + # Description: Debug mode enabled + # Valid Values: [true, false] + # Default Value: false + DebugMode = false + + # Description: Debug GUIs enabled + # Valid Values: [true, false] + # Default Value: false + DebugGuis = false + + # Description: Debug inputs enabled + # Valid Values: [true, false] + # Default Value: false + DebugInputs = false + + # Description: Debug ingredients enabled + # Valid Values: [true, false] + # Default Value: false + DebugIngredients = false + + # Description: Adds ingredients to JEI that intentionally crash, to help debug JEI. + # Valid Values: [true, false] + # Default Value: false + CrashingTestItemsEnabled = false + + diff --git a/config/jei/jei-mod-id-format.ini b/config/jei/jei-mod-id-format.ini new file mode 100644 index 0000000..77c139c --- /dev/null +++ b/config/jei/jei-mod-id-format.ini @@ -0,0 +1,11 @@ +[modname] + # Description: Formatting for mod name tooltip + # Valid Values: A chat formatting string. + # Use these formatting colors: + # black dark_blue dark_green dark_aqua dark_red dark_purple gold gray dark_gray blue green aqua red light_purple yellow white + # With these formatting options: + # obfuscated bold strikethrough underline italic + # Default Value: blue italic + ModNameFormat = blue italic + + diff --git a/config/jei/recipe-category-sort-order.ini b/config/jei/recipe-category-sort-order.ini new file mode 100644 index 0000000..6a2916c --- /dev/null +++ b/config/jei/recipe-category-sort-order.ini @@ -0,0 +1,15 @@ +minecraft:crafting +minecraft:anvil +minecraft:blasting +minecraft:block +minecraft:brewing +minecraft:campfire +minecraft:compostable +minecraft:fluid +minecraft:fuel +minecraft:furnace +minecraft:item +minecraft:smithing +minecraft:smoking +minecraft:stonecutting +jei:information diff --git a/config/jewelry/items_v4.json b/config/jewelry/items_v4.json new file mode 100644 index 0000000..7abb0d5 --- /dev/null +++ b/config/jewelry/items_v4.json @@ -0,0 +1,593 @@ +{ + "items": { + "jewelry:sapphire_necklace": { + "attributes": [ + { + "id": "generic.max_health", + "value": 2.0, + "operation": "ADDITION" + } + ] + }, + "jewelry:unique_fire_necklace": { + "attributes": [ + { + "id": "spell_power:fire", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:critical_chance", + "value": 0.03, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:critical_damage", + "value": 0.1, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:topaz_necklace": { + "attributes": [ + { + "id": "spell_power:arcane", + "value": 0.04, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:fire", + "value": 0.04, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:netherite_ruby_ring": { + "attributes": [ + { + "id": "generic.attack_damage", + "value": 0.08, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:unique_attack_necklace": { + "attributes": [ + { + "id": "generic.attack_damage", + "value": 0.12, + "operation": "MULTIPLY_BASE" + }, + { + "id": "generic.knockback_resistance", + "value": 0.1, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:unique_healing_necklace": { + "attributes": [ + { + "id": "spell_power:healing", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:haste", + "value": 0.06, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:sapphire_ring": { + "attributes": [ + { + "id": "generic.max_health", + "value": 2.0, + "operation": "ADDITION" + } + ] + }, + "jewelry:netherite_ruby_necklace": { + "attributes": [ + { + "id": "generic.attack_damage", + "value": 0.08, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:netherite_tanzanite_necklace": { + "attributes": [ + { + "id": "spell_power:frost", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:soul", + "value": 0.08, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:iron_ring": { + "attributes": [ + { + "id": "generic.armor", + "value": 1.0, + "operation": "ADDITION" + } + ] + }, + "jewelry:jade_ring": { + "attributes": [ + { + "id": "ranged_weapon:damage", + "value": 0.04, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:unique_archer_ring": { + "attributes": [ + { + "id": "ranged_weapon:damage", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "combatroll:recharge", + "value": 0.1, + "operation": "MULTIPLY_BASE" + }, + { + "id": "ranged_weapon:haste", + "value": 0.04, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:jade_necklace": { + "attributes": [ + { + "id": "ranged_weapon:damage", + "value": 0.04, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:unique_tank_necklace": { + "attributes": [ + { + "id": "generic.max_health", + "value": 6.0, + "operation": "ADDITION" + }, + { + "id": "generic.armor_toughness", + "value": 1.0, + "operation": "ADDITION" + } + ] + }, + "jewelry:copper_ring": { + "attributes": [ + { + "id": "generic.armor", + "value": 0.5, + "operation": "ADDITION" + } + ] + }, + "jewelry:unique_attack_ring": { + "attributes": [ + { + "id": "generic.attack_damage", + "value": 0.12, + "operation": "MULTIPLY_BASE" + }, + { + "id": "generic.knockback_resistance", + "value": 0.1, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:netherite_jade_ring": { + "attributes": [ + { + "id": "ranged_weapon:damage", + "value": 0.08, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:netherite_tanzanite_ring": { + "attributes": [ + { + "id": "spell_power:frost", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:soul", + "value": 0.08, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:unique_dex_ring": { + "attributes": [ + { + "id": "generic.attack_speed", + "value": 0.06, + "operation": "MULTIPLY_BASE" + }, + { + "id": "generic.attack_damage", + "value": 0.06, + "operation": "MULTIPLY_BASE" + }, + { + "id": "combatroll:recharge", + "value": 0.1, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:ruby_necklace": { + "attributes": [ + { + "id": "generic.attack_damage", + "value": 0.04, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:unique_frost_ring": { + "attributes": [ + { + "id": "spell_power:frost", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:haste", + "value": 0.03, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:critical_damage", + "value": 0.1, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:gold_ring": { + "attributes": [] + }, + "jewelry:netherite_sapphire_necklace": { + "attributes": [ + { + "id": "generic.max_health", + "value": 4.0, + "operation": "ADDITION" + } + ] + }, + "jewelry:netherite_topaz_necklace": { + "attributes": [ + { + "id": "spell_power:arcane", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:fire", + "value": 0.08, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:unique_tank_ring": { + "attributes": [ + { + "id": "generic.max_health", + "value": 6.0, + "operation": "ADDITION" + }, + { + "id": "generic.armor_toughness", + "value": 1.0, + "operation": "ADDITION" + } + ] + }, + "jewelry:citrine_ring": { + "attributes": [ + { + "id": "spell_power:healing", + "value": 0.04, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:lightning", + "value": 0.04, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:tanzanite_ring": { + "attributes": [ + { + "id": "spell_power:frost", + "value": 0.04, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:soul", + "value": 0.04, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:citrine_necklace": { + "attributes": [ + { + "id": "spell_power:healing", + "value": 0.04, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:lightning", + "value": 0.04, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:unique_arcane_necklace": { + "attributes": [ + { + "id": "spell_power:arcane", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:critical_chance", + "value": 0.03, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:haste", + "value": 0.03, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:diamond_necklace": { + "attributes": [ + { + "id": "generic.movement_speed", + "value": 0.1, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:tanzanite_necklace": { + "attributes": [ + { + "id": "spell_power:frost", + "value": 0.04, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:soul", + "value": 0.04, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:netherite_jade_necklace": { + "attributes": [ + { + "id": "ranged_weapon:damage", + "value": 0.08, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:netherite_sapphire_ring": { + "attributes": [ + { + "id": "generic.max_health", + "value": 4.0, + "operation": "ADDITION" + } + ] + }, + "jewelry:unique_arcane_ring": { + "attributes": [ + { + "id": "spell_power:arcane", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:critical_chance", + "value": 0.03, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:haste", + "value": 0.03, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:unique_frost_necklace": { + "attributes": [ + { + "id": "spell_power:frost", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:haste", + "value": 0.03, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:critical_damage", + "value": 0.1, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:unique_fire_ring": { + "attributes": [ + { + "id": "spell_power:fire", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:critical_chance", + "value": 0.03, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:critical_damage", + "value": 0.1, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:netherite_citrine_necklace": { + "attributes": [ + { + "id": "spell_power:healing", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:lightning", + "value": 0.08, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:ruby_ring": { + "attributes": [ + { + "id": "generic.attack_damage", + "value": 0.04, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:netherite_citrine_ring": { + "attributes": [ + { + "id": "spell_power:healing", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:lightning", + "value": 0.08, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:unique_archer_necklace": { + "attributes": [ + { + "id": "ranged_weapon:damage", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "combatroll:count", + "value": 1.0, + "operation": "ADDITION" + }, + { + "id": "ranged_weapon:haste", + "value": 0.04, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:netherite_topaz_ring": { + "attributes": [ + { + "id": "spell_power:arcane", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:fire", + "value": 0.08, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:unique_healing_ring": { + "attributes": [ + { + "id": "spell_power:healing", + "value": 0.08, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:haste", + "value": 0.06, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:topaz_ring": { + "attributes": [ + { + "id": "spell_power:arcane", + "value": 0.04, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:fire", + "value": 0.04, + "operation": "MULTIPLY_BASE" + } + ] + }, + "jewelry:unique_dex_necklace": { + "attributes": [ + { + "id": "generic.attack_speed", + "value": 0.06, + "operation": "MULTIPLY_BASE" + }, + { + "id": "generic.attack_damage", + "value": 0.06, + "operation": "MULTIPLY_BASE" + }, + { + "id": "combatroll:count", + "value": 1.0, + "operation": "ADDITION" + } + ] + }, + "jewelry:emerald_necklace": { + "attributes": [ + { + "id": "generic.luck", + "value": 1.0, + "operation": "ADDITION" + } + ] + } + } +} \ No newline at end of file diff --git a/config/jewelry/villages.json b/config/jewelry/villages.json new file mode 100644 index 0000000..a74e8bf --- /dev/null +++ b/config/jewelry/villages.json @@ -0,0 +1,54 @@ +{ + "entries": [ + { + "pool": "minecraft:village/desert/houses", + "structures": [ + { + "id": "jewelry:village/desert/jewelry_shop", + "weight": 2, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/savanna/houses", + "structures": [ + { + "id": "jewelry:village/savanna/jewelry_shop", + "weight": 2, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/plains/houses", + "structures": [ + { + "id": "jewelry:village/plains/jewelry_shop", + "weight": 2, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/taiga/houses", + "structures": [ + { + "id": "jewelry:village/taiga/jewelry_shop", + "weight": 2, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/snowy/houses", + "structures": [ + { + "id": "jewelry:village/snowy/jewelry_shop", + "weight": 2, + "limit": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/config/legendarytooltips-common.toml b/config/legendarytooltips-common.toml new file mode 100644 index 0000000..e4963c2 --- /dev/null +++ b/config/legendarytooltips-common.toml @@ -0,0 +1,114 @@ +# Legendary Tooltips Configuration Instructions +# +# *** READ THIS FIRST *** +# +# By default, this mod does not apply special borders to most items. It was designed to work well with mod packs where +# the available selection of items can vary widely, so it is up to the user or mod pack designer to customize as needed. +# There are many options available for setting up which custom borders (also called frames) apply to which items. Follow these steps: +# 1. Decide which items you want to have custom borders, and which borders. Note that each custom border has a number associated with it (starting at 0). +# 2. For each custom border you want to use, fill out the associated list in the "definitions" section. This will be filled out with a list of "selectors", +# each of which tell the mod what items have that border. Please read the information above the definitions section for specifics. +# 3. Selectors for borders are checked in the order provided in the "priorities" section. Once a match is found, that border is displayed. +# For example, if border 0 had the selector "%Diamond" and border 1 had the selector "diamond_sword", they would both match for diamond swords. +# In this case, whichever border number came first in the priority list would be the border that would get drawn in-game. +# 4. Optionally, border colors associated with custom borders can be set in the "colors" section. The start color is the color at the top of the tooltip, +# and the end color is the bottom, with a smooth transition between. Please read the information above the color section for specifics. +[client] + [client.visual_options] + # Whether item names in tooltips should have a line under them separating them from the rest of the tooltip. + name_separator = true + # If enabled, tooltip border colors will match item rarity colors (except for custom borders). + borders_match_rarity = true + # If enabled, tooltips will display a drop shadow. + tooltip_shadow = true + # If enabled, items showing a custom border will have a special shine effect when hovered over. + shine_effect = true + # If enabled, tooltip titles will be drawn centered. + centered_title = true + # If enabled, tooltips with custom borders will always be at least wide enough to display all border decorations. + enforce_minimum_width = false + # If enabled, some unnecessary text and spacing will be removed from equipment tooltips. + compact_tooltips = true + # Which items should have a 3D model rendered in the tooltip. If set to "equipment", the model will only be rendered for items with durability. + #Allowed Values: NONE, EQUIPMENT, ALL + render_item_model = "EQUIPMENT" + # The speed at which 3D models in tooltips will rotate. Lower values rotate faster, set to 0 to disable rotation. + #Range: 0.0 ~ 50.0 + model_rotation_speed = 12.0 + # Entry types: + # Match all - Specifying just an asterisk (*) will match all items. Examples: "*" + # Item ID - Use item ID to match single items. Must include mod name for modded items. Examples: "minecraft:stick", "iron_ore", "spoiledeggs:spoiled_egg" + # Tag - $ followed by tag name to match all items with that tag. Examples: "$forge:stone", "$planks" + # Mod name - @ followed by mod identifier to match all items from that mod. Examples: "@spoiledeggs" + # Rarity - ! followed by item's rarity to match all items with that rarity. This is ONLY vanilla rarities. Examples: "!uncommon", "!rare", "!epic" + # Item name color - # followed by color hex code, to match all items with that exact color item name. Examples: "#23F632" + # Display name - % followed by any text. Will match any item with this text (case-sensitive) in its tooltip display name. Examples: "%Netherite", "%Uncommon" + # Tooltip text - ^ followed by any text. Will match any item with this text (case-sensitive) anywhere in the tooltip text (besides the name). Examples: "^Legendary" + # NBT tag - & followed by tag name and optional comparator (=, >, <, or !=) and value, in the format or just . Examples: "&Damage=0", "&Tier>1", "&map!=128", "&Enchantments" + # Negation - ~ followed by any selector above. This selector will be negated, matching every item that does NOT match the selector. Examples: "~minecraft:stick", "~!uncommon", "~@minecraft" + # Combining selectors - Any number of selectors can be combined by separating them with a plus sign. Examples: "minecraft:diamond_sword+&Enchantments", "minecraft:stick+~!common+&Damage=0" + [client.definitions] + level0_entries = ["!epic", "!rare"] + level1_entries = [] + level2_entries = [] + level3_entries = [] + level4_entries = [] + level5_entries = [] + level6_entries = [] + level7_entries = [] + level8_entries = [] + level9_entries = [] + level10_entries = [] + level11_entries = [] + level12_entries = [] + level13_entries = [] + level14_entries = [] + level15_entries = [] + # Enter blacklist selectors here using the same format as above. Any items that match these selectors will NOT show a border. + blacklist = [] + # Set border priorities here. This should be a list of numbers that correspond to border levels, with numbers coming first being higher priority. + # Optionally, -1 can be inserted to indicate relative priority of data and api-defined borders. If you don't know what that means, you don't need to worry about it. + [client.priorities] + priorities = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15] + # The colors used for each tooltip, in this order: top border color, bottom border color, top background color, bottom background color. + # None of these colors are required, though any colors not specified will be replaced with the default tooltip colors. + # + # VALID COLOR FORMATS + # Hex color code - A hex color code is preceded by # or 0x and must be quoted. Supports 3, 4, 6, or 8 digit codes in the formats RGB, ARGB, RRGGBB, AARRGGBB. + # Examples: "#F4C", "0xFEE0", "#40FF2E", "#CC00E2EE" + # + # Decimal color code - A decimal color code, which is just a hex color code converted to decimal. May or may not be quoted. + # Examples: 15614720, "4278251143" + # + # Minecraft color name - One of the standard 16 Minecraft color names. Must be quoted. + # Examples: "red", "dark_purple", "gold" + # + # Web color name - One of the standard 140 web/HTML color names or "transparent". Must be quoted. + # Examples: "chartreuse", "darkorange", "deeppink", "deepskyblue" + # + # Modifiers - Colors specified in any of the above formats can be modified by using modifiers. + # Modifiers are specified after any color in the format "<+, -, or =>". + # The letters represent h - hue, s - saturation, v - value, r - red, g - green, b - blue, a - alpha. + # Valid amounts are 0 to 255 for all types except hue, which accepts 0 to 359. + # Examples: "red+h15", "#saddlebrown-v20+s5", "10_aqua_aqua+v15-h5", "#F4C-r15-v10=a40" + # + # Animated color - An animated color that fades from one to another in sequence. + # A string in the format "_". Must be quoted. + # Examples: "10_black_#7FFF00", "5.5_gold_orange_orangered", "20_red_orange_yellow_green_blue_purple" + [client.colors] + level0_colors = [-6723294, -10864099, -266991104, -401208832] + level1_colors = ["auto", "auto", "auto", "auto"] + level2_colors = ["auto", "auto", "auto", "auto"] + level3_colors = ["auto", "auto", "auto", "auto"] + level4_colors = ["auto", "auto", "auto", "auto"] + level5_colors = ["auto", "auto", "auto", "auto"] + level6_colors = ["auto", "auto", "auto", "auto"] + level7_colors = ["auto", "auto", "auto", "auto"] + level8_colors = ["auto", "auto", "auto", "auto"] + level9_colors = ["auto", "auto", "auto", "auto"] + level10_colors = ["auto", "auto", "auto", "auto"] + level11_colors = ["auto", "auto", "auto", "auto"] + level12_colors = ["auto", "auto", "auto", "auto"] + level13_colors = ["auto", "auto", "auto", "auto"] + level14_colors = ["auto", "auto", "auto", "auto"] + level15_colors = ["auto", "auto", "auto", "auto"] diff --git a/config/libgui.json5 b/config/libgui.json5 new file mode 100644 index 0000000..219ed6f --- /dev/null +++ b/config/libgui.json5 @@ -0,0 +1,4 @@ +{ + // Whether dark mode should be enabled. Will only affect Vanilla-styled GUIs. + "darkMode": false +} \ No newline at end of file diff --git a/config/libz.json5 b/config/libz.json5 new file mode 100644 index 0000000..8824a43 --- /dev/null +++ b/config/libz.json5 @@ -0,0 +1,5 @@ +{ + // Show inventory tabs + "inventoryButton": true, + "syncConfig": true +} \ No newline at end of file diff --git a/config/lithium.properties b/config/lithium.properties new file mode 100644 index 0000000..febe4b0 --- /dev/null +++ b/config/lithium.properties @@ -0,0 +1,8 @@ +# This is the configuration file for Lithium. +# This file exists for debugging purposes and should not be configured otherwise. +# Before configuring anything, take a backup of the worlds that will be opened. +# +# You can find information on editing this file and all the available options here: +# https://github.com/jellysquid3/lithium-fabric/wiki/Configuration-File +# +# By default, this file will be empty except for this notice. diff --git a/config/lmft.json b/config/lmft.json new file mode 100644 index 0000000..f874764 --- /dev/null +++ b/config/lmft.json @@ -0,0 +1,3 @@ +{ + "disableIngameError": false +} \ No newline at end of file diff --git a/config/loadmyresources/config.cfg b/config/loadmyresources/config.cfg new file mode 100644 index 0000000..fd66995 --- /dev/null +++ b/config/loadmyresources/config.cfg @@ -0,0 +1,4 @@ +##[general] + +[The path to load resources from.] +S:resource_path = 'resources/'; \ No newline at end of file diff --git a/config/logprot.json b/config/logprot.json new file mode 100644 index 0000000..1f553ab --- /dev/null +++ b/config/logprot.json @@ -0,0 +1,22 @@ +{ + "invulTime": { + "desc:": "Maximum time in ticks the logging player is invulnerable, 20 ticks is 1sec. Default is 50secs so 1000 ticks", + "invulTime": 1000 + }, + "ignoreFallDamage": { + "desc:": "Allows fall-damage to bypass the protection, default: true", + "ignoreFallDamage": true + }, + "debugOutput": { + "desc:": "Whether to enable debug log outputs, default: false", + "debugOutput": false + }, + "dimensionprotection": { + "desc:": "Enables the protection for dimension changes too, default: true", + "dimensionprotection": true + }, + "respawnprotection": { + "desc:": "Enables the protection for respawning too, default: true", + "respawnprotection": true + } +} \ No newline at end of file diff --git a/config/lootintegrations.json b/config/lootintegrations.json new file mode 100644 index 0000000..3402e02 --- /dev/null +++ b/config/lootintegrations.json @@ -0,0 +1,10 @@ +{ + "showcontainerloottable": { + "desc:": "Set to true to show containers loottable on first open: default:false", + "showcontainerloottable": false + }, + "debugOutput": { + "desc:": "Shows the added loot in the log if enabled: default:false", + "debugOutput": false + } +} \ No newline at end of file diff --git a/config/mcda/mcda_armor_stats.json5 b/config/mcda/mcda_armor_stats.json5 new file mode 100644 index 0000000..4f17dd2 --- /dev/null +++ b/config/mcda/mcda_armor_stats.json5 @@ -0,0 +1,1042 @@ +{ + "armorStats": { + "ARCHER": { + "protection": { + "FEET": 2, + "LEGS": 4, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 15 + }, + "HUNTER": { + "protection": { + "FEET": 1, + "LEGS": 2, + "CHEST": 3, + "HEAD": 1 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 15 + }, + "OCELOT": { + "protection": { + "FEET": 1, + "LEGS": 3, + "CHEST": 5, + "HEAD": 1 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.05, + "durabilityMultiplier": 15 + }, + "SHADOW_WALKER": { + "protection": { + "FEET": 2, + "LEGS": 4, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.025, + "movementSpeedBoost": 0.08, + "durabilityMultiplier": 15 + }, + "SPELUNKER": { + "protection": { + "FEET": 2, + "LEGS": 4, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 15 + }, + "CAVE_CRAWLER": { + "protection": { + "FEET": 2, + "LEGS": 5, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.025, + "durabilityMultiplier": 15 + }, + "WOLF": { + "protection": { + "FEET": 2, + "LEGS": 4, + "CHEST": 5, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.025, + "attackSpeedBoost": 0.025, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 15 + }, + "BLACK_WOLF": { + "protection": { + "FEET": 2, + "LEGS": 5, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.025, + "attackSpeedBoost": 0.025, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 15 + }, + "FOX": { + "protection": { + "FEET": 2, + "LEGS": 4, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.025, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 15 + }, + "ARCTIC_FOX": { + "protection": { + "FEET": 2, + "LEGS": 4, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.025, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 15 + }, + "CLIMBING_GEAR": { + "protection": { + "FEET": 1, + "LEGS": 5, + "CHEST": 6, + "HEAD": 1 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 15 + }, + "RUGGED_CLIMBING_GEAR": { + "protection": { + "FEET": 2, + "LEGS": 5, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 15 + }, + "SQUID": { + "protection": { + "FEET": 1, + "LEGS": 3, + "CHEST": 5, + "HEAD": 1 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 15 + }, + "GLOW_SQUID": { + "protection": { + "FEET": 2, + "LEGS": 4, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 15 + }, + "GOAT": { + "protection": { + "FEET": 2, + "LEGS": 5, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.20000000298023224, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 15 + }, + "BATTLE": { + "protection": { + "FEET": 1, + "LEGS": 2, + "CHEST": 3, + "HEAD": 1 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 5 + }, + "SPLENDID": { + "protection": { + "FEET": 2, + "LEGS": 2, + "CHEST": 3, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.075, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 5 + }, + "EVOCATION": { + "protection": { + "FEET": 1, + "LEGS": 3, + "CHEST": 3, + "HEAD": 1 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.05, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 5 + }, + "EMBER": { + "protection": { + "FEET": 1, + "LEGS": 3, + "CHEST": 3, + "HEAD": 1 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.05, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 5 + }, + "VERDANT": { + "protection": { + "FEET": 1, + "LEGS": 3, + "CHEST": 3, + "HEAD": 1 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.05, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 5 + }, + "THIEF": { + "protection": { + "FEET": 2, + "LEGS": 4, + "CHEST": 5, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 5 + }, + "SPIDER": { + "protection": { + "FEET": 2, + "LEGS": 4, + "CHEST": 5, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0375, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 5 + }, + "SOUL_ROBE": { + "protection": { + "FEET": 1, + "LEGS": 5, + "CHEST": 6, + "HEAD": 1 + }, + "toughness": 2.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 5 + }, + "SOULDANCER": { + "protection": { + "FEET": 2, + "LEGS": 5, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 2.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 5 + }, + "SPROUT": { + "protection": { + "FEET": 2, + "LEGS": 2, + "CHEST": 3, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 5 + }, + "LIVING_VINES": { + "protection": { + "FEET": 2, + "LEGS": 2, + "CHEST": 3, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 5 + }, + "PIGLIN": { + "protection": { + "FEET": 2, + "LEGS": 2, + "CHEST": 4, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 5 + }, + "ENTERTAINER": { + "protection": { + "FEET": 2, + "LEGS": 3, + "CHEST": 4, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 5 + }, + "TROUBADOUR": { + "protection": { + "FEET": 3, + "LEGS": 4, + "CHEST": 5, + "HEAD": 3 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 5 + }, + "TELEPORTATION": { + "protection": { + "FEET": 2, + "LEGS": 3, + "CHEST": 4, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 5 + }, + "UNSTABLE": { + "protection": { + "FEET": 3, + "LEGS": 4, + "CHEST": 5, + "HEAD": 3 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 5 + }, + "PHANTOM": { + "protection": { + "FEET": 2, + "LEGS": 4, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.075, + "durabilityMultiplier": 25 + }, + "FROST_BITE": { + "protection": { + "FEET": 3, + "LEGS": 5, + "CHEST": 7, + "HEAD": 3 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.075, + "durabilityMultiplier": 25 + }, + "GRIM": { + "protection": { + "FEET": 2, + "LEGS": 4, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0375, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 25 + }, + "WITHER": { + "protection": { + "FEET": 3, + "LEGS": 5, + "CHEST": 7, + "HEAD": 3 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0375, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 25 + }, + "TURTLE": { + "protection": { + "FEET": 2, + "LEGS": 4, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 25 + }, + "NIMBLE_TURTLE": { + "protection": { + "FEET": 3, + "LEGS": 5, + "CHEST": 7, + "HEAD": 3 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 25 + }, + "SCALE_MAIL": { + "protection": { + "FEET": 2, + "LEGS": 4, + "CHEST": 5, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0375, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 14 + }, + "HIGHLAND": { + "protection": { + "FEET": 2, + "LEGS": 5, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0375, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 14 + }, + "BEEHIVE": { + "protection": { + "FEET": 2, + "LEGS": 5, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0375, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 14 + }, + "BEENEST": { + "protection": { + "FEET": 2, + "LEGS": 4, + "CHEST": 5, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0375, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 14 + }, + "GHOSTLY": { + "protection": { + "FEET": 2, + "LEGS": 4, + "CHEST": 5, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0375, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 14 + }, + "GHOST_KINDLER": { + "protection": { + "FEET": 2, + "LEGS": 5, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0375, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 14 + }, + "GOLDEN_PIGLIN": { + "protection": { + "FEET": 2, + "LEGS": 5, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 14 + }, + "SWEET_TOOTH": { + "protection": { + "FEET": 2, + "LEGS": 5, + "CHEST": 6, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 14 + }, + "VANGUARD": { + "protection": { + "FEET": 2, + "LEGS": 4, + "CHEST": 5, + "HEAD": 2 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 14 + }, + "REINFORCED_MAIL": { + "protection": { + "FEET": 3, + "LEGS": 5, + "CHEST": 6, + "HEAD": 3 + }, + "toughness": 1.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 30 + }, + "STALWART_MAIL": { + "protection": { + "FEET": 3, + "LEGS": 5, + "CHEST": 7, + "HEAD": 3 + }, + "toughness": 1.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 30 + }, + "GUARDS": { + "protection": { + "FEET": 3, + "LEGS": 5, + "CHEST": 7, + "HEAD": 3 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 30 + }, + "CURIOUS": { + "protection": { + "FEET": 3, + "LEGS": 5, + "CHEST": 7, + "HEAD": 3 + }, + "toughness": 2.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 30 + }, + "SNOW": { + "protection": { + "FEET": 3, + "LEGS": 5, + "CHEST": 7, + "HEAD": 3 + }, + "toughness": 2.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 30 + }, + "FROST": { + "protection": { + "FEET": 3, + "LEGS": 5, + "CHEST": 7, + "HEAD": 3 + }, + "toughness": 2.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 30 + }, + "MERCENARY": { + "protection": { + "FEET": 3, + "LEGS": 5, + "CHEST": 6, + "HEAD": 3 + }, + "toughness": 1.5, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 30 + }, + "RENEGADE": { + "protection": { + "FEET": 3, + "LEGS": 5, + "CHEST": 6, + "HEAD": 3 + }, + "toughness": 1.75, + "knockbackRes": 0.0, + "attackDamageBoost": 0.05, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 30 + }, + "HUNGRY_HORROR": { + "protection": { + "FEET": 3, + "LEGS": 5, + "CHEST": 7, + "HEAD": 3 + }, + "toughness": 2.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.05, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0625, + "durabilityMultiplier": 30 + }, + "EMERALD": { + "protection": { + "FEET": 3, + "LEGS": 5, + "CHEST": 7, + "HEAD": 3 + }, + "toughness": 2.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.05, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 30 + }, + "OPULENT": { + "protection": { + "FEET": 4, + "LEGS": 5, + "CHEST": 7, + "HEAD": 4 + }, + "toughness": 2.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.05, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 30 + }, + "DARK": { + "protection": { + "FEET": 3, + "LEGS": 6, + "CHEST": 8, + "HEAD": 3 + }, + "toughness": 1.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0375, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 36 + }, + "TITAN": { + "protection": { + "FEET": 3, + "LEGS": 6, + "CHEST": 8, + "HEAD": 3 + }, + "toughness": 2.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.075, + "attackSpeedBoost": 0.0375, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 36 + }, + "ROYAL": { + "protection": { + "FEET": 3, + "LEGS": 6, + "CHEST": 8, + "HEAD": 3 + }, + "toughness": 1.5, + "knockbackRes": 0.0, + "attackDamageBoost": 0.075, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 36 + }, + "PLATE": { + "protection": { + "FEET": 3, + "LEGS": 6, + "CHEST": 8, + "HEAD": 3 + }, + "toughness": 1.5, + "knockbackRes": 0.0, + "attackDamageBoost": 0.05, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": -0.0375, + "durabilityMultiplier": 36 + }, + "FULL_METAL": { + "protection": { + "FEET": 4, + "LEGS": 7, + "CHEST": 9, + "HEAD": 4 + }, + "toughness": 3.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.05, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": -0.025, + "durabilityMultiplier": 36 + }, + "MYSTERY": { + "protection": { + "FEET": 3, + "LEGS": 6, + "CHEST": 8, + "HEAD": 3 + }, + "toughness": 1.5, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 36 + }, + "BLUE_MYSTERY": { + "protection": { + "FEET": 3, + "LEGS": 6, + "CHEST": 8, + "HEAD": 3 + }, + "toughness": 1.5, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 36 + }, + "GREEN_MYSTERY": { + "protection": { + "FEET": 3, + "LEGS": 6, + "CHEST": 8, + "HEAD": 3 + }, + "toughness": 1.5, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 36 + }, + "PURPLE_MYSTERY": { + "protection": { + "FEET": 3, + "LEGS": 6, + "CHEST": 8, + "HEAD": 3 + }, + "toughness": 1.5, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 36 + }, + "RED_MYSTERY": { + "protection": { + "FEET": 3, + "LEGS": 6, + "CHEST": 8, + "HEAD": 3 + }, + "toughness": 1.5, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 36 + }, + "CHAMPION": { + "protection": { + "FEET": 3, + "LEGS": 6, + "CHEST": 8, + "HEAD": 3 + }, + "toughness": 1.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0375, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 36 + }, + "HERO": { + "protection": { + "FEET": 4, + "LEGS": 7, + "CHEST": 9, + "HEAD": 4 + }, + "toughness": 2.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.075, + "attackSpeedBoost": 0.0375, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 36 + }, + "GILDED": { + "protection": { + "FEET": 3, + "LEGS": 6, + "CHEST": 8, + "HEAD": 3 + }, + "toughness": 2.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.05, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 36 + }, + "SHULKER": { + "protection": { + "FEET": 3, + "LEGS": 5, + "CHEST": 7, + "HEAD": 3 + }, + "toughness": 1.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 36 + }, + "STURDY_SHULKER": { + "protection": { + "FEET": 3, + "LEGS": 6, + "CHEST": 8, + "HEAD": 3 + }, + "toughness": 3.0, + "knockbackRes": 0.20000000298023224, + "attackDamageBoost": 0.0, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 36 + }, + "CAULDRON": { + "protection": { + "FEET": 4, + "LEGS": 7, + "CHEST": 9, + "HEAD": 4 + }, + "toughness": 2.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.05, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": -0.025, + "durabilityMultiplier": 36 + }, + "GOURDIAN": { + "protection": { + "FEET": 3, + "LEGS": 5, + "CHEST": 7, + "HEAD": 3 + }, + "toughness": 0.0, + "knockbackRes": 0.0, + "attackDamageBoost": 0.0375, + "attackSpeedBoost": 0.0, + "movementSpeedBoost": 0.0, + "durabilityMultiplier": 25 + } + }, + "setBonusTooltips": true, + "setBonusTooltipColors": true +} \ No newline at end of file diff --git a/config/mcda/mcda_enable_armors.json5 b/config/mcda/mcda_enable_armors.json5 new file mode 100644 index 0000000..9b6d717 --- /dev/null +++ b/config/mcda/mcda_enable_armors.json5 @@ -0,0 +1,78 @@ +{ + "ARMORS_SETS_ENABLED": { + "SPIDER": true, + "GOURDIAN": true, + "WITHER": true, + "WOLF": true, + "GLOW_SQUID": true, + "CHAMPION": true, + "EMERALD": true, + "CAULDRON": true, + "ENTERTAINER": true, + "SHADOW_WALKER": true, + "SPLENDID": true, + "PHANTOM": true, + "ARCTIC_FOX": true, + "LIVING_VINES": true, + "TROUBADOUR": true, + "NIMBLE_TURTLE": true, + "BLUE_MYSTERY": true, + "SCALE_MAIL": true, + "BEENEST": true, + "RED_MYSTERY": true, + "HUNTER": true, + "VERDANT": true, + "UNSTABLE": true, + "SPELUNKER": true, + "GHOSTLY": true, + "HERO": true, + "REINFORCED_MAIL": true, + "SHULKER": true, + "SOULDANCER": true, + "FROST": true, + "FULL_METAL": true, + "ARCHER": true, + "SOUL_ROBE": true, + "RUGGED_CLIMBING_GEAR": true, + "GOAT": true, + "CAVE_CRAWLER": true, + "EVOCATION": true, + "FROST_BITE": true, + "SNOW": true, + "PLATE": true, + "STURDY_SHULKER": true, + "OPULENT": true, + "SPROUT": true, + "GREEN_MYSTERY": true, + "BLACK_WOLF": true, + "GRIM": true, + "EMBER": true, + "THIEF": true, + "HIGHLAND": true, + "TURTLE": true, + "DARK": true, + "PIGLIN": true, + "RENEGADE": true, + "TITAN": true, + "ROYAL": true, + "MYSTERY": true, + "SQUID": true, + "FOX": true, + "GUARDS": true, + "MERCENARY": true, + "GILDED": true, + "GOLDEN_PIGLIN": true, + "BEEHIVE": true, + "HUNGRY_HORROR": true, + "SWEET_TOOTH": true, + "VANGUARD": true, + "CURIOUS": true, + "GHOST_KINDLER": true, + "BATTLE": true, + "STALWART_MAIL": true, + "CLIMBING_GEAR": true, + "TELEPORTATION": true, + "PURPLE_MYSTERY": true, + "OCELOT": true + } +} \ No newline at end of file diff --git a/config/mcda/mcda_enchant_and_effect_registry.json5 b/config/mcda/mcda_enchant_and_effect_registry.json5 new file mode 100644 index 0000000..9c0949e --- /dev/null +++ b/config/mcda/mcda_enchant_and_effect_registry.json5 @@ -0,0 +1,114 @@ +{ + "enableEnchantment": { + "BAG_OF_SOULS": true, + "BURNING": true, + "CHILLING": true, + "COWARDICE": true, + "DEATH_BARTER": true, + "DEFLECT": true, + "FIRE_FOCUS": true, + "FIRE_TRAIL": true, + "FOOD_RESERVES": true, + "FRENZIED": true, + "HEAL_ALLIES": true, + "LUCKY_EXPLORER": true, + "POISON_FOCUS": true, + "POTION_BARRIER": true, + "RECKLESS": true, + "RECYCLER": true, + "SNOWBALL": true, + "SURPRISE_GIFT": true, + "SWIFTFOOTED": true + }, + "enableEnchantmentForVillagerTrade": { + "BAG_OF_SOULS": true, + "BURNING": true, + "CHILLING": true, + "COWARDICE": true, + "DEATH_BARTER": true, + "DEFLECT": true, + "FIRE_FOCUS": true, + "FIRE_TRAIL": true, + "FOOD_RESERVES": true, + "FRENZIED": true, + "HEAL_ALLIES": true, + "LUCKY_EXPLORER": true, + "POISON_FOCUS": true, + "POTION_BARRIER": true, + "RECKLESS": true, + "RECYCLER": true, + "SNOWBALL": true, + "SURPRISE_GIFT": true, + "SWIFTFOOTED": true + }, + "enableEnchantmentForRandomSelection": { + "BAG_OF_SOULS": true, + "BURNING": true, + "CHILLING": true, + "COWARDICE": true, + "DEATH_BARTER": true, + "DEFLECT": true, + "FIRE_FOCUS": true, + "FIRE_TRAIL": true, + "FOOD_RESERVES": true, + "FRENZIED": true, + "HEAL_ALLIES": true, + "LUCKY_EXPLORER": true, + "POISON_FOCUS": true, + "POTION_BARRIER": true, + "RECKLESS": true, + "RECYCLER": true, + "SNOWBALL": true, + "SURPRISE_GIFT": true, + "SWIFTFOOTED": true + }, + "enableArmorEffect": { + "ARCHERS_PROWESS": true, + "ARCTIC_FOX_HIGH_GROUND": true, + "BUZZY_HIVE": true, + "CAULDRONS_OVERFLOW": true, + "CURIOUS_TELEPORTATION": true, + "EMBER_JUMP": true, + "FIRE_RESISTANCE": true, + "FLUID_FREEZING": true, + "FOX_POUNCING": true, + "FROST_BITE_EFFECT": true, + "GHOST_KINDLER_TRAIL": true, + "GHOST_KINDLING": true, + "GILDED_HERO": true, + "GOURDIANS_HATRED": true, + "HASTE": true, + "HERO_OF_THE_VILLAGE": true, + "HUNGER": true, + "INVISIBILITY": true, + "LEADER_OF_THE_PACK": true, + "LUCK": true, + "MYSTERY_EFFECTS": true, + "MYSTERY_EFFECTS_ON_CRAFTING": true, + "NIMBLE_TURTLE_EFFECTS": true, + "NO_FALL_DAMAGE": true, + "PIGLIN_FOOLING": true, + "RENEGADES_RUSH": true, + "RUGGED_CLIMBING": true, + "SHULKER_LIKE": true, + "SLOW_FALLING": true, + "SOULDANCER_EXPERIENCE": true, + "SOULDANCER_GRACE": true, + "SPIDER_CLIMBING": true, + "SPLENDID_ATTACK": true, + "SPRINTING": true, + "STALWART_BULWARK": true, + "SWEET_BERRY_BUSH_WALKING": true, + "SWEET_BERRY_SPEED": true, + "SYLVAN_PRESENCE": true, + "TELEPORTATION_ROBES_EFFECT": true, + "TITAN_SHROUD_EFFECTS": true, + "TROUBADOURS_CHARISMA": true, + "UNSTABLE_ROBES_EFFECT": true, + "WATER_BREATHING": true, + "WEB_WALKING": true, + "WITHERED": true + }, + // Controlled Teleportation for Unstable Robes, default = true + "controlledTeleportation": true +} \ No newline at end of file diff --git a/config/mcda/mcda_item_drops.json5 b/config/mcda/mcda_item_drops.json5 new file mode 100644 index 0000000..0516533 --- /dev/null +++ b/config/mcda/mcda_item_drops.json5 @@ -0,0 +1,45 @@ +{ + "numberOfRollsOnLootTable": { + "PHANTOM_SKIN": 1, + "PHANTOM_BONES": 1, + "OCELOT_PELT": 1, + "OCELOT_PELT_BLACK": 1, + "WOLF_PELT": 1, + "WOLF_PELT_BLACK": 1, + "FOX_PELT": 1, + "FOX_PELT_ARCTIC": 1, + "GOAT_PELT": 2, + "FROST_CRYSTAL": 1, + "EVOCATION_ROBE": 1, + "SKELETON_SKULL": 1, + "MYSTERY_GEMSTONE": 1 + }, + "dropBaseChance": { + "PHANTOM_SKIN": 0.10000000149011612, + "PHANTOM_BONES": 0.3499999940395355, + "OCELOT_PELT": 0.3499999940395355, + "OCELOT_PELT_BLACK": 0.10000000149011612, + "WOLF_PELT": 0.25, + "WOLF_PELT_BLACK": 0.10000000149011612, + "FOX_PELT": 0.25, + "FOX_PELT_ARCTIC": 0.25, + "GOAT_PELT": 0.4000000059604645, + "FROST_CRYSTAL": 0.20000000298023224, + "EVOCATION_ROBE": 0.20000000298023224, + "SKELETON_SKULL": 0.05000000074505806, + "MYSTERY_GEMSTONE": 0.009999999776482582 + }, + "dropChancePerLootingLevel": { + "PHANTOM_SKIN": 0.10000000149011612, + "PHANTOM_BONES": 0.20000000298023224, + "OCELOT_PELT": 0.20000000298023224, + "OCELOT_PELT_BLACK": 0.10000000149011612, + "WOLF_PELT": 0.20000000298023224, + "WOLF_PELT_BLACK": 0.10000000149011612, + "FOX_PELT": 0.5, + "FOX_PELT_ARCTIC": 0.10000000149011612, + "GOAT_PELT": 0.5, + "EVOCATION_ROBE": 0.15000000596046448, + "SKELETON_SKULL": 0.10000000149011612 + } +} \ No newline at end of file diff --git a/config/mcda/mcda_loot_tables.json5 b/config/mcda/mcda_loot_tables.json5 new file mode 100644 index 0000000..1ab0d42 --- /dev/null +++ b/config/mcda/mcda_loot_tables.json5 @@ -0,0 +1,155 @@ +{ + // Choose whether to use tiered loot system. Default = false + "enableTieredLootTables": { + "ENABLE_TIERED_LOOT_TABLES": false + }, + // Chance to get an armor piece from chests. Default = 0.10f + "findArmorChance": 0.10000000149011612, + // Higher Number makes Luck give you potential for extra MCDA loot. Default = 1.2f + "bonusRollsWithLuck": 1.2000000476837158, + // Default, non-tiered armour spawn rates. + "armorSpawnRates": { + "SPELUNKER": 5, + "CAVE_CRAWLER": 1, + "WOLF": 5, + "FOX": 1, + "THIEF": 10, + "TELEPORTATION": 10, + "UNSTABLE": 1, + "GRIM": 5, + "SCALE_MAIL": 5, + "GHOSTLY": 5, + "GHOST_KINDLER": 1, + "VANGUARD": 5, + "REINFORCED_MAIL": 5, + "STALWART_MAIL": 1, + "SNOW": 3, + "MERCENARY": 5, + "DARK": 10, + "TITAN": 3, + "ROYAL": 5, + "PLATE": 5, + "FULL_METAL": 1, + "MYSTERY": 5, + "BLUE_MYSTERY": 5, + "GREEN_MYSTERY": 5, + "PURPLE_MYSTERY": 5, + "RED_MYSTERY": 5, + "HERO": 10, + "GILDED": 10 + }, + // Chests for tiered spawning. + "commonLootTables": { + "COMMON_LOOT_TABLES": [ + "minecraft:chests/abandoned_mineshaft", + "minecraft:chests/shipwreck_supply", + "minecraft:chests/shipwreck_treasure", + "minecraft:chests/desert_pyramid", + "minecraft:chests/village/village_weaponsmith" + ] + }, + "uncommonLootTables": { + "UNCOMMON_LOOT_TABLES": [ + "minecraft:chests/jungle_temple", + "minecraft:chests/nether_bridge", + "minecraft:chests/bastion_bridge", + "minecraft:chests/bastion_other", + "minecraft:chests/bastion_treasure", + "minecraft:chests/ruined_portal" + ] + }, + "rareLootTables": { + "RARE_LOOT_TABLES": [ + "minecraft:chests/underwater_ruin_small", + "minecraft:chests/underwater_ruin_big", + "minecraft:chests/simple_dungeon", + "minecraft:chests/igloo_chest", + "minecraft:chests/pillager_outpost" + ] + }, + "epicLootTables": { + "EPIC_LOOT_TABLES": [ + "minecraft:chests/stronghold_corridor", + "minecraft:chests/stronghold_crossing", + "minecraft:chests/stronghold_library", + "minecraft:chests/end_city_treasure" + ] + }, + // Tiered armour spawn rates. + "armorLootTableSpawnRates": { + "ARCHER": 5, + "HUNTER": 10, + "OCELOT": 10, + "SHADOW_WALKER": 5, + "SPELUNKER": 10, + "CAVE_CRAWLER": 5, + "WOLF": 10, + "BLACK_WOLF": 5, + "FOX": 1, + "ARCTIC_FOX": 1, + "CLIMBING_GEAR": 10, + "RUGGED_CLIMBING_GEAR": 5, + "SQUID": 10, + "GLOW_SQUID": 5, + "GOAT": 10, + "BATTLE": 10, + "SPLENDID": 5, + "EVOCATION": 10, + "EMBER": 5, + "VERDANT": 5, + "THIEF": 10, + "SPIDER": 5, + "SOUL_ROBE": 10, + "SOULDANCER": 5, + "SPROUT": 10, + "LIVING_VINES": 10, + "PIGLIN": 10, + "ENTERTAINER": 10, + "TROUBADOUR": 0, + "TELEPORTATION": 10, + "UNSTABLE": 5, + "PHANTOM": 10, + "FROST_BITE": 5, + "GRIM": 10, + "WITHER": 5, + "TURTLE": 10, + "NIMBLE_TURTLE": 5, + "SCALE_MAIL": 10, + "HIGHLAND": 5, + "BEEHIVE": 5, + "BEENEST": 10, + "GHOSTLY": 10, + "GHOST_KINDLER": 5, + "GOLDEN_PIGLIN": 5, + "SWEET_TOOTH": 10, + "VANGUARD": 10, + "REINFORCED_MAIL": 10, + "STALWART_MAIL": 5, + "GUARDS": 10, + "CURIOUS": 5, + "SNOW": 10, + "FROST": 5, + "MERCENARY": 10, + "RENEGADE": 5, + "HUNGRY_HORROR": 1, + "EMERALD": 10, + "OPULENT": 5, + "DARK": 10, + "TITAN": 1, + "ROYAL": 5, + "PLATE": 10, + "FULL_METAL": 5, + "MYSTERY": 0, + "BLUE_MYSTERY": 0, + "GREEN_MYSTERY": 0, + "PURPLE_MYSTERY": 0, + "RED_MYSTERY": 0, + "CHAMPION": 10, + "HERO": 1, + "GILDED": 1, + "SHULKER": 10, + "STURDY_SHULKER": 5, + "CAULDRON": 5, + "GOURDIAN": 5 + } +} \ No newline at end of file diff --git a/config/mcdw/mcdw_enchantment_settings_config.json5 b/config/mcdw/mcdw_enchantment_settings_config.json5 new file mode 100644 index 0000000..ec70c3a --- /dev/null +++ b/config/mcdw/mcdw_enchantment_settings_config.json5 @@ -0,0 +1,19 @@ +{ + /* Default (0): Everything other than self + Next Permission (1): Not self and not teammates or pets of self + Next Permission (2): Not self and not teammates or pets of self or AnimalEntities (not hitting farm animals is not present in permission 3) + Next Permission (3): Not self and not Potential allies (pets of any player, iron golems, villagers, players) + Final Permission (4): Only hostile mobs + WARNING: LOOKS AT HOSTILE ENTITY CLASS WHICH DOES NOT INCLUDE ENDER DRAGON AND OTHERS. + If anything else is put, it will be treated as default + */ + "aoePermission": 0, + "ENABLE_ENCHANTMENT_SETTINGS": { + "ENABLE_OP_ENCHANTMENT_MIXING": false, + "LEECHING_CAN_BE_MIXED_WITH_HEALING": false, + "EXTRA_XP_HEALING": false, + "SHARED_PAIN_CAN_DAMAGE_USER": false, + "AREA_OF_EFFECT_ENCHANTS_DONT_AFFECT_PLAYERS": true, + "ENABLE_INNATE_ENCHANTMENTS": true + } +} \ No newline at end of file diff --git a/config/mcdw/mcdw_enchantments_config.json5 b/config/mcdw/mcdw_enchantments_config.json5 new file mode 100644 index 0000000..01939d0 --- /dev/null +++ b/config/mcdw/mcdw_enchantments_config.json5 @@ -0,0 +1,538 @@ +{ + /* + A slider value for damage modifying enchantments: + Ambush, Critical Hit, Void Strike, Pain Cycle, Enigma Resonator, Dynamo, Shadow Form, + Enigma Shot, Growing, Void Shot, Overcharge, Committed and Hunter's Promise. + */ + "directDamageEnchantmentMultiplier": 1.0, + /* + Some notes to make sense of the config, below: + + offset: This is a value that is unique to certain enchantments. What it does will be + explained in the "comment" section that is related to the enchantment. + + isEnabled: Whether the enchantment is on or off. If set to "false", the enchantment + will not be possible to obtain in any way. + + isAvailableForEnchantedBookOffer: Whether the enchantment can be sold by villagers. + If set to "false", this means that Librarian villagers will not sell this + enchantment. + + isAvailableForRandomSelection: Whether the enchantment can be found as random loot or + obtained through the Enchanting Table. If set to "false", this means that the + enchantment will not be available via the Enchanting Table nor will it + generate as loot that is found in the world. + + maxLevel: This is an integer (whole number) value that tells the game what the max + level the enchantment can be. The value for most enchantments in Minecraft + range from 1 to 5. Most MCDX enchantments are up to level 3 and whilst it + is possible to set this value above 3, it can have some unexpected results. + + procChance: Some enchantments trigger on a chance. Whilst this number is not a percentage + the higher the number, the more likely the enchantment is to trigger. + Therefore, if the procChance is set to 20, it is more likely to trigger than + if the procChance is set to 10. It is best to experiment with these values + if you plan to change them to see what works best for you. + */ + "ENCHANTMENT_CONFIG": { + "ACCELERATE": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "AMBUSH": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "ANIMA_CONDUIT": { + "comment": [ + "Effect Offset: Healing Percentage,", + "Offset Note: higher offset = more health recovered,", + "Default: 100f" + ], + "offset": 100.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "BONUS_SHOT": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "BURST_BOWSTRING": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": false, + "isAvailableForRandomSelection": false, + "maxLevel": 3, + "procChance": null + }, + "BUSY_BEE": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": false, + "isAvailableForRandomSelection": false, + "maxLevel": 1, + "procChance": null + }, + "CHAIN_REACTION": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 10 + }, + "CHAINS": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 20 + }, + "CHARGE": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 10 + }, + "COBWEB_SHOT": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 1, + "procChance": null + }, + "COMMITTED": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 10 + }, + "CRITICAL_HIT": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 10 + }, + "DIPPING_POISON": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "DYNAMO": { + "comment": [ + "Effect Offset: Maximum Stacks,", + "Offset Note: higher offset = more potential stacks,", + "Default: 20f" + ], + "offset": 20.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": false, + "isAvailableForRandomSelection": false, + "maxLevel": 3, + "procChance": null + }, + "ECHO": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 10 + }, + "ENIGMA_RESONATOR": { + "comment": [ + "Effect Offset: Damage Divisor,", + "Formula: max((log_e(numSouls * level + 20) / offset) - 1, 0)", + "Offset Note: higher offset = less damage,", + "Default: 3.25f" + ], + "offset": 3.25, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "EXPLODING": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 20 + }, + "FREEZING": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 30 + }, + "FUSE_SHOT": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 20 + }, + "GRAVITY": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 30 + }, + "GROWING": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "GUARDING_STRIKE": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "ILLAGERS_BANE": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "JUNGLE_POISON": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 30 + }, + "LEECHING": { + "comment": [ + "Effect Offset: Healing Percentage,", + "Offset Note: higher offset = more health recovered,", + "Default: 100f" + ], + "offset": 100.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "LEVITATION_SHOT": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "MULTI_SHOT": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": false, + "isAvailableForRandomSelection": false, + "maxLevel": 1, + "procChance": null + }, + "OVERCHARGE": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "PAIN_CYCLE": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "PHANTOMS_MARK": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "POISON_CLOUD": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 30 + }, + "PROSPECTOR": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 5 + }, + "RADIANCE": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 20 + }, + "RAMPAGING": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 10 + }, + "REFRESHMENT": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "REPLENISH": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 3 + }, + "RICOCHET": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "RUSHDOWN": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 10 + }, + "SHADOW_BARB": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": false, + "isAvailableForRandomSelection": false, + "maxLevel": 1, + "procChance": null + }, + "SHADOW_SHOT": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": false, + "isAvailableForRandomSelection": false, + "maxLevel": 1, + "procChance": 10 + }, + "SHARED_PAIN": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": false, + "isAvailableForRandomSelection": false, + "maxLevel": 3, + "procChance": null + }, + "SHOCKWAVE": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 10 + }, + "SMITING": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "SOUL_DEVOURER": { + "comment": [ + "Effect Offset: Additional XP,", + "Formula: amount * (1 + (level / offset)),", + "Offset Note: higher offset = less additional XP,", + "Default: 3.0f" + ], + "offset": 3.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "SOUL_SIPHON": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 10 + }, + "STUNNING": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 20 + }, + "SWIRLING": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 10 + }, + "TEMPO_THEFT": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": null + }, + "THUNDERING": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 20 + }, + "VOID_SHOT": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": false, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 25 + }, + "VOID_STRIKE": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": false, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 15 + }, + "WEAKENING": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 30 + }, + "WILD_RAGE": { + "comment": null, + "offset": 0.0, + "isEnabled": true, + "isAvailableForEnchantedBookOffer": false, + "isAvailableForRandomSelection": true, + "maxLevel": 3, + "procChance": 10 + } + } +} \ No newline at end of file diff --git a/config/mcdw/mcdw_items_registry.json5 b/config/mcdw/mcdw_items_registry.json5 new file mode 100644 index 0000000..9a40fe6 --- /dev/null +++ b/config/mcdw/mcdw_items_registry.json5 @@ -0,0 +1,5 @@ +{ + "ITEMS_ENABLED": { + "ITEM_BEE_STINGER": true + } +} \ No newline at end of file diff --git a/config/mcdw/mcdw_loot_config.json5 b/config/mcdw/mcdw_loot_config.json5 new file mode 100644 index 0000000..3b3480f --- /dev/null +++ b/config/mcdw/mcdw_loot_config.json5 @@ -0,0 +1,234 @@ +{ + // Chance to get a weapon from chests. Default = 0.10f + "findWeaponChance": 0.10000000149011612, + // Higher Number makes Luck give you potential for extra MCDW loot. Default = 1.2f + "bonusRollsWithLuck": 1.2000000476837158, + "WEAPONS_ENABLED_IN_LOOTTABLES": { + "ENABLE_WEAPONS_IN_LOOT_TABLES": true + }, + "COMMON_LOOT_TABLES": { + "COMMON_LOOT_TABLES": [ + "minecraft:chests/abandoned_mineshaft", + "minecraft:chests/shipwreck_supply", + "minecraft:chests/shipwreck_treasure", + "minecraft:chests/desert_pyramid", + "minecraft:chests/village/village_weaponsmith" + ] + }, + "UNCOMMON_LOOT_TABLES": { + "UNCOMMON_LOOT_TABLES": [ + "minecraft:chests/jungle_temple", + "minecraft:chests/nether_bridge", + "minecraft:chests/bastion_bridge", + "minecraft:chests/bastion_other", + "minecraft:chests/bastion_treasure" + ] + }, + "RARE_LOOT_TABLES": { + "RARE_LOOT_TABLES": [ + "minecraft:chests/underwater_ruin_small", + "minecraft:chests/underwater_ruin_big", + "minecraft:chests/ruined_portal", + "minecraft:chests/simple_dungeon", + "minecraft:chests/igloo_chest", + "minecraft:chests/pillager_outpost" + ] + }, + "EPIC_LOOT_TABLES": { + "EPIC_LOOT_TABLES": [ + "minecraft:chests/stronghold_corridor", + "minecraft:chests/stronghold_crossing", + "minecraft:chests/stronghold_library", + "minecraft:chests/end_city_treasure" + ] + }, + "AXE_SPAWN_RATES": { + "AXE_AXE": 10, + "AXE_FIREBRAND": 5, + "AXE_HIGHLAND": 5, + "AXE_ANCHOR": 10, + "AXE_ENCRUSTED_ANCHOR": 5 + }, + "DAGGER_SPAWN_RATES": { + "DAGGER_DAGGER": 10, + "DAGGER_FANGS_OF_FROST": 5, + "DAGGER_MOON": 5, + "DAGGER_SHEAR_DAGGER": 10, + "DAGGER_TEMPEST_KNIFE": 10, + "DAGGER_RESOLUTE_TEMPEST_KNIFE": 5, + "DAGGER_CHILL_GALE_KNIFE": 5, + "DAGGER_BACKSTABBER": 10, + "DAGGER_SWIFT_STRIKER": 5, + "DAGGER_VOID_TOUCHED_BLADE": 10, + "DAGGER_THE_BEGINNING": 5, + "DAGGER_THE_END": 5 + }, + "DOUBLE_AXE_SPAWN_RATES": { + "DOUBLE_AXE_DOUBLE": 10, + "DOUBLE_AXE_CURSED": 5, + "DOUBLE_AXE_WHIRLWIND": 5 + }, + "GAUNTLET_SPAWN_RATES": { + "GAUNTLET_GAUNTLET": 10, + "GAUNTLET_MAULERS": 5, + "GAUNTLET_SOUL_FISTS": 5 + }, + "GLAIVE_SPAWN_RATES": { + "GLAIVE_GLAIVE": 10, + "GLAIVE_GRAVE_BANE": 5, + "GLAIVE_VENOM_GLAIVE": 5, + "GLAIVE_CACKLING_BROOM": 5 + }, + "HAMMER_SPAWN_RATES": { + "HAMMER_GREAT_HAMMER": 10, + "HAMMER_STORMLANDER": 5, + "HAMMER_GRAVITY": 5, + "HAMMER_MACE": 10, + "HAMMER_FLAIL": 5, + "HAMMER_SUNS_GRACE": 5, + "HAMMER_BONECLUB": 10, + "HAMMER_BONE_CUDGEL": 5 + }, + "PICK_SPAWN_RATES": { + "PICK_DIAMOND_PICKAXE_VAR": 10, + "PICK_MOUNTAINEER_PICK": 10, + "PICK_HOWLING_PICK": 10, + "PICK_HAILING_PINNACLE": 10 + }, + "SCYTHE_SPAWN_RATES": { + "SCYTHE_JAILORS_SCYTHE": 10, + "SCYTHE_SOUL_SCYTHE": 5, + "SCYTHE_FROST_SCYTHE": 5, + "SCYTHE_SKULL_SCYTHE": 5 + }, + "SICKLE_SPAWN_RATES": { + "SICKLE_SICKLE": 10, + "SICKLE_NIGHTMARES_BITE": 5, + "SICKLE_LAST_LAUGH_GOLD": 5, + "SICKLE_LAST_LAUGH_SILVER": 5 + }, + "SOUL_DAGGER_SPAWN_RATES": { + "SOUL_DAGGER_SOUL_KNIFE": 10, + "SOUL_DAGGER_ETERNAL_KNIFE": 5, + "SOUL_DAGGER_TRUTHSEEKER": 5 + }, + "SPEAR_SPAWN_RATES": { + "SPEAR_SPEAR": 10, + "SPEAR_WHISPERING_SPEAR": 5, + "SPEAR_FORTUNE": 5 + }, + "STAFF_SPAWN_RATES": { + "STAFF_BATTLESTAFF": 10, + "STAFF_GROWING_STAFF": 5, + "STAFF_BATTLESTAFF_OF_TERROR": 5 + }, + "SWORD_SPAWN_RATES": { + "SWORD_BROADSWORD": 10, + "SWORD_CLAYMORE": 5, + "SWORD_FROST_SLAYER": 5, + "SWORD_HEARTSTEALER": 5, + "SWORD_GREAT_AXEBLADE": 5, + "SWORD_RAPIER": 10, + "SWORD_BEESTINGER": 5, + "SWORD_FREEZING_FOIL": 5, + "SWORD_CUTLASS": 10, + "SWORD_NAMELESS_BLADE": 5, + "SWORD_DANCERS_SWORD": 5, + "SWORD_KATANA": 10, + "SWORD_MASTERS_KATANA": 5, + "SWORD_DARK_KATANA": 5, + "SWORD_IRON_SWORD_VAR": 10, + "SWORD_DIAMOND_SWORD_VAR": 10, + "SWORD_HAWKBRAND": 5, + "SWORD_SINISTER": 1, + "SWORD_BROKEN_SAWBLADE": 5, + "SWORD_MECHANIZED_SAWBLADE": 1, + "SWORD_CORAL_BLADE": 10, + "SWORD_SPONGE_STRIKER": 5, + "SWORD_OBSIDIAN_CLAYMORE": 5, + "SWORD_THE_STARLESS_NIGHT": 1 + }, + "WHIP_SPAWN_RATES": { + "WHIP_WHIP": 10, + "WHIP_VINE_WHIP": 5 + }, + "BOW_SPAWN_RATES": { + "BOW_ANCIENT_BOW": 0, + "BOW_BONEBOW": 5, + "BOW_LOST_SOULS": 5, + "BOW_ELITE_POWER_BOW": 5, + "BOW_HAUNTED_BOW": 5, + "BOW_HUNTERS_PROMISE": 5, + "BOW_HUNTING_BOW": 10, + "BOW_MASTERS_BOW": 5, + "BOW_NOCTURNAL_BOW": 5, + "BOW_POWER_BOW": 10, + "BOW_SABREWING": 5, + "BOW_SNOW_BOW": 10, + "BOW_SOUL_BOW": 10, + "BOW_GREEN_MENACE": 5, + "BOW_PINK_SCOUNDREL": 5, + "BOW_TRICKBOW": 10, + "BOW_TWIN_BOW": 5, + "BOW_WINTERS_TOUCH": 5, + "BOW_SHIVERING_BOW": 5, + "BOW_WIND_BOW": 10, + "BOW_ECHO_OF_THE_VALLEY": 5, + "BOW_BURST_GALE_BOW": 5, + "BOW_TWISTING_VINE_BOW": 10, + "BOW_WEEPING_VINE_BOW": 10, + "BOW_BUBBLE_BOW": 10, + "BOW_BUBBLE_BURSTER": 5, + "BOW_VOID_BOW": 10, + "BOW_CALL_OF_THE_VOID": 5, + "BOW_PHANTOM_BOW": 10, + "BOW_WEB_BOW": 10 + }, + "LONGBOW_SPAWN_RATES": { + "BOW_LONGBOW": 10, + "BOW_GUARDIAN_BOW": 5, + "BOW_RED_SNAKE": 5 + }, + "SHORTBOW_SPAWN_RATES": { + "BOW_SHORTBOW": 10, + "BOW_MECHANICAL_SHORTBOW": 5, + "BOW_LOVE_SPELL_BOW": 5, + "BOW_PURPLE_STORM": 5 + }, + "CROSSBOW_SPAWN_RATES": { + "CROSSBOW_THE_SLICER": 5, + "CROSSBOW_AZURE_SEEKER": 5, + "CROSSBOW_EXPLODING_CROSSBOW": 5, + "CROSSBOW_IMPLODING_CROSSBOW": 5, + "CROSSBOW_FIREBOLT_THROWER": 5, + "CROSSBOW_HEAVY_CROSSBOW": 5, + "CROSSBOW_DOOM_CROSSBOW": 5, + "CROSSBOW_SLAYER_CROSSBOW": 5, + "CROSSBOW_RAPID_CROSSBOW": 5, + "CROSSBOW_BUTTERFLY_CROSSBOW": 5, + "CROSSBOW_AUTO_CROSSBOW": 5, + "CROSSBOW_SCATTER_CROSSBOW": 5, + "CROSSBOW_HARP_CROSSBOW": 5, + "CROSSBOW_LIGHTNING_HARP_CROSSBOW": 5, + "CROSSBOW_SOUL_CROSSBOW": 5, + "CROSSBOW_FERAL_SOUL_CROSSBOW": 5, + "CROSSBOW_VOIDCALLER_CROSSBOW": 5, + "CROSSBOW_DUAL_CROSSBOW": 5, + "CROSSBOW_SPELLBOUND_CROSSBOW": 5, + "CROSSBOW_BABY_CROSSBOW": 5, + "CROSSBOW_BURST_CROSSBOW": 5, + "CROSSBOW_SOUL_HUNTER_CROSSBOW": 5, + "CROSSBOW_CORRUPTED_CROSSBOW": 5, + "CROSSBOW_COG_CROSSBOW": 5, + "CROSSBOW_PRIDE_OF_THE_PIGLINS": 5, + "CROSSBOW_HARPOON_CROSSBOW": 5, + "CROSSBOW_NAUTICAL_CROSSBOW": 5, + "CROSSBOW_SHADOW_CROSSBOW": 5, + "CROSSBOW_VEILED_CROSSBOW": 5 + }, + "SHIELD_SPAWN_RATES": { + "SHIELD_ROYAL_GUARD": 5, + "SHIELD_TOWER_GUARD": 5, + "SHIELD_VANGUARD": 5 + } +} \ No newline at end of file diff --git a/config/mcdw/mcdw_stats_config.json5 b/config/mcdw/mcdw_stats_config.json5 new file mode 100644 index 0000000..acd7d79 --- /dev/null +++ b/config/mcdw/mcdw_stats_config.json5 @@ -0,0 +1,1472 @@ +{ + // Can use the following tags as repair ingredient -- minecraft:planks, minecraft:stone_crafting_materials. Other tags do not work. + "swordStats": { + "SWORD_BEESTINGER": { + "isEnabled": true, + "material": "iron", + "damage": 0, + "attackSpeed": -1.100000023841858, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SWORD_BROADSWORD": { + "isEnabled": true, + "material": "iron", + "damage": 5, + "attackSpeed": -3.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SWORD_BROKEN_SAWBLADE": { + "isEnabled": true, + "material": "iron", + "damage": 3, + "attackSpeed": -2.4000000953674316, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SWORD_CLAYMORE": { + "isEnabled": true, + "material": "iron", + "damage": 7, + "attackSpeed": -3.200000047683716, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SWORD_CORAL_BLADE": { + "isEnabled": true, + "material": "iron", + "damage": 3, + "attackSpeed": -2.4000000953674316, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SWORD_CUTLASS": { + "isEnabled": true, + "material": "iron", + "damage": 2, + "attackSpeed": -2.299999952316284, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SWORD_DANCERS_SWORD": { + "isEnabled": true, + "material": "iron", + "damage": 3, + "attackSpeed": -2.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SWORD_DARK_KATANA": { + "isEnabled": true, + "material": "netherite", + "damage": 4, + "attackSpeed": -2.9000000953674316, + "repairIngredient": [ + "minecraft:netherite_scrap" + ] + }, + "SWORD_DIAMOND_SWORD_VAR": { + "isEnabled": true, + "material": "diamond", + "damage": 3, + "attackSpeed": -2.4000000953674316, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "SWORD_FREEZING_FOIL": { + "isEnabled": true, + "material": "iron", + "damage": 1, + "attackSpeed": -1.100000023841858, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SWORD_FROST_SLAYER": { + "isEnabled": true, + "material": "diamond", + "damage": 6, + "attackSpeed": -3.200000047683716, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "SWORD_GREAT_AXEBLADE": { + "isEnabled": true, + "material": "iron", + "damage": 7, + "attackSpeed": -3.200000047683716, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SWORD_HAWKBRAND": { + "isEnabled": true, + "material": "iron", + "damage": 6, + "attackSpeed": -2.9000000953674316, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SWORD_HEARTSTEALER": { + "isEnabled": true, + "material": "diamond", + "damage": 6, + "attackSpeed": -3.200000047683716, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "SWORD_IRON_SWORD_VAR": { + "isEnabled": true, + "material": "iron", + "damage": 3, + "attackSpeed": -2.4000000953674316, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SWORD_KATANA": { + "isEnabled": true, + "material": "iron", + "damage": 4, + "attackSpeed": -2.9000000953674316, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SWORD_MASTERS_KATANA": { + "isEnabled": true, + "material": "diamond", + "damage": 4, + "attackSpeed": -2.9000000953674316, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "SWORD_MECHANIZED_SAWBLADE": { + "isEnabled": true, + "material": "diamond", + "damage": 3, + "attackSpeed": -2.4000000953674316, + "repairIngredient": [ + "minecraft:blaze_rod" + ] + }, + "SWORD_NAMELESS_BLADE": { + "isEnabled": true, + "material": "iron", + "damage": 4, + "attackSpeed": -2.299999952316284, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SWORD_OBSIDIAN_CLAYMORE": { + "isEnabled": true, + "material": "netherite", + "damage": 6, + "attackSpeed": -3.299999952316284, + "repairIngredient": [ + "minecraft:netherite_scrap" + ] + }, + "SWORD_RAPIER": { + "isEnabled": true, + "material": "iron", + "damage": 0, + "attackSpeed": -1.1399999856948853, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SWORD_SINISTER": { + "isEnabled": true, + "material": "iron", + "damage": 6, + "attackSpeed": -2.9000000953674316, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SWORD_SPONGE_STRIKER": { + "isEnabled": true, + "material": "diamond", + "damage": 3, + "attackSpeed": -2.4000000953674316, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "SWORD_THE_STARLESS_NIGHT": { + "isEnabled": true, + "material": "netherite", + "damage": 6, + "attackSpeed": -3.299999952316284, + "repairIngredient": [ + "minecraft:netherite_scrap" + ] + } + }, + "axeStats": { + "AXE_ANCHOR": { + "isEnabled": true, + "material": "iron", + "damage": 8, + "attackSpeed": -3.4000000953674316, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "AXE_AXE": { + "isEnabled": true, + "material": "iron", + "damage": 6, + "attackSpeed": -3.0999999046325684, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "AXE_ENCRUSTED_ANCHOR": { + "isEnabled": true, + "material": "diamond", + "damage": 8, + "attackSpeed": -3.4000000953674316, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "AXE_FIREBRAND": { + "isEnabled": true, + "material": "diamond", + "damage": 4, + "attackSpeed": -2.9000000953674316, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "AXE_HIGHLAND": { + "isEnabled": true, + "material": "iron", + "damage": 4, + "attackSpeed": -2.9000000953674316, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + } + }, + "doubleAxeStats": { + "DOUBLE_AXE_CURSED": { + "isEnabled": true, + "material": "iron", + "damage": 7, + "attackSpeed": -2.9000000953674316, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "DOUBLE_AXE_DOUBLE": { + "isEnabled": true, + "material": "iron", + "damage": 6, + "attackSpeed": -2.9000000953674316, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "DOUBLE_AXE_WHIRLWIND": { + "isEnabled": true, + "material": "iron", + "damage": 6, + "attackSpeed": -2.9000000953674316, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + } + }, + "daggerStats": { + "DAGGER_BACKSTABBER": { + "isEnabled": true, + "material": "diamond", + "damage": 1, + "attackSpeed": -1.7000000476837158, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "DAGGER_CHILL_GALE_KNIFE": { + "isEnabled": true, + "material": "diamond", + "damage": 2, + "attackSpeed": -2.200000047683716, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "DAGGER_DAGGER": { + "isEnabled": true, + "material": "iron", + "damage": 1, + "attackSpeed": -1.5, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "DAGGER_FANGS_OF_FROST": { + "isEnabled": true, + "material": "iron", + "damage": 1, + "attackSpeed": -1.5, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "DAGGER_MOON": { + "isEnabled": true, + "material": "iron", + "damage": 1, + "attackSpeed": -1.5, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "DAGGER_RESOLUTE_TEMPEST_KNIFE": { + "isEnabled": true, + "material": "iron", + "damage": 2, + "attackSpeed": -2.200000047683716, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "DAGGER_SHEAR_DAGGER": { + "isEnabled": true, + "material": "iron", + "damage": 0, + "attackSpeed": -1.5, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "DAGGER_SWIFT_STRIKER": { + "isEnabled": true, + "material": "netherite", + "damage": 1, + "attackSpeed": -1.7000000476837158, + "repairIngredient": [ + "minecraft:netherite_scrap" + ] + }, + "DAGGER_TEMPEST_KNIFE": { + "isEnabled": true, + "material": "iron", + "damage": 2, + "attackSpeed": -2.200000047683716, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "DAGGER_THE_BEGINNING": { + "isEnabled": true, + "material": "netherite", + "damage": 1, + "attackSpeed": -1.7999999523162842, + "repairIngredient": [ + "minecraft:netherite_scrap" + ] + }, + "DAGGER_THE_END": { + "isEnabled": true, + "material": "netherite", + "damage": 1, + "attackSpeed": -1.7999999523162842, + "repairIngredient": [ + "minecraft:netherite_scrap" + ] + }, + "DAGGER_VOID_TOUCHED_BLADE": { + "isEnabled": true, + "material": "diamond", + "damage": 1, + "attackSpeed": -1.7999999523162842, + "repairIngredient": [ + "minecraft:diamond" + ] + } + }, + "soulDaggerStats": { + "SOUL_DAGGER_ETERNAL_KNIFE": { + "isEnabled": true, + "material": "netherite", + "damage": 4, + "attackSpeed": -2.799999952316284, + "repairIngredient": [ + "minecraft:netherite_scrap" + ] + }, + "SOUL_DAGGER_SOUL_KNIFE": { + "isEnabled": true, + "material": "iron", + "damage": 4, + "attackSpeed": -2.799999952316284, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SOUL_DAGGER_TRUTHSEEKER": { + "isEnabled": true, + "material": "netherite", + "damage": 3, + "attackSpeed": -2.799999952316284, + "repairIngredient": [ + "minecraft:netherite_scrap" + ] + } + }, + "hammerStats": { + "HAMMER_BONECLUB": { + "isEnabled": true, + "material": "iron", + "damage": 7, + "attackSpeed": -3.200000047683716, + "repairIngredient": [ + "minecraft:bone_block" + ] + }, + "HAMMER_BONE_CUDGEL": { + "isEnabled": true, + "material": "netherite", + "damage": 7, + "attackSpeed": -3.200000047683716, + "repairIngredient": [ + "minecraft:netherite_scrap" + ] + }, + "HAMMER_FLAIL": { + "isEnabled": true, + "material": "iron", + "damage": 5, + "attackSpeed": -2.799999952316284, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "HAMMER_GRAVITY": { + "isEnabled": true, + "material": "diamond", + "damage": 6, + "attackSpeed": -3.200000047683716, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "HAMMER_GREAT_HAMMER": { + "isEnabled": true, + "material": "iron", + "damage": 6, + "attackSpeed": -3.200000047683716, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "HAMMER_MACE": { + "isEnabled": true, + "material": "iron", + "damage": 5, + "attackSpeed": -2.799999952316284, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "HAMMER_STORMLANDER": { + "isEnabled": true, + "material": "diamond", + "damage": 7, + "attackSpeed": -3.200000047683716, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "HAMMER_SUNS_GRACE": { + "isEnabled": true, + "material": "diamond", + "damage": 4, + "attackSpeed": -2.799999952316284, + "repairIngredient": [ + "minecraft:diamond" + ] + } + }, + "gauntletStats": { + "GAUNTLET_GAUNTLET": { + "isEnabled": true, + "material": "iron", + "damage": 0, + "attackSpeed": -1.5, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "GAUNTLET_MAULERS": { + "isEnabled": true, + "material": "diamond", + "damage": 1, + "attackSpeed": -1.5, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "GAUNTLET_SOUL_FISTS": { + "isEnabled": true, + "material": "netherite", + "damage": 0, + "attackSpeed": -1.5, + "repairIngredient": [ + "minecraft:netherite_scrap" + ] + } + }, + "sickleStats": { + "SICKLE_LAST_LAUGH_GOLD": { + "isEnabled": true, + "material": "iron", + "damage": 2, + "attackSpeed": -2.0999999046325684, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SICKLE_LAST_LAUGH_SILVER": { + "isEnabled": true, + "material": "iron", + "damage": 2, + "attackSpeed": -2.0999999046325684, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SICKLE_NIGHTMARES_BITE": { + "isEnabled": true, + "material": "iron", + "damage": 2, + "attackSpeed": -2.0999999046325684, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SICKLE_SICKLE": { + "isEnabled": true, + "material": "iron", + "damage": 1, + "attackSpeed": -2.0999999046325684, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + } + }, + "scytheStats": { + "SCYTHE_FROST_SCYTHE": { + "isEnabled": true, + "material": "diamond", + "damage": 4, + "attackSpeed": -2.9000000953674316, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "SCYTHE_JAILORS_SCYTHE": { + "isEnabled": true, + "material": "iron", + "damage": 4, + "attackSpeed": -2.9000000953674316, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SCYTHE_SKULL_SCYTHE": { + "isEnabled": true, + "material": "diamond", + "damage": 4, + "attackSpeed": -2.9000000953674316, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "SCYTHE_SOUL_SCYTHE": { + "isEnabled": true, + "material": "diamond", + "damage": 3, + "attackSpeed": -2.9000000953674316, + "repairIngredient": [ + "minecraft:diamond" + ] + } + }, + "pickStats": { + "PICK_DIAMOND_PICKAXE_VAR": { + "isEnabled": true, + "material": "diamond", + "damage": 1, + "attackSpeed": -2.799999952316284, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "PICK_HAILING_PINNACLE": { + "isEnabled": true, + "material": "diamond", + "damage": 1, + "attackSpeed": -2.799999952316284, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "PICK_HOWLING_PICK": { + "isEnabled": true, + "material": "iron", + "damage": 1, + "attackSpeed": -2.799999952316284, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "PICK_MOUNTAINEER_PICK": { + "isEnabled": true, + "material": "iron", + "damage": 1, + "attackSpeed": -2.799999952316284, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + } + }, + // This value is ignored if Better Combat is installed! Default: 1.0 + "extraAttackReachOfGlaives": 1.0, + "glaiveStats": { + "GLAIVE_CACKLING_BROOM": { + "isEnabled": true, + "material": "iron", + "damage": 5, + "attackSpeed": -3.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "GLAIVE_GLAIVE": { + "isEnabled": true, + "material": "iron", + "damage": 5, + "attackSpeed": -3.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "GLAIVE_GRAVE_BANE": { + "isEnabled": true, + "material": "iron", + "damage": 6, + "attackSpeed": -3.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "GLAIVE_VENOM_GLAIVE": { + "isEnabled": true, + "material": "iron", + "damage": 6, + "attackSpeed": -3.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + } + }, + // This value is ignored if Better Combat is installed! Default: 1.0 + "extraAttackReachOfSpears": 1.0, + "spearStats": { + "SPEAR_SPEAR": { + "isEnabled": true, + "material": "iron", + "damage": 4, + "attackSpeed": -2.5, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SPEAR_WHISPERING_SPEAR": { + "isEnabled": true, + "material": "iron", + "damage": 5, + "attackSpeed": -2.5, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "SPEAR_FORTUNE": { + "isEnabled": true, + "material": "iron", + "damage": 5, + "attackSpeed": -2.5, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + } + }, + // This value is ignored if Better Combat is installed! Default: 1.0 + "extraAttackReachOfStaves": 1.0, + "staffStats": { + "STAFF_BATTLESTAFF": { + "isEnabled": true, + "material": "wood", + "damage": 2, + "attackSpeed": -2.5999999046325684, + "repairIngredient": [ + "minecraft:planks" + ] + }, + "STAFF_BATTLESTAFF_OF_TERROR": { + "isEnabled": true, + "material": "iron", + "damage": 5, + "attackSpeed": -2.5999999046325684, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "STAFF_GROWING_STAFF": { + "isEnabled": true, + "material": "iron", + "damage": 5, + "attackSpeed": -2.5999999046325684, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + } + }, + // This value is ignored if Better Combat is installed! Default: 1.5 + "extraAttackReachOfWhips": 1.5, + "whipStats": { + "WHIP_VINE_WHIP": { + "isEnabled": true, + "material": "iron", + "damage": 5, + "attackSpeed": -3.0999999046325684, + "repairIngredient": [ + "minecraft:vine" + ] + }, + "WHIP_WHIP": { + "isEnabled": true, + "material": "iron", + "damage": 3, + "attackSpeed": -3.0999999046325684, + "repairIngredient": [ + "minecraft:string" + ] + } + }, + "bowStats": { + "BOW_ANCIENT_BOW": { + "isEnabled": true, + "material": "netherite", + "projectileDamage": 7.0, + "drawSpeed": 14, + "range": 18.0, + "repairIngredient": [ + "minecraft:netherite_scrap" + ] + }, + "BOW_BONEBOW": { + "isEnabled": true, + "material": "stone", + "projectileDamage": 5.0, + "drawSpeed": 16, + "range": 12.0, + "repairIngredient": [ + "minecraft:bone" + ] + }, + "BOW_BUBBLE_BOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 5.0, + "drawSpeed": 15, + "range": 12.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "BOW_BUBBLE_BURSTER": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 5.0, + "drawSpeed": 15, + "range": 13.0, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "BOW_BURST_GALE_BOW": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 6.0, + "drawSpeed": 12, + "range": 16.0, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "BOW_CALL_OF_THE_VOID": { + "isEnabled": true, + "material": "netherite", + "projectileDamage": 6.0, + "drawSpeed": 15, + "range": 16.0, + "repairIngredient": [ + "minecraft:netherite_scrap" + ] + }, + "BOW_ECHO_OF_THE_VALLEY": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 6.0, + "drawSpeed": 11, + "range": 16.0, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "BOW_ELITE_POWER_BOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 6.0, + "drawSpeed": 20, + "range": 15.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "BOW_GREEN_MENACE": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 5.0, + "drawSpeed": 17, + "range": 13.0, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "BOW_HAUNTED_BOW": { + "isEnabled": true, + "material": "netherite", + "projectileDamage": 6.0, + "drawSpeed": 18, + "range": 16.0, + "repairIngredient": [ + "minecraft:netherite_scrap" + ] + }, + "BOW_HUNTERS_PROMISE": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 6.0, + "drawSpeed": 15, + "range": 16.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "BOW_HUNTING_BOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 6.0, + "drawSpeed": 16, + "range": 15.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "BOW_LOST_SOULS": { + "isEnabled": true, + "material": "netherite", + "projectileDamage": 6.0, + "drawSpeed": 12, + "range": 17.0, + "repairIngredient": [ + "minecraft:netherite_scrap" + ] + }, + "BOW_MASTERS_BOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 6.0, + "drawSpeed": 17, + "range": 16.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "BOW_NOCTURNAL_BOW": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 6.0, + "drawSpeed": 17, + "range": 14.0, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "BOW_PHANTOM_BOW": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 6.0, + "drawSpeed": 20, + "range": 14.0, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "BOW_PINK_SCOUNDREL": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 5.0, + "drawSpeed": 17, + "range": 13.0, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "BOW_POWER_BOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 6.0, + "drawSpeed": 20, + "range": 14.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "BOW_SABREWING": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 5.0, + "drawSpeed": 10, + "range": 13.0, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "BOW_SHIVERING_BOW": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 6.0, + "drawSpeed": 14, + "range": 15.0, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "BOW_SNOW_BOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 5.0, + "drawSpeed": 16, + "range": 13.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "BOW_SOUL_BOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 6.0, + "drawSpeed": 14, + "range": 15.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "BOW_TRICKBOW": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 5.0, + "drawSpeed": 12, + "range": 12.0, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "BOW_TWIN_BOW": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 5.0, + "drawSpeed": 12, + "range": 12.0, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "BOW_TWISTING_VINE_BOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 5.0, + "drawSpeed": 15, + "range": 13.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "BOW_VOID_BOW": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 6.0, + "drawSpeed": 15, + "range": 16.0, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "BOW_WEB_BOW": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 5.0, + "drawSpeed": 15, + "range": 12.0, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "BOW_WEEPING_VINE_BOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 5.0, + "drawSpeed": 15, + "range": 13.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "BOW_WIND_BOW": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 6.0, + "drawSpeed": 11, + "range": 15.0, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "BOW_WINTERS_TOUCH": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 6.0, + "drawSpeed": 15, + "range": 14.0, + "repairIngredient": [ + "minecraft:diamond" + ] + } + }, + "shortbowStats": { + "BOW_LOVE_SPELL_BOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 3.0, + "drawSpeed": 9, + "range": 8.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "BOW_MECHANICAL_SHORTBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 4.0, + "drawSpeed": 9, + "range": 9.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "BOW_PURPLE_STORM": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 3.0, + "drawSpeed": 9, + "range": 8.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "BOW_SHORTBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 3.0, + "drawSpeed": 9, + "range": 8.0, + "repairIngredient": [ + "minecraft:planks" + ] + } + }, + "longbowStats": { + "BOW_GUARDIAN_BOW": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 8.0, + "drawSpeed": 30, + "range": 19.0, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "BOW_LONGBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 7.0, + "drawSpeed": 25, + "range": 17.0, + "repairIngredient": [ + "minecraft:planks" + ] + }, + "BOW_RED_SNAKE": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 7.0, + "drawSpeed": 30, + "range": 18.0, + "repairIngredient": [ + "minecraft:diamond" + ] + } + }, + "crossbowStats": { + "CROSSBOW_AUTO_CROSSBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 9.0, + "drawSpeed": 28, + "range": 8.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_AZURE_SEEKER": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 10.0, + "drawSpeed": 28, + "range": 8.399999618530273, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_BABY_CROSSBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 8.0, + "drawSpeed": 23, + "range": 7.199999809265137, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_BURST_CROSSBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 9.0, + "drawSpeed": 28, + "range": 8.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_BUTTERFLY_CROSSBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 10.0, + "drawSpeed": 28, + "range": 8.899999618530273, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_COG_CROSSBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 10.0, + "drawSpeed": 28, + "range": 8.399999618530273, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_CORRUPTED_CROSSBOW": { + "isEnabled": true, + "material": "netherite", + "projectileDamage": 16.0, + "drawSpeed": 22, + "range": 14.0, + "repairIngredient": [ + "minecraft:netherite_scrap" + ] + }, + "CROSSBOW_DOOM_CROSSBOW": { + "isEnabled": true, + "material": "netherite", + "projectileDamage": 9.0, + "drawSpeed": 26, + "range": 8.0, + "repairIngredient": [ + "minecraft:netherite_scrap" + ] + }, + "CROSSBOW_DUAL_CROSSBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 8.0, + "drawSpeed": 24, + "range": 7.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_EXPLODING_CROSSBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 9.0, + "drawSpeed": 28, + "range": 8.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_FERAL_SOUL_CROSSBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 10.0, + "drawSpeed": 28, + "range": 9.199999809265137, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_FIREBOLT_THROWER": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 9.0, + "drawSpeed": 28, + "range": 7.900000095367432, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_HARPOON_CROSSBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 12.0, + "drawSpeed": 28, + "range": 11.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_HARP_CROSSBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 10.0, + "drawSpeed": 28, + "range": 8.600000381469727, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_HEAVY_CROSSBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 9.0, + "drawSpeed": 28, + "range": 8.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_IMPLODING_CROSSBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 9.0, + "drawSpeed": 28, + "range": 8.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_LIGHTNING_HARP_CROSSBOW": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 16.0, + "drawSpeed": 28, + "range": 14.199999809265137, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "CROSSBOW_NAUTICAL_CROSSBOW": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 16.0, + "drawSpeed": 24, + "range": 14.0, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "CROSSBOW_PRIDE_OF_THE_PIGLINS": { + "isEnabled": true, + "material": "netherite", + "projectileDamage": 15.0, + "drawSpeed": 20, + "range": 13.0, + "repairIngredient": [ + "minecraft:netherite_scrap" + ] + }, + "CROSSBOW_RAPID_CROSSBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 9.0, + "drawSpeed": 20, + "range": 8.199999809265137, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_SCATTER_CROSSBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 9.0, + "drawSpeed": 28, + "range": 8.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_SHADOW_CROSSBOW": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 14.0, + "drawSpeed": 25, + "range": 12.0, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "CROSSBOW_SLAYER_CROSSBOW": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 10.0, + "drawSpeed": 26, + "range": 8.800000190734863, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "CROSSBOW_SOUL_CROSSBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 9.0, + "drawSpeed": 28, + "range": 8.0, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_SOUL_HUNTER_CROSSBOW": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 12.0, + "drawSpeed": 28, + "range": 11.0, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "CROSSBOW_SPELLBOUND_CROSSBOW": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 10.0, + "drawSpeed": 28, + "range": 8.899999618530273, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_THE_SLICER": { + "isEnabled": true, + "material": "iron", + "projectileDamage": 12.0, + "drawSpeed": 28, + "range": 10.199999809265137, + "repairIngredient": [ + "minecraft:iron_ingot" + ] + }, + "CROSSBOW_VEILED_CROSSBOW": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 16.0, + "drawSpeed": 22, + "range": 14.5, + "repairIngredient": [ + "minecraft:diamond" + ] + }, + "CROSSBOW_VOIDCALLER_CROSSBOW": { + "isEnabled": true, + "material": "diamond", + "projectileDamage": 14.0, + "drawSpeed": 26, + "range": 12.5, + "repairIngredient": [ + "minecraft:diamond" + ] + } + }, + "shieldStats": { + "SHIELD_ROYAL_GUARD": { + "isEnabled": true, + "material": "diamond", + "repairIngredient": [ + "minecraft:iron_ingot", + "minecraft:gold_ingot" + ] + }, + "SHIELD_TOWER_GUARD": { + "isEnabled": true, + "material": "diamond", + "repairIngredient": [ + "minecraft:iron_ingot", + "minecraft:gold_ingot", + "minecraft:copper_ingot" + ] + }, + "SHIELD_VANGUARD": { + "isEnabled": true, + "material": "diamond", + "repairIngredient": [ + "minecraft:planks", + "minecraft:iron_ingot" + ] + } + } +} \ No newline at end of file diff --git a/config/midnightlib.json b/config/midnightlib.json new file mode 100644 index 0000000..5449537 --- /dev/null +++ b/config/midnightlib.json @@ -0,0 +1,3 @@ +{ + "config_screen_list": "MODMENU" +} \ No newline at end of file diff --git a/config/minecells-client.json5 b/config/minecells-client.json5 new file mode 100644 index 0000000..3694d5a --- /dev/null +++ b/config/minecells-client.json5 @@ -0,0 +1,51 @@ +{ + "rendering": { + // default: false + "opaqueParticles": false, + // default: true + "shockerGlow": true, + // default: true + "grenadierGlow": true, + // default: true + "leapingZombieGlow": true, + // default: true + "disgustingWormGlow": true, + // default: true + "protectorGlow": true, + // default: true + "rancidRatGlow": true, + // default: true + "scorpionGlow": true + }, + // The screen shake intensity for various events. + "screenShake": { + // Affects all screen shake events. Can also be adjusted in the game's accessibility settings. + "global": 1.0, + // Weapons + "weaponFlint": 1.5, + "weaponLightningBolt": 0.5, + // Shields + "shieldBlock": 0.4, + "shieldParry": 0.8, + // Conjunctivius Boss + "conjunctiviusSmash": 1.0, + "conjunctiviusRoar": 1.0, + "conjunctiviusDeath": 2.0, + // Concierge Boss + "conciergeLeap": 2.0, + "conciergeStep": 0.25, + "conciergeRoar": 1.0, + "conciergeDeath": 2.0, + // Other + "explosion": 0.75 + }, + // If you enable this and have the 3D Weapon Pack installed, weapons will only be displayed as 3D in hand. + // In the inventory, they will be displayed as the original 2D textures. + "keepOriginalGuiModels": false, + // Whether to show a little red sword icon next to your crosshair if the weapon you are holding will deal critical damage on the next hit. + "showCritIndicator": true, + //Loops the song playing in a given dimension. If disabled, the Vanilla music algorithm will be used. + "experimentalMusicLooping": true, + //Enables the MineCells custom boss bar rendering. + "customBossBars": true +} diff --git a/config/minecells-common.json5 b/config/minecells-common.json5 new file mode 100644 index 0000000..b92f8c8 --- /dev/null +++ b/config/minecells-common.json5 @@ -0,0 +1,32 @@ +{ + "elevator": { + // default: 256, min: 64, max: 320 + "maxAssemblyHeight": 256, + // default: 1, min: 1, max: 10 + "minAssemblyHeight": 1, + // default: 1.0, min: 0.1, max: 2.5 + "speed": 1.0, + // default: 0.01, min: 0.001, max: 0.1 + "acceleration": 0.01, + // default: 10.0, min: 0.0, max: 20.0 + "damage": 10.0 + }, + // Whether the entry door to boss rooms should remain unlocked + "unlockedBossEntry": false, + // Forces the teleport between dimensions method to be used from the main server thread + // Might be necessary when used with mods that mess with threading, like C2ME (if DEFAULT is set, this option will enable itself if that mod is present) + // Warning: This may cause weird desync issues, so use at your own risk and only if it crashes without it + // Possible values: ALWAYS | NEVER | DEFAULT + "teleportForceMainThread": "DEFAULT", + // Whether the Mine Cells data should automatically get wiped after major updates + "autoWipeData": true, + // Disable the fall protection feature of the Ramparts. + // This will let players explore the bottom of the dimension freely, but keep in mind: + // that isn't the intended way to explore the dimension. + "disableFallProtection": false, + // The maximum distance (in blocks) the Conjunctivius' Tentacle weapon can stretch when activated + // Breaks at large distances (above around 64 blocks), so be careful with high values. + "baseTentacleMaxDistance": 24, + //The additional time (in ticks) after holding up a shield that allows you to parry an attack + "additionalParryTime": 0 +} diff --git a/config/mobplaques-client.toml b/config/mobplaques-client.toml new file mode 100644 index 0000000..f668e96 --- /dev/null +++ b/config/mobplaques-client.toml @@ -0,0 +1,63 @@ +[general] + #Show a black background box behind plaques. Disabled by default as it doesn't work with shaders. + plaque_background = true + #Distance to the mob at which plaques will still be visible. The distance is halved when the mob is crouching. + #Range: > 0 + max_render_distance = 48 + #Always render plaques with full brightness to be most visible, ignoring local lighting conditions. + #Allowed Values: ALWAYS, UNOBSTRUCTED, NEVER + full_brightness = "UNOBSTRUCTED" + #Selectors for choosing mobs to render plaques for. + #Selectors for choosing mobs to render plaques for. + #Allowed Values: ALL, TAMED, TAMED_ONLY_OWNER, PLAYER, MONSTER, BOSS, MOUNT + allowed_mob_selectors = ["ALL"] + #Height offset from default position. + #Range: > -2147483648 + height_offset = 0 + #Entities blacklisted from showing any plaques. + #Format for every entry is ":". Tags are supported, must be in the format of "#:". Namespace may be omitted to use "minecraft" by default. May use asterisk as wildcard parameter via pattern matching, e.g. "minecraft:*_shulker_box" to match all shulker boxes no matter of color. Begin an entry with "!" to make sure it is excluded, useful e.g. when it has already been matched by another pattern. + mob_blacklist = ["minecraft:armor_stand"] + #Show plaques from mobs obstructed by walls the player cannot see through, similar to the nameplates of other players. + behind_walls = false + #Are mob plaques enabled, toggleable in-game using the 'J' key by default. + allow_rendering = true + #Selectors for choosing mobs to prevent rendering plaques for, takes priority over allowed list. + #Selectors for choosing mobs to prevent rendering plaques for, takes priority over allowed list. + #Allowed Values: ALL, TAMED, TAMED_ONLY_OWNER, PLAYER, MONSTER, BOSS, MOUNT + disallowed_mob_selectors = [] + #Amount of pixels a row of plaques may take up, when exceeding this value a new row will be started. + #Range: > 0 + max_plaque_row_width = 108 + #Show plaques for the entity picked by the crosshair only. + picked_entity = false + #Dynamically increase plaque size the further away the camera is to simplify readability. + scale_with_distance = true + #Hide all plaques when mob has full health. + hide_at_full_health = false + #Render mob plaques below the mob's name tag instead of above. + render_below_name_tag = false + #Custom scale for rendering plaques. + #Range: 0.05 ~ 2.0 + plaque_scale = 0.5 +[health] + #Show current amount either as percentage or as absolute value. + #Allowed Values: ABSOLUTE, ABSOLUTE_WITH_MAX, RELATIVE + plaque_value = "ABSOLUTE_WITH_MAX" + #Transition text colors depending on current percentage. + shift_colors = false + #Allow for rendering this type of plaque. + allow_rendering = true +[air] + #Show current amount either as percentage or as absolute value. + #Allowed Values: ABSOLUTE, ABSOLUTE_WITH_MAX, RELATIVE + plaque_value = "RELATIVE" + #Transition text colors depending on current percentage. + shift_colors = false + #Allow for rendering this type of plaque. + allow_rendering = true +[armor] + #Allow for rendering this type of plaque. + allow_rendering = true +[toughness] + #Allow for rendering this type of plaque. + allow_rendering = true diff --git a/config/mobs_of_mythology.properties b/config/mobs_of_mythology.properties new file mode 100644 index 0000000..358d088 --- /dev/null +++ b/config/mobs_of_mythology.properties @@ -0,0 +1,19 @@ +automatonHealth=100.0 +automatonAttackDamage=16.0 +chupacabraHealth=16.0 +chupacabraAttackDamage=6.0 +chupacabraSpawnWeight=30 +koboldHealth=20.0 +koboldAttackDamage=2.5 +koboldSpawnWeight=70 +koboldWarriorHealth=20.0 +koboldWarriorArmor=6.0 +koboldWarriorAttackDamage=5.5 +koboldWarriorSpawnWeight=60 +drakeHealth=30.0 +drakeAttackDamage=5.0 +drakeSpawnWeight=10 +sporelingHealth=6.0 +redSporelingLines=playerGreeting;Seen any smurfs lately?;I hate Gargamel...;Mondays, huh?;You're a big fellow!;Please don't eat me!;Why did the Creeper hang out with me? Because I'm such a fun-gi to be around!;They say I'm a fun-gi, but I think I'm just a cap-tivating conversationalist!;Looking for a spore-tacular time? You've found the right mushroom!;Did you hear about the fungi who threw a party? It was a real spore-gy!;I'm not edibles!;My cousin Brownie is an alchemist.;Do you know of a bard named Smash Mouth? I hear he's an All Star.;I'm not a regular mushroom; I'm a spore-tacular mushroom!;Some people blame me for the apocalypse...;ƒ¡ƒÃƒÇ? ƒÐƒÍƒÒ ƒ£ƒÉƒÉ?ƒÂƒ¿! +brownSporelingLines=Why do I feel like a fun-guy in a no-fun zone?;You want a piece of my spore attitude? Take a hike!;Life's a spore-t, and then you decompose.;Step back, or I'll give you a spore-tacular scowl!;Why do players always pick on mushrooms? Can't we just have a cap-py existence?;I'd rather be left alone in my dark corner. No mushroom for company!;I don't have mushroom for joy, just a whole lot of fung-titude!;Have a fung-tastic day...;I am responsible for the apocalypse.;I'm not grumpy, I'm just a fungi with a perpetual frown.;Why are you bothering me? Can't you see I'm having a spore day?;Why do players keep trying to cheer me up? Do I look like a sunflower to you?;I'm like a mushroom, growing in the darkness of my grumpy thoughts.;Step lightly, or you might awaken the wrath of the grumpy mushroom!;Why be a fun-guy when you can be a grump-guy?;I've mastered the art of being perpetually annoyed. It's my spore-cialty!;Let's get blazed! Go bring the blaze rod.;Is it 4:20 already? +sporelingSpawnWeight=16 diff --git a/config/modernfix-mixins.properties b/config/modernfix-mixins.properties new file mode 100644 index 0000000..3e4aecd --- /dev/null +++ b/config/modernfix-mixins.properties @@ -0,0 +1,73 @@ +# This is the configuration file for ModernFix. +# In general, prefer using the config screen to editing this file. It can be accessed +# via the standard mod menu on your respective mod loader. Changes will, however, +# require restarting the game to take effect. +# +# The following options can be enabled or disabled if there is a compatibility issue. +# Add a line with your option name and =true or =false at the bottom of the file to enable +# or disable a rule. For example: +# mixin.perf.dynamic_resources=true +# Do not include the #. You may reset to defaults by deleting this file. +# +# Available options: +# mixin.bugfix.buffer_builder_leak=true # (default) +# mixin.bugfix.chunk_deadlock=true # (default) +# mixin.bugfix.concurrency=true # (default) +# mixin.bugfix.ender_dragon_leak=true # (default) +# mixin.bugfix.packet_leak=false # (default) +# mixin.bugfix.paper_chunk_patches=true # (default) +# mixin.bugfix.restore_old_dragon_movement=false # (default) +# mixin.bugfix.world_leaks=true # (default) +# mixin.bugfix.world_screen_skipped=true # (default) +# mixin.devenv=false # (default) +# mixin.feature.branding=true # (default) +# mixin.feature.cause_lag_by_disabling_threads=false # (default) +# mixin.feature.direct_stack_trace=false # (default) +# mixin.feature.disable_unihex_font=false # (default) +# mixin.feature.integrated_server_watchdog=true # (default) +# mixin.feature.measure_time=true # (default) +# mixin.feature.remove_chat_signing=false # (default) +# mixin.feature.snapshot_easter_egg=true # (default) +# mixin.feature.spam_thread_dump=false # (default) +# mixin.feature.spark_profile_launch=false # (default) +# mixin.feature.stalled_chunk_load_detection=false # (default) +# mixin.feature.warn_missing_perf_mods=true # (default) +# mixin.launch.class_search_cache=true # (default) +# mixin.perf.blast_search_trees=true # (default) +# mixin.perf.blast_search_trees.force=false # (default) +# mixin.perf.cache_blockstate_cache_arrays=true # (default) +# mixin.perf.cache_model_materials=true # (default) +# mixin.perf.cache_profile_texture_url=true # (default) +# mixin.perf.cache_strongholds=true # (default) +# mixin.perf.cache_upgraded_structures=true # (default) +# mixin.perf.clear_fabric_mapping_tables=false # (default) +# mixin.perf.clear_mixin_classinfo=false # (default) +# mixin.perf.compact_bit_storage=true # (default) +# mixin.perf.dedicated_reload_executor=true # (default) +# mixin.perf.deduplicate_climate_parameters=false # (default) +# mixin.perf.deduplicate_location=false # (default) +# mixin.perf.deduplicate_wall_shapes=true # (default) +# mixin.perf.dynamic_dfu=true # (default) +# mixin.perf.dynamic_entity_renderers=false # (default) +# mixin.perf.dynamic_resources=false # (default) +# mixin.perf.dynamic_sounds=true # (default) +# mixin.perf.dynamic_structure_manager=true # (default) +# mixin.perf.faster_command_suggestions=true # (default) +# mixin.perf.faster_item_rendering=false # (default) +# mixin.perf.faster_structure_location=true # (default) +# mixin.perf.faster_texture_stitching=true # (default) +# mixin.perf.fix_loop_spin_waiting=true # (default) +# mixin.perf.model_optimizations=true # (default) +# mixin.perf.mojang_registry_size=true # (default) +# mixin.perf.nbt_memory_usage=true # (default) +# mixin.perf.reduce_blockstate_cache_rebuilds=true # (default) +# mixin.perf.remove_biome_temperature_cache=true # (default) +# mixin.perf.remove_spawn_chunks=false # (default) +# mixin.perf.resourcepacks=true # (default) +# mixin.perf.state_definition_construct=true # (default) +# mixin.perf.thread_priorities=true # (default) +# mixin.perf.ticking_chunk_alloc=true # (default) +# mixin.perf.worldgen_allocation=false # (default) +# mixin.safety=true # (default) +# +# User overrides go here. diff --git a/config/modmenu.json b/config/modmenu.json new file mode 100644 index 0000000..774b301 --- /dev/null +++ b/config/modmenu.json @@ -0,0 +1,30 @@ +{ + "sorting": "ascending", + "count_libraries": true, + "compact_list": false, + "count_children": true, + "mods_button_style": "classic", + "game_menu_button_style": "replace_bugs", + "count_hidden_mods": true, + "mod_count_location": "title_screen", + "hide_mod_links": false, + "show_libraries": false, + "hide_mod_license": false, + "hide_badges": false, + "hide_mod_credits": false, + "easter_eggs": true, + "modify_title_screen": true, + "modify_game_menu": true, + "hide_config_buttons": false, + "random_java_colors": false, + "translate_names": true, + "translate_descriptions": true, + "config_mode": false, + "disable_drag_and_drop": false, + "hidden_mods": [], + "hidden_configs": [], + "disable_update_checker": [], + "update_checker": true, + "button_update_badge": true, + "quick_configure": true +} \ No newline at end of file diff --git a/config/moreculling.toml b/config/moreculling.toml new file mode 100644 index 0000000..69c7693 --- /dev/null +++ b/config/moreculling.toml @@ -0,0 +1,23 @@ +version = 1 +enableSodiumMenu = true +cloudCulling = true +signTextCulling = true +rainCulling = true +useBlockStateCulling = true +useCustomItemFrameRenderer = true +itemFrameMapCulling = true +useItemFrameLOD = true +itemFrameLODRange = 16 +useItemFrame3FaceCulling = true +itemFrame3FaceCullingRange = 2.0 +leavesCullingMode = "DEFAULT" +leavesCullingAmount = 2 +includeMangroveRoots = false +powderSnowCulling = true +endGatewayCulling = false +beaconBeamCulling = true +entityModelCulling = false +useOnModdedBlocksByDefault = true + +[modCompatibility] +minecraft = true diff --git a/config/mutantmonsters-common.toml b/config/mutantmonsters-common.toml new file mode 100644 index 0000000..82b0f8b --- /dev/null +++ b/config/mutantmonsters-common.toml @@ -0,0 +1,12 @@ +#Weight for mutant creeper spawns as a percentage of the vanilla creeper spawn weight. Mutants can spawn in every biome and dimension where their vanilla counterparts can be found. +#Range: 0.0 ~ 20.0 +mutant_creeper_spawn_weight = 0.05 +#Weight for mutant enderman spawns as a percentage of the vanilla enderman spawn weight. Mutants can spawn in every biome and dimension where their vanilla counterparts can be found. +#Range: 0.0 ~ 20.0 +mutant_enderman_spawn_weight = 0.05 +#Weight for mutant skeleton spawns as a percentage of the vanilla skeleton spawn weight. Mutants can spawn in every biome and dimension where their vanilla counterparts can be found. +#Range: 0.0 ~ 20.0 +mutant_skeleton_spawn_weight = 0.05 +#Weight for mutant zombie spawns as a percentage of the vanilla zombie spawn weight. Mutants can spawn in every biome and dimension where their vanilla counterparts can be found. +#Range: 0.0 ~ 20.0 +mutant_zombie_spawn_weight = 0.05 diff --git a/config/mutantmonsters-server.toml b/config/mutantmonsters-server.toml new file mode 100644 index 0000000..c3160e5 --- /dev/null +++ b/config/mutantmonsters-server.toml @@ -0,0 +1,6 @@ +#Maximum distance the endersoul hand can be used to travel to. +#Range: 0 ~ 128 +endersoul_hand_teleport_distance = 128 +#When infested with a Mutant X potion, what mutant mob should the target transform into. Otherwise the target will ony explode and take damage. +#Format for every entry is ":,:" with the second id representing the mutant. Namespace may be omitted to use "minecraft" by default. +mutant_x_conversions = ["minecraft:creeper,mutantmonsters:mutant_creeper", "minecraft:enderman,mutantmonsters:mutant_enderman", "minecraft:skeleton,mutantmonsters:mutant_skeleton", "minecraft:snow_golem,mutantmonsters:mutant_snow_golem", "minecraft:zombie,mutantmonsters:mutant_zombie", "minecraft:pig,mutantmonsters:spider_pig"] diff --git a/config/mythicupgrades-config.json5 b/config/mythicupgrades-config.json5 new file mode 100644 index 0000000..c9c74cb --- /dev/null +++ b/config/mythicupgrades-config.json5 @@ -0,0 +1,37 @@ +{ + "aquamarineConfig": { + "tools_freeze_duration": 0.5, + "ice_shield_duration": 1.0, + "ice_shield_amplifier": 2 + }, + "peridotConfig": { + "tools_poison_duration": 1.5, + "tools_poison_amplifier": 2, + "poisonous_thorns_poison_duration": 3.0, + "poisonous_thorns_amplifier": 1 + }, + "rubyConfig": { + "tools_haste_amplifier": 0, + "miners_shield_amplifier": 0, + "miners_shield_duration": 2.0 + }, + "sapphireConfig": { + "tools_percentage_damage_percent": 5, + "damage_deflection_amplifier": 2 + }, + "topazConfig": { + "item_mastery_amplifier": 4 + }, + "ametrineConfig": { + "tools_levitation_duration": 0.75, + "tools_levitation_amplifier": 4, + "arcane_aura_duration": 0.75, + "arcane_aura_amplifier": 2 + }, + "jadeConfig": { + "tools_bouncer_duration": 2.0, + "tools_bouncer_amplifier": 4, + "speed_amplifier": 2, + "jump_boost_amplifier": 2 + } +} \ No newline at end of file diff --git a/config/naturalist.json b/config/naturalist.json new file mode 100644 index 0000000..9296634 --- /dev/null +++ b/config/naturalist.json @@ -0,0 +1,36 @@ +{ + "fireflySpawnWeight": 500, + "bluejaySpawnWeight": 8, + "canarySpawnWeight": 8, + "cardinalSpawnWeight": 8, + "robinSpawnWeight": 8, + "finchSpawnWeight": 8, + "sparrowSpawnWeight": 8, + "butterflySpawnWeight": 20, + "snailSpawnWeight": 5, + "snakeSpawnWeight": 4, + "coralSnakeSpawnWeight": 4, + "rattlesnakeSpawnWeight": 4, + "bearSpawnWeight": 8, + "deerSpawnWeight": 8, + "rhinoSpawnWeight": 15, + "lionSpawnWeight": 8, + "elephantSpawnWeight": 10, + "zebraSpawnWeight": 10, + "giraffeSpawnWeight": 10, + "hippoSpawnWeight": 15, + "vultureSpawnWeight": 15, + "boarSpawnWeight": 15, + "dragonflySpawnWeight": 8, + "catfishSpawnWeight": 5, + "alligatorSpawnWeight": 15, + "bassSpawnWeight": 8, + "lizardSpawnWeight": 15, + "tortoiseSpawnWeight": 6, + "duckSpawnWeight": 15, + "forestRabbitSpawnWeight": 6, + "forestFoxSpawnWeight": 6, + "removeSavannaFarmAnimals": true, + "removeSwampFarmAnimals": true, + "removeForestPigs": true +} \ No newline at end of file diff --git a/config/naturescompass.json b/config/naturescompass.json new file mode 100644 index 0000000..9164ccb --- /dev/null +++ b/config/naturescompass.json @@ -0,0 +1,26 @@ +{ + "common": { + "allowTeleportComment": "Allows a player to teleport to a located biome when in creative mode, opped, or in cheat mode.", + "allowTeleport": true, + "displayCoordinatesComment": "Allows players to view the precise coordinates and distance of a located structure on the HUD, rather than relying on the direction the compass is pointing.", + "displayCoordinates": true, + "maxSamplesComment": "The maximum number of samples to be taken when searching for a biome.", + "maxSamples": 50000, + "radiusModifierComment": "biomeSize * radiusModifier = maxSearchRadius. Raising this value will increase search accuracy but will potentially make the process more resource .", + "radiusModifier": 2500, + "sampleSpaceModifierComment": "biomeSize * sampleSpaceModifier = sampleSpace. Lowering this value will increase search accuracy but will make the process more resource intensive.", + "sampleSpaceModifier": 16, + "biomeBlacklistComment": "A list of biomes that the compass will not be able to search for, specified by resource location. The wildcard character * can be used to match any number of characters, and ? can be used to match one character. Ex (ignore backslashes): [\"minecraft:savanna\", \"minecraft:desert\", \"minecraft:*ocean*\"]", + "biomeBlacklist": [] + }, + "client": { + "displayWithChatOpenComment": "Displays Nature's Compass information even while chat is open.", + "displayWithChatOpen": true, + "fixBiomeNamesComment": "Fixes biome names by adding missing spaces. Ex: ForestHills becomes Forest Hills", + "fixBiomeNames": true, + "overlayLineOffsetComment": "The line offset for information rendered on the HUD.", + "overlayLineOffset": 1, + "overlaySideComment": "The side for information rendered on the HUD. Ex: LEFT, RIGHT", + "overlaySide": "LEFT" + } +} \ No newline at end of file diff --git a/config/necronomicon.json5 b/config/necronomicon.json5 new file mode 100644 index 0000000..472a3e6 --- /dev/null +++ b/config/necronomicon.json5 @@ -0,0 +1,17 @@ +{ + // This is used to debug stuff + "debug": false, + // A test boolean + "test": false, + // A list! + // Supports multiple values using List.of() + "list": [ + "test", + "test2" + ], + "exampleColors": { + "red": 255, + "green": 255, + "blue": 255 + } +} \ No newline at end of file diff --git a/config/neruina.json b/config/neruina.json new file mode 100644 index 0000000..1affbf7 --- /dev/null +++ b/config/neruina.json @@ -0,0 +1,10 @@ +{ + "log_level": "OPERATORS", + "auto_kill_ticking_entities": false, + "ticking_exception_threshold": 10, + "handle_ticking_entities": true, + "handle_ticking_block_entities": true, + "handle_ticking_block_states": true, + "handle_ticking_item_stacks": true, + "handle_ticking_players": true +} \ No newline at end of file diff --git a/config/nicerskies.json b/config/nicerskies.json new file mode 100644 index 0000000..c4f4b27 --- /dev/null +++ b/config/nicerskies.json @@ -0,0 +1 @@ +{"lightmapTweaked":false,"twinklingStars":true,"renderNebulas":true,"nebulasInOtherDimensions":false,"nebulaConfig":{"nebulaStrength":1.0,"nebulaNoiseAmount":0.5,"nebulaNoiseScale":1.0,"baseColourAmount":128,"renderDuringDay":false}} \ No newline at end of file diff --git a/config/nomobfarm.properties b/config/nomobfarm.properties new file mode 100644 index 0000000..81060b0 --- /dev/null +++ b/config/nomobfarm.properties @@ -0,0 +1,30 @@ +# +#Mon Aug 05 19:38:06 CDT 2024 +spawner_slowdown_near_rate=20 +bamboo_drop_requires_player=false +reinforcement_penalty_conversion=true +spawner_recovery_rate=0.001 +raid_center_min_randomization=16 +natural_offline_persistence=259200 +natural_recovery_rate=3.0E-4 +gourd_drop_requires_player=false +spawner_max_wait=10000 +reinforcement_penalty=0.049 +farmer_instant_pickup=true +spawner_max_deaths=-1 +raid_min_size=512 +death_logging=false +piston_moves_gourd=false +natural_max_deaths=-1 +spawner_offline_persistence=259200 +cactus_drop_requires_player=false +spawner_slowdown_far_rate=100 +raid_center_max_randomization=24 +natural_max_wait=100000 +natural_min_deaths=0 +sugar_cane_drop_requires_player=false +raid_no_bad_omen_loop=true +spawner_slowdown_rate=20 +golem_detection_memory=10000 +spawner_min_deaths=15 +natural_slowdown_rate=1000 diff --git a/config/orpheus-config.json b/config/orpheus-config.json new file mode 100644 index 0000000..b5d81ff --- /dev/null +++ b/config/orpheus-config.json @@ -0,0 +1,3 @@ +{ + "orpheusLyrePower": "keep" +} \ No newline at end of file diff --git a/config/oxidized_config.json b/config/oxidized_config.json new file mode 100644 index 0000000..bb5c596 --- /dev/null +++ b/config/oxidized_config.json @@ -0,0 +1,14 @@ +{ + "copper_rail_range": 50, + "enable_copper_pulsar": true, + "pulsar_reach": 10, + "iron_nugget_chance": 0.15, + "gold_nugget_chance": 0.15, + "sand_chance": 0.24, + "gravel_chance": 0.12, + "emerald_chance": 0.02, + "enable_copper_pan_sound": true, + "copper_golem_button_chance": 30, + "enable_copper_golem": true, + "enable_rose_gold_tools": true +} \ No newline at end of file diff --git a/config/packetfixer.properties b/config/packetfixer.properties new file mode 100644 index 0000000..18f0c1c --- /dev/null +++ b/config/packetfixer.properties @@ -0,0 +1,8 @@ +#Packet Fixer config file. +#Default values (minecraft default): nbtMaxSize 2097152, packetSize 1048576, decoderSize 2097152 and varInt21Size 3. +#Max values are 2147483647 for packetSize/decoderSize/varInt21 and 9223372036854775807 for nbtMaxSize. +#Thu Aug 08 14:56:16 MDT 2024 +nbtMaxSize=209715200 +decoderSize=838860800 +packetSize=104857600 +varInt21=8 diff --git a/config/pal.properties b/config/pal.properties new file mode 100644 index 0000000..18d2b27 --- /dev/null +++ b/config/pal.properties @@ -0,0 +1,5 @@ +#PlayerAbilityLib configuration file +# +#If alwaysLogTamperWarnings is set to false, external update messages will be logged only once per game session +#Mon Aug 05 19:53:57 CDT 2024 +alwaysLogTamperWarnings=true diff --git a/config/paladins/items_v5.json b/config/paladins/items_v5.json new file mode 100644 index 0000000..41c0c98 --- /dev/null +++ b/config/paladins/items_v5.json @@ -0,0 +1,395 @@ +{ + "weapons": { + "iron_claymore": { + "attack_damage": 8.3, + "attack_speed": -3.0, + "attributes": [] + }, + "iron_mace": { + "attack_damage": 7.0, + "attack_speed": -2.8, + "attributes": [] + }, + "diamond_claymore": { + "attack_damage": 9.9, + "attack_speed": -3.0, + "attributes": [] + }, + "golden_mace": { + "attack_damage": 4.3, + "attack_speed": -2.8, + "attributes": [] + }, + "netherite_holy_wand": { + "attack_damage": 2.0, + "attack_speed": -2.4, + "attributes": [ + { + "id": "spell_power:healing", + "value": 3.0, + "operation": "ADDITION" + } + ] + }, + "wooden_great_hammer": { + "attack_damage": 6.6, + "attack_speed": -3.2, + "attributes": [] + }, + "stone_great_hammer": { + "attack_damage": 8.5, + "attack_speed": -3.2, + "attributes": [] + }, + "diamond_mace": { + "attack_damage": 8.3, + "attack_speed": -2.8, + "attributes": [] + }, + "iron_great_hammer": { + "attack_damage": 10.3, + "attack_speed": -3.2, + "attributes": [] + }, + "golden_great_hammer": { + "attack_damage": 6.6, + "attack_speed": -3.2, + "attributes": [] + }, + "netherite_claymore": { + "attack_damage": 11.5, + "attack_speed": -3.0, + "attributes": [] + }, + "diamond_holy_staff": { + "attack_damage": 4.0, + "attack_speed": -3.0, + "attributes": [ + { + "id": "spell_power:healing", + "value": 4.0, + "operation": "ADDITION" + } + ] + }, + "golden_claymore": { + "attack_damage": 5.2, + "attack_speed": -3.0, + "attributes": [] + }, + "holy_staff": { + "attack_damage": 4.0, + "attack_speed": -3.0, + "attributes": [ + { + "id": "spell_power:healing", + "value": 3.0, + "operation": "ADDITION" + } + ] + }, + "acolyte_wand": { + "attack_damage": 2.0, + "attack_speed": -2.4, + "attributes": [ + { + "id": "spell_power:healing", + "value": 1.0, + "operation": "ADDITION" + } + ] + }, + "stone_claymore": { + "attack_damage": 6.8, + "attack_speed": -3.0, + "attributes": [] + }, + "diamond_great_hammer": { + "attack_damage": 12.2, + "attack_speed": -3.2, + "attributes": [] + }, + "netherite_holy_staff": { + "attack_damage": 4.0, + "attack_speed": -3.0, + "attributes": [ + { + "id": "spell_power:healing", + "value": 5.0, + "operation": "ADDITION" + } + ] + }, + "holy_wand": { + "attack_damage": 2.0, + "attack_speed": -2.4, + "attributes": [ + { + "id": "spell_power:healing", + "value": 2.0, + "operation": "ADDITION" + } + ] + }, + "netherite_great_hammer": { + "attack_damage": 14.1, + "attack_speed": -3.2, + "attributes": [] + }, + "diamond_holy_wand": { + "attack_damage": 2.0, + "attack_speed": -2.4, + "attributes": [ + { + "id": "spell_power:healing", + "value": 2.5, + "operation": "ADDITION" + } + ] + }, + "netherite_mace": { + "attack_damage": 9.6, + "attack_speed": -2.8, + "attributes": [] + }, + "ruby_holy_staff": { + "attack_damage": 4.0, + "attack_speed": -3.0, + "attributes": [ + { + "id": "spell_power:healing", + "value": 6.0, + "operation": "ADDITION" + } + ] + }, + "ruby_claymore": { + "attack_damage": 13.0, + "attack_speed": -3.0, + "attributes": [] + }, + "ruby_great_hammer": { + "attack_damage": 16.0, + "attack_speed": -3.2, + "attributes": [] + }, + "ruby_mace": { + "attack_damage": 11.0, + "attack_speed": -2.8, + "attributes": [] + }, + "aeternium_claymore": { + "attack_damage": 13.0, + "attack_speed": -3.0, + "attributes": [] + }, + "aeternium_great_hammer": { + "attack_damage": 16.0, + "attack_speed": -3.2, + "attributes": [] + }, + "aeternium_mace": { + "attack_damage": 11.0, + "attack_speed": -2.8, + "attributes": [] + } + }, + "armor_sets": { + "crusader_armor": { + "armor_toughness": 0.0, + "knockback_resistance": 0.0, + "head": { + "armor": 3, + "attributes": [ + { + "id": "spell_power:healing", + "value": 1.0, + "operation": "ADDITION" + } + ] + }, + "chest": { + "armor": 8, + "attributes": [ + { + "id": "spell_power:healing", + "value": 1.0, + "operation": "ADDITION" + } + ] + }, + "legs": { + "armor": 6, + "attributes": [ + { + "id": "spell_power:healing", + "value": 1.0, + "operation": "ADDITION" + } + ] + }, + "feet": { + "armor": 3, + "attributes": [ + { + "id": "spell_power:healing", + "value": 1.0, + "operation": "ADDITION" + } + ] + } + }, + "prior_robe": { + "armor_toughness": 0.0, + "knockback_resistance": 0.0, + "head": { + "armor": 1, + "attributes": [ + { + "id": "spell_power:healing", + "value": 0.25, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:haste", + "value": 0.05, + "operation": "MULTIPLY_BASE" + } + ] + }, + "chest": { + "armor": 3, + "attributes": [ + { + "id": "spell_power:healing", + "value": 0.25, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:haste", + "value": 0.05, + "operation": "MULTIPLY_BASE" + } + ] + }, + "legs": { + "armor": 2, + "attributes": [ + { + "id": "spell_power:healing", + "value": 0.25, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:haste", + "value": 0.05, + "operation": "MULTIPLY_BASE" + } + ] + }, + "feet": { + "armor": 1, + "attributes": [ + { + "id": "spell_power:healing", + "value": 0.25, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:haste", + "value": 0.05, + "operation": "MULTIPLY_BASE" + } + ] + } + }, + "priest_robe": { + "armor_toughness": 0.0, + "knockback_resistance": 0.0, + "head": { + "armor": 1, + "attributes": [ + { + "id": "spell_power:healing", + "value": 1.0, + "operation": "ADDITION" + } + ] + }, + "chest": { + "armor": 3, + "attributes": [ + { + "id": "spell_power:healing", + "value": 1.0, + "operation": "ADDITION" + } + ] + }, + "legs": { + "armor": 2, + "attributes": [ + { + "id": "spell_power:healing", + "value": 1.0, + "operation": "ADDITION" + } + ] + }, + "feet": { + "armor": 1, + "attributes": [ + { + "id": "spell_power:healing", + "value": 1.0, + "operation": "ADDITION" + } + ] + } + }, + "paladin_armor": { + "armor_toughness": 0.0, + "knockback_resistance": 0.0, + "head": { + "armor": 2, + "attributes": [ + { + "id": "spell_power:healing", + "value": 0.5, + "operation": "ADDITION" + } + ] + }, + "chest": { + "armor": 6, + "attributes": [ + { + "id": "spell_power:healing", + "value": 0.5, + "operation": "ADDITION" + } + ] + }, + "legs": { + "armor": 5, + "attributes": [ + { + "id": "spell_power:healing", + "value": 0.5, + "operation": "ADDITION" + } + ] + }, + "feet": { + "armor": 2, + "attributes": [ + { + "id": "spell_power:healing", + "value": 0.5, + "operation": "ADDITION" + } + ] + } + } + } +} \ No newline at end of file diff --git a/config/paladins/shields.json b/config/paladins/shields.json new file mode 100644 index 0000000..1925685 --- /dev/null +++ b/config/paladins/shields.json @@ -0,0 +1,83 @@ +{ + "shields": { + "paladins:netherite_kite_shield": { + "durability": 1344, + "attributes": [ + { + "id": "minecraft:generic.armor_toughness", + "value": 1.0, + "operation": "ADDITION" + }, + { + "id": "generic.max_health", + "value": 4.0, + "operation": "ADDITION" + } + ] + }, + "paladins:diamond_kite_shield": { + "durability": 672, + "attributes": [ + { + "id": "minecraft:generic.armor_toughness", + "value": 1.0, + "operation": "ADDITION" + }, + { + "id": "generic.max_health", + "value": 2.0, + "operation": "ADDITION" + } + ] + }, + "paladins:golden_kite_shield": { + "durability": 168, + "attributes": [] + }, + "paladins:iron_kite_shield": { + "durability": 336, + "attributes": [ + { + "id": "minecraft:generic.armor_toughness", + "value": 1.0, + "operation": "ADDITION" + }, + { + "id": "generic.max_health", + "value": 2.0, + "operation": "ADDITION" + } + ] + }, + "paladins:ruby_kite_shield": { + "durability": 1344, + "attributes": [ + { + "id": "minecraft:generic.armor_toughness", + "value": 1.0, + "operation": "ADDITION" + }, + { + "id": "generic.max_health", + "value": 6.0, + "operation": "ADDITION" + } + ] + }, + "paladins:aeternium_kite_shield": { + "durability": 1344, + "attributes": [ + { + "id": "minecraft:generic.armor_toughness", + "value": 1.0, + "operation": "ADDITION" + }, + { + "id": "generic.max_health", + "value": 6.0, + "operation": "ADDITION" + } + ] + } + } +} \ No newline at end of file diff --git a/config/paladins/tweaks.json b/config/paladins/tweaks.json new file mode 100644 index 0000000..50033d9 --- /dev/null +++ b/config/paladins/tweaks.json @@ -0,0 +1,8 @@ +{ + "ignore_items_required_mods": false, + "barrier_knockback_strength": 0.3, + "battle_banner_attack_speed_bonus": 0.4, + "battle_banner_ranged_haste_bonus": 0.4, + "battle_banner_spell_haste_bonus": 0.4, + "battle_banner_knockback_resistance_bonus": 0.5 +} \ No newline at end of file diff --git a/config/paladins/villages.json b/config/paladins/villages.json new file mode 100644 index 0000000..1039140 --- /dev/null +++ b/config/paladins/villages.json @@ -0,0 +1,54 @@ +{ + "entries": [ + { + "pool": "minecraft:village/desert/houses", + "structures": [ + { + "id": "paladins:village/desert/sanctuary", + "weight": 3, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/savanna/houses", + "structures": [ + { + "id": "paladins:village/savanna/sanctuary", + "weight": 3, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/plains/houses", + "structures": [ + { + "id": "paladins:village/plains/sanctuary", + "weight": 3, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/taiga/houses", + "structures": [ + { + "id": "paladins:village/taiga/sanctuary", + "weight": 3, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/snowy/houses", + "structures": [ + { + "id": "paladins:village/snowy/sanctuary", + "weight": 3, + "limit": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/config/patchouli.json5 b/config/patchouli.json5 new file mode 100644 index 0000000..cb29d9f --- /dev/null +++ b/config/patchouli.json5 @@ -0,0 +1,16 @@ +{ + // Set this to true to disable advancement locking for ALL books, making all entries visible at all times. Config Flag: advancements_disabled + "disableAdvancementLocking": false, + // Granular list of Book ID's to disable advancement locking for, e.g. [ "botania:lexicon" ]. Config Flags: advancements_disabled_ + "noAdvancementBooks": [], + // Enable testing mode. By default this doesn't do anything, but you can use the config flag in your books if you want. Config Flag: testing_mode + "testingMode": false, + // Set this to the ID of a book to have it show up in players' inventories, replacing the recipe book. + "inventoryButtonBook": "", + // Set this to true to use Shift instead of Ctrl for the inventory quick lookup feature. + "useShiftForQuickLookup": false, + // Set how to handle text overflow: OVERFLOW the text off the page, TRUNCATE overflowed text, or RESIZE everything to fit. Relogin after changing. + "textOverflowMode": "RESIZE", + // How long in ticks the quick lookup key needs to be pressed before the book opens + "quickLookupTime": 10 +} \ No newline at end of file diff --git a/config/polymorph-integrations.toml b/config/polymorph-integrations.toml new file mode 100644 index 0000000..bff1493 --- /dev/null +++ b/config/polymorph-integrations.toml @@ -0,0 +1,3 @@ +# Please be aware that enabling any third-party mod integration introduces instability and performance overheads, caution is strongly advised. +# If crashes or issues arise, disable the related modules as the first step in troubleshooting and report the issue to Polymorph. +quickbench = true diff --git a/config/presencefootsteps/updater.json b/config/presencefootsteps/updater.json new file mode 100644 index 0000000..e3fe626 --- /dev/null +++ b/config/presencefootsteps/updater.json @@ -0,0 +1,5 @@ +{ + "enabled": false, + "displayCount": 0, + "displayRemaining": 0 +} \ No newline at end of file diff --git a/config/presencefootsteps/userconfig.json b/config/presencefootsteps/userconfig.json new file mode 100644 index 0000000..7943b10 --- /dev/null +++ b/config/presencefootsteps/userconfig.json @@ -0,0 +1,20 @@ +{ + "volume": 70, + "clientPlayerVolume": 100, + "otherPlayerVolume": 100, + "hostileEntitiesVolume": 100, + "passiveEntitiesVolume": 100, + "runningVolumeIncrease": 0, + "wetSoundsVolume": 50, + "foliageSoundsVolume": 100, + "maxSteppingEntities": 50, + "disabled": false, + "firstRun": false, + "multiplayer": true, + "global": true, + "footwear": true, + "visualiser": false, + "exclusive": false, + "stance": "NONE", + "targetEntities": "ALL" +} \ No newline at end of file diff --git a/config/profundis.json b/config/profundis.json new file mode 100644 index 0000000..43991b5 --- /dev/null +++ b/config/profundis.json @@ -0,0 +1,14 @@ +{ + "CONFIG_VERSION_DO_NOT_TOUCH_PLS": "1.5.2", + "logWhenLoaded": true, + "comment1": "Enable or disable any cave biome individually.", + "generateFrozenCaves": true, + "generateMushroomCaves": true, + "generateMoltenCaves": true, + "generateAmethystCaves": true, + "generateBlackCaves": true, + "generateAridCaves": true, + "generateFloralLushCaves": true, + "generateSparseLushCaves": true, + "debug": {} +} \ No newline at end of file diff --git a/config/projectile_damage.json b/config/projectile_damage.json new file mode 100644 index 0000000..35c8d50 --- /dev/null +++ b/config/projectile_damage.json @@ -0,0 +1,7 @@ +{ + "status_effect_impact_multiplier_per_stack": 0.2, + "default_bow_damage": 6.0, + "default_crossbow_damage": 9.0, + "add_default_attributes_for_unspecified_bows": false, + "add_default_attributes_for_unspecified_crossbows": false +} \ No newline at end of file diff --git a/config/promenade/animals.json b/config/promenade/animals.json new file mode 100644 index 0000000..dcf0715 --- /dev/null +++ b/config/promenade/animals.json @@ -0,0 +1,4 @@ +{ + "capybaras_weight": 10, + "ducks_weight": 10 +} \ No newline at end of file diff --git a/config/promenade/biomes.json b/config/promenade/biomes.json new file mode 100644 index 0000000..d3935a6 --- /dev/null +++ b/config/promenade/biomes.json @@ -0,0 +1,6 @@ +{ + "carnelian_treeway_weight": 20, + "sakura_groves_weight": 20, + "glacarian_taiga_weight": 10, + "dark_amaranth_forests_weight": 20 +} \ No newline at end of file diff --git a/config/promenade/monsters.json b/config/promenade/monsters.json new file mode 100644 index 0000000..3cfae94 --- /dev/null +++ b/config/promenade/monsters.json @@ -0,0 +1,4 @@ +{ + "lush_creepers_weight": 15, + "sunken_skeletons_weight": 20 +} \ No newline at end of file diff --git a/config/promenade/world_features.json b/config/promenade/world_features.json new file mode 100644 index 0000000..30eddac --- /dev/null +++ b/config/promenade/world_features.json @@ -0,0 +1,5 @@ +{ + "igneous_rock_patches": true, + "blueberry_bushes": true, + "palms": true +} \ No newline at end of file diff --git a/config/protection_balancer.json5 b/config/protection_balancer.json5 new file mode 100644 index 0000000..bc7cf04 --- /dev/null +++ b/config/protection_balancer.json5 @@ -0,0 +1,68 @@ +{ + // -------------------------------------------------------------------------------------------------------- + // Protection Balancer by ElocinDev + // -------------------------------------------------------------------------------------------------------- + // + // This mod allows to add custom formulas to handle the armor and protection enchantment's damage + // mitigation. This is useful to balance the game to your liking. + // + // -------------------------------------------------------------------------------------------------------- + // Do not touch this + "configVersion": 1, + // -------------------------------------------------------------------------------------------------------- + // + // -------------------------------------------------------------------------------------------------------- + // Formula Cheat Sheet + // + // * You can use the following functions: + // min(a, b) : Returns the smallest value between a and b + // max(a, b) : Returns the largest value between a and b + // sqrt(x) : Returns the square root of x + // sin(x) : Returns the sine of x + // cos(x) : Returns the cosine of x + // tan(x) : Returns the tangent of x + // clamp(x, min, max) : Returns x clamped between min and max + // + // * Variables depend on the formula type, but both will have DAMAGE available. + // + // * You can use the following operators: + // +, -, *, /, ^ + // -------------------------------------------------------------------------------------------------------- + // + // -------------------------------------------------------------------------------------------------------- + // Armor Handling Formula + // + // The result of this formula will be the total damage reduced + // + // Variables: + // DAMAGE : The damage of the current damage instance + // ARMOR : The armor value of the victim + // ARMOR_TOUGHNESS : The armor toughness value of the victim + // + // By the mod's default, the formula is: (min(ARMOR / 60.0, 1.0) * 0.15) + // This formula will mitigate up to 15% of the damage at 60 of armor + // + // You can define a more complex formula that fits for you, as this was designed for the Prominence modpack. + // -------------------------------------------------------------------------------------------------------- + "enable_armor_formula": true, + "armor_formula": "min(ARMOR / 60.0, 1.0) * 0.15", + // -------------------------------------------------------------------------------------------------------- + // + // -------------------------------------------------------------------------------------------------------- + // Protection Enchantment Handling Formula + // + // The result of this formula will be the total mitigation factor + // A factor of 0.10 means 10% of the damage will be mitigated + // + // Available Variables: + // DAMAGE : The value of the current damage instance + // PROTECTION : The total protection levels of the victim + // + // By the mod's default, the formula is: (min(PROTECTION / 20.0, 1.0) * 0.10) + // This formula will mitigate up to 10% of the damage at 20 protection levels (Full set of Prot V) + // + // You can define a more complex formula that fits for you, as this was designed for the Prominence modpack. + // -------------------------------------------------------------------------------------------------------- + "enable_protection_formula": true, + "protection_formula": "min(PROTECTION / 20.0, 1.0) * 0.10" +} \ No newline at end of file diff --git a/config/puffish_skills/config.json b/config/puffish_skills/config.json new file mode 100644 index 0000000..833c873 --- /dev/null +++ b/config/puffish_skills/config.json @@ -0,0 +1,5 @@ +{ + "version": 2, + + "show_warnings": true +} \ No newline at end of file diff --git a/config/reacharound.json b/config/reacharound.json new file mode 100644 index 0000000..882a679 --- /dev/null +++ b/config/reacharound.json @@ -0,0 +1,22 @@ +{ + "enabled": true, + "offhand": true, + "render2d": false, + "render3d": true, + "axis": 0, + "indicator2DStyle": 0, + "indicator3DStyle": 0, + "indicatorVertical": "| |", + "indicatorHorizontal": "{ }", + "indicatorColor2D": -1, + "indicatorColor2DObstructed": -43691, + "indicatorColor3DOutline": -1442840576, + "indicatorColor3DSolid": 1140850688, + "indicatorColor3DObstructedOutline": -1426107051, + "indicatorColor3DObstructedSolid": 1157584213, + "indicatorAnimationDuration": 5, + "indicatorAnimationInterpolation": 2, + "indicatorAnimationFadeInterpolation": 2, + "indicatorOffsetX": 0.0, + "indicatorOffsetY": 0.0 +} \ No newline at end of file diff --git a/config/rebalance.json b/config/rebalance.json new file mode 100644 index 0000000..e48ce19 --- /dev/null +++ b/config/rebalance.json @@ -0,0 +1,16 @@ +{ + "enable_dynamic_rebalance": true, + "reduction_amount": 15.0, + "attack_speed_weight": 0.2, + "health_minimum": 50.0, + "health_threshold": 1.0, + "enable_pvp_rebalance": false, + "pvp_damage_multiplier": 1.0, + "enable_global_reduction": false, + "global_reduction_multiplier": 1.0, + "global_reduction_start": 4.0, + "enable_max_damage_limit": false, + "max_damage_limit": 120.0, + "max_damage_limit_extra": 30.0, + "enable_debug": false +} \ No newline at end of file diff --git a/config/repurposed_structures.json b/config/repurposed_structures.json new file mode 100644 index 0000000..4435820 --- /dev/null +++ b/config/repurposed_structures.json @@ -0,0 +1,4 @@ +{ + "importModdedItems": true, + "blacklistedRSLoottablesFromImportingModdedItems": "" +} \ No newline at end of file diff --git a/config/resourceful-config-web.json b/config/resourceful-config-web.json new file mode 100644 index 0000000..5b5b686 --- /dev/null +++ b/config/resourceful-config-web.json @@ -0,0 +1,12 @@ +{ + "enabled": false, + "port": 7903, + "validator": { + "uuids": [], + "if": { + "password": "82074a6d-375e-46c7-83b8-c5e95b1b382b", + "type": "password" + }, + "type": "if" + } +} \ No newline at end of file diff --git a/config/rogues/items_v2.json b/config/rogues/items_v2.json new file mode 100644 index 0000000..180c135 --- /dev/null +++ b/config/rogues/items_v2.json @@ -0,0 +1,392 @@ +{ + "weapons": { + "netherite_double_axe": { + "attack_damage": 9.6, + "attack_speed": -2.8, + "attributes": [] + }, + "iron_double_axe": { + "attack_damage": 7.0, + "attack_speed": -2.8, + "attributes": [] + }, + "golden_sickle": { + "attack_damage": 2.4, + "attack_speed": -2.0, + "attributes": [] + }, + "golden_dagger": { + "attack_damage": 1.8, + "attack_speed": -1.6, + "attributes": [] + }, + "diamond_double_axe": { + "attack_damage": 8.3, + "attack_speed": -2.8, + "attributes": [] + }, + "netherite_glaive": { + "attack_damage": 8.1, + "attack_speed": -2.6, + "attributes": [] + }, + "golden_double_axe": { + "attack_damage": 4.3, + "attack_speed": -2.8, + "attributes": [] + }, + "iron_dagger": { + "attack_damage": 3.3, + "attack_speed": -1.6, + "attributes": [] + }, + "diamond_sickle": { + "attack_damage": 5.0, + "attack_speed": -2.0, + "attributes": [] + }, + "flint_dagger": { + "attack_damage": 2.6, + "attack_speed": -1.6, + "attributes": [] + }, + "golden_glaive": { + "attack_damage": 3.5, + "attack_speed": -2.6, + "attributes": [] + }, + "iron_glaive": { + "attack_damage": 5.8, + "attack_speed": -2.6, + "attributes": [] + }, + "diamond_dagger": { + "attack_damage": 4.0, + "attack_speed": -1.6, + "attributes": [] + }, + "stone_double_axe": { + "attack_damage": 5.6, + "attack_speed": -2.8, + "attributes": [] + }, + "netherite_sickle": { + "attack_damage": 5.9, + "attack_speed": -2.0, + "attributes": [] + }, + "iron_sickle": { + "attack_damage": 4.1, + "attack_speed": -2.0, + "attributes": [] + }, + "netherite_dagger": { + "attack_damage": 4.7, + "attack_speed": -1.6, + "attributes": [] + }, + "diamond_glaive": { + "attack_damage": 7.0, + "attack_speed": -2.6, + "attributes": [] + }, + "ruby_dagger": { + "attack_damage": 5.5, + "attack_speed": -1.6, + "attributes": [] + }, + "ruby_sickle": { + "attack_damage": 6.8, + "attack_speed": -2.0, + "attributes": [] + }, + "ruby_double_axe": { + "attack_damage": 11.0, + "attack_speed": -2.8, + "attributes": [] + }, + "ruby_glaive": { + "attack_damage": 9.3, + "attack_speed": -2.6, + "attributes": [] + }, + "aeternium_dagger": { + "attack_damage": 5.5, + "attack_speed": -1.6, + "attributes": [] + }, + "aeternium_sickle": { + "attack_damage": 6.8, + "attack_speed": -2.0, + "attributes": [] + }, + "aeternium_double_axe": { + "attack_damage": 11.0, + "attack_speed": -2.8, + "attributes": [] + }, + "aeternium_glaive": { + "attack_damage": 9.3, + "attack_speed": -2.6, + "attributes": [] + } + }, + "armor_sets": { + "assassin_armor": { + "armor_toughness": 0.0, + "knockback_resistance": 0.0, + "head": { + "armor": 2, + "attributes": [ + { + "id": "minecraft:generic.attack_damage", + "value": 0.02, + "operation": "MULTIPLY_BASE" + }, + { + "id": "minecraft:generic.attack_speed", + "value": 0.05, + "operation": "MULTIPLY_BASE" + }, + { + "id": "minecraft:generic.movement_speed", + "value": 0.05, + "operation": "MULTIPLY_BASE" + } + ] + }, + "chest": { + "armor": 4, + "attributes": [ + { + "id": "minecraft:generic.attack_damage", + "value": 0.02, + "operation": "MULTIPLY_BASE" + }, + { + "id": "minecraft:generic.attack_speed", + "value": 0.05, + "operation": "MULTIPLY_BASE" + }, + { + "id": "minecraft:generic.movement_speed", + "value": 0.05, + "operation": "MULTIPLY_BASE" + } + ] + }, + "legs": { + "armor": 4, + "attributes": [ + { + "id": "minecraft:generic.attack_damage", + "value": 0.02, + "operation": "MULTIPLY_BASE" + }, + { + "id": "minecraft:generic.attack_speed", + "value": 0.05, + "operation": "MULTIPLY_BASE" + }, + { + "id": "minecraft:generic.movement_speed", + "value": 0.05, + "operation": "MULTIPLY_BASE" + } + ] + }, + "feet": { + "armor": 2, + "attributes": [ + { + "id": "minecraft:generic.attack_damage", + "value": 0.02, + "operation": "MULTIPLY_BASE" + }, + { + "id": "minecraft:generic.attack_speed", + "value": 0.05, + "operation": "MULTIPLY_BASE" + }, + { + "id": "minecraft:generic.movement_speed", + "value": 0.05, + "operation": "MULTIPLY_BASE" + } + ] + } + }, + "berserker_armor": { + "armor_toughness": 0.0, + "knockback_resistance": 0.0, + "head": { + "armor": 3, + "attributes": [ + { + "id": "minecraft:generic.attack_damage", + "value": 0.05, + "operation": "MULTIPLY_BASE" + }, + { + "id": "minecraft:generic.knockback_resistance", + "value": 0.1, + "operation": "MULTIPLY_BASE" + } + ] + }, + "chest": { + "armor": 8, + "attributes": [ + { + "id": "minecraft:generic.attack_damage", + "value": 0.05, + "operation": "MULTIPLY_BASE" + }, + { + "id": "minecraft:generic.knockback_resistance", + "value": 0.1, + "operation": "MULTIPLY_BASE" + } + ] + }, + "legs": { + "armor": 6, + "attributes": [ + { + "id": "minecraft:generic.attack_damage", + "value": 0.05, + "operation": "MULTIPLY_BASE" + }, + { + "id": "minecraft:generic.knockback_resistance", + "value": 0.1, + "operation": "MULTIPLY_BASE" + } + ] + }, + "feet": { + "armor": 3, + "attributes": [ + { + "id": "minecraft:generic.attack_damage", + "value": 0.05, + "operation": "MULTIPLY_BASE" + }, + { + "id": "minecraft:generic.knockback_resistance", + "value": 0.1, + "operation": "MULTIPLY_BASE" + } + ] + } + }, + "warrior_armor": { + "armor_toughness": 0.0, + "knockback_resistance": 0.0, + "head": { + "armor": 2, + "attributes": [ + { + "id": "minecraft:generic.attack_damage", + "value": 0.04, + "operation": "MULTIPLY_BASE" + } + ] + }, + "chest": { + "armor": 5, + "attributes": [ + { + "id": "minecraft:generic.attack_damage", + "value": 0.04, + "operation": "MULTIPLY_BASE" + } + ] + }, + "legs": { + "armor": 4, + "attributes": [ + { + "id": "minecraft:generic.attack_damage", + "value": 0.04, + "operation": "MULTIPLY_BASE" + } + ] + }, + "feet": { + "armor": 1, + "attributes": [ + { + "id": "minecraft:generic.attack_damage", + "value": 0.04, + "operation": "MULTIPLY_BASE" + } + ] + } + }, + "rogue_armor": { + "armor_toughness": 0.0, + "knockback_resistance": 0.0, + "head": { + "armor": 1, + "attributes": [ + { + "id": "minecraft:generic.attack_speed", + "value": 0.04, + "operation": "MULTIPLY_BASE" + }, + { + "id": "minecraft:generic.movement_speed", + "value": 0.05, + "operation": "MULTIPLY_BASE" + } + ] + }, + "chest": { + "armor": 3, + "attributes": [ + { + "id": "minecraft:generic.attack_speed", + "value": 0.04, + "operation": "MULTIPLY_BASE" + }, + { + "id": "minecraft:generic.movement_speed", + "value": 0.05, + "operation": "MULTIPLY_BASE" + } + ] + }, + "legs": { + "armor": 3, + "attributes": [ + { + "id": "minecraft:generic.attack_speed", + "value": 0.04, + "operation": "MULTIPLY_BASE" + }, + { + "id": "minecraft:generic.movement_speed", + "value": 0.05, + "operation": "MULTIPLY_BASE" + } + ] + }, + "feet": { + "armor": 1, + "attributes": [ + { + "id": "minecraft:generic.attack_speed", + "value": 0.04, + "operation": "MULTIPLY_BASE" + }, + { + "id": "minecraft:generic.movement_speed", + "value": 0.05, + "operation": "MULTIPLY_BASE" + } + ] + } + } + } +} \ No newline at end of file diff --git a/config/rogues/tweaks.json b/config/rogues/tweaks.json new file mode 100644 index 0000000..1ff8f03 --- /dev/null +++ b/config/rogues/tweaks.json @@ -0,0 +1,19 @@ +{ + "ignore_items_required_mods": false, + "effects_raw_id_start": 700, + "slice_and_dice_damage_multiplier": 0.1, + "slice_and_dice_max_stacks": 10, + "stealth_movement_speed_multiplier": -0.5, + "stealth_follow_range": 1.0, + "stealth_visibility_multiplier": 0.1, + "shattered_armor_multiplier": -0.3, + "shout_damage_multiplier": -0.3, + "charge_speed_multiplier": 0.5, + "charge_knockback_resistance_bonus": 0.5, + "enable_rebalance_enchantment_sharpness": true, + "enchantment_sharpness_multiplier_per_level": 0.08, + "enable_rebalance_enchantment_smite": true, + "enchantment_smite_multiplier_per_level": 0.12, + "enable_rebalance_enchantment_arthropods": true, + "enchantment_arthropods_multiplier_per_level": 0.12 +} \ No newline at end of file diff --git a/config/rogues/villages.json b/config/rogues/villages.json new file mode 100644 index 0000000..50ce5be --- /dev/null +++ b/config/rogues/villages.json @@ -0,0 +1,54 @@ +{ + "entries": [ + { + "pool": "minecraft:village/desert/houses", + "structures": [ + { + "id": "rogues:village/desert/barracks", + "weight": 6, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/savanna/houses", + "structures": [ + { + "id": "rogues:village/savanna/barracks", + "weight": 6, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/plains/houses", + "structures": [ + { + "id": "rogues:village/plains/barracks", + "weight": 6, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/taiga/houses", + "structures": [ + { + "id": "rogues:village/taiga/barracks", + "weight": 6, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/snowy/houses", + "structures": [ + { + "id": "rogues:village/snowy/barracks", + "weight": 6, + "limit": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/config/rpg_series/loot_v2.json b/config/rpg_series/loot_v2.json new file mode 100644 index 0000000..6b3a32f --- /dev/null +++ b/config/rpg_series/loot_v2.json @@ -0,0 +1,2875 @@ +{ + "injectors": { + "minecraft:chests/ruined_portal": { + "rolls": 2.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:golden_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:golden_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "minecraft:chests/abandoned_mineshaft": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_0_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_0_accessories", + "weight": 1 + } + ] + }, + "minecraft:chests/igloo_chest": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_0_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_0_accessories", + "weight": 1 + } + ] + }, + "minecraft:chests/shipwreck_supply": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_0_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_0_accessories", + "weight": 1 + } + ] + }, + "minecraft:chests/spawn_bonus_chest": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_0_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_0_accessories", + "weight": 1 + } + ] + }, + "minecraft:chests/bastion_bridge": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "minecraft:chests/simple_dungeon": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "minecraft:chests/stronghold_crossing": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "minecraft:chests/buried_treasure": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "minecraft:chests/shipwreck_treasure": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_armors", + "weight": 1 + } + ] + }, + "minecraft:chests/desert_pyramid": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "minecraft:chests/underwater_ruin_small": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "minecraft:chests/jungle_temple": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "minecraft:chests/pillager_outpost": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "minecraft:chests/woodland_mansion": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "minecraft:chests/nether_bridge": { + "rolls": 0.75, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "minecraft:chests/underwater_ruin_big": { + "rolls": 0.75, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "minecraft:chests/bastion_other": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_3_accessories", + "weight": 1 + } + ] + }, + "minecraft:chests/bastion_treasure": { + "rolls": 2.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_3_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_3_accessories", + "weight": 1 + } + ] + }, + "minecraft:chests/ancient_city": { + "rolls": 0.8, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 2 + } + ] + }, + "minecraft:chests/stronghold_library": { + "rolls": 0.8, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 2 + } + ] + }, + "minecraft:chests/end_city_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "id": "#rpg_series:tier_4_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_3_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_4_accessories", + "weight": 1 + } + ] + }, + "minecraft:entities/ender_dragon": { + "rolls": 3.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_3_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_3_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_4_accessories", + "weight": 1 + } + ] + }, + "minecraft:entities/wither": { + "rolls": 2.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_3_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_3_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_3_accessories", + "weight": 1 + } + ] + }, + "minecraft:entities/warden": { + "rolls": 2.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "minecells:entities/conjunctivius": { + "rolls": 2.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_4_accessories", + "weight": 1 + } + ] + }, + "minecells:entities/concierge": { + "rolls": 2.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_4_accessories", + "weight": 1 + } + ] + }, + "bosses_of_mass_destruction:entities/lich": { + "rolls": 2.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "bosses_of_mass_destruction:entities/void_blossom": { + "rolls": 2.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "bosses_of_mass_destruction:chests/gauntlet": { + "rolls": 2.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_3_accessories", + "weight": 1 + } + ] + }, + "bosses_of_mass_destruction:chests/obsidilith": { + "rolls": 2.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_4_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_3_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_4_accessories", + "weight": 1 + } + ] + }, + "graveyard:chests/great_crypt_loot": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "graveyard:chests/crypt_loot": { + "rolls": 0.2, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "graveyard:chests/small_loot": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1 + } + ] + }, + "graveyard:chests/medium_loot": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "graveyard:chests/large_loot": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "illagerinvasion:chests/illager_fort_tower": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "betterdungeons:skeleton_dungeon/chests/common": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "betterdungeons:zombie_dungeon/chests/common": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_0_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "betterdungeons:small_nether_dungeon/chests/common": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:golden_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "betterdungeons:zombie_dungeon/chests/special": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_0_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "betterdungeons:zombie_dungeon/chests/tombstone": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "betterstrongholds:chests/cmd_yung": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "betterstrongholds:chests/armoury": { + "rolls": 3.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_0_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "betterstrongholds:chests/crypt": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "betterdeserttemples:chests/wardrobe": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "betterdeserttemples:chests/tomb_pharaoh": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:golden_weapons", + "weight": 2 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "betterdeserttemples:chests/pharaoh_hidden": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:golden_weapons", + "weight": 2 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "betterfortresses:chests/keep": { + "rolls": 0.25, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_0_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:golden_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "philipsruins:chest/lost_soul_city_loot": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "philipsruins:chest/desert_pyramid_loot": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "philipsruins:chest/badlands_dungeon_loot_high": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "philipsruins:chest/level_three_ruins_loot": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "philipsruins:chest/ocean_ruins_loot": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "philipsruins:chest/ocean_ruin_fortress": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "philipsruins:chest/nether_lava_ruins_loot": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_3_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_3_accessories", + "weight": 1 + } + ] + }, + "philipsruins:chest/badlands_dungeon_loot_low": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "philipsruins:chest/end_ruins_loot": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_4_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + }, + { + "id": "#rpg_series:tier_4_accessories", + "weight": 1 + } + ] + }, + "philipsruins:chest/level_one_ruins_loot": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_0_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "philipsruins:chest/bone_dungeon_loot": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_0_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_weapons", + "weight": 3 + }, + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "philipsruins:chest/ruin_loot": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "philipsruins:chest/ancient_ruins_loot": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "awesomedungeonnether:chests/awesome_dungeon": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "awesomedungeonocean:chests/awesome_dungeon": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "awesomedungeonend:chests/awesome_dungeon": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_3_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "awesomedungeon:chests/awesome_dungeon": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "structory:outcast/bandit/desert_copper": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "structory:outcast/generic/bandit": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "structory:outcast/mine/loot": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "structory:outcast/settlement": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "structory:outcast/generic/miner": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "structory:outcast/bandit/desert": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + } + ] + }, + "structory:outcast/farm_ruin": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_0_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "structory:outcast/ruin/ruin": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "kaisyn:village/exclusives/village_piglin_house": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:golden_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "kaisyn:outpost/common/armory": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1 + } + ] + }, + "kaisyn:village/exclusives/village_piglin_barrel": { + "rolls": 0.2, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:golden_weapons", + "weight": 1 + } + ] + }, + "terralith:underground/chest": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:golden_weapons", + "weight": 1 + } + ] + }, + "terralith:spire/common": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:golden_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "terralith:spire/junk": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_0_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "terralith:ruin/glacial/main_cs": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_0_weapons", + "weight": 1 + } + ] + }, + "terralith:spire/treasure": { + "rolls": 0.5, + "bonus_rolls": 0.0, + "entries": [ + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "terralith:desert_outpost": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + } + ] + }, + "terralith:ruin/glacial/junk": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_0_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "betternether:chests/wither_tower_bonus": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_4_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_3_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_3_accessories", + "weight": 1 + } + ] + }, + "betternether:chests/city_surprise": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_4_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_3_accessories", + "weight": 1 + } + ] + }, + "betterend:chests/shadow_forest": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_3_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_3_accessories", + "weight": 1 + } + ] + }, + "betterend:chests/umbrella_jungle": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_3_weapons", + "weight": 1 + } + ] + }, + "betterend:chests/foggy_mushroomland": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_3_weapons", + "weight": 1 + } + ] + }, + "betterend:chests/biome": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_3_weapons", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/thornborn_towers/thornborn_towers_top_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise_seven_seas:chests/victory_frigate/victory_frigate_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/infested_temple/infested_temple_top_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/illager_windmill/illager_windmill_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/bandit_towers/bandit_towers_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/ceryneian_hind/ceryneian_hind_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/small_blimp/small_blimp_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/heavenly_conqueror/heavenly_conqueror_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:golden_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/aviary/aviary_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:golden_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/illager_corsair/illager_corsair_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/typhon/typhon_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise_seven_seas:chests/corsair_corvette/corsair_corvette_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise_seven_seas:chests/small_yacht/small_yacht_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/mushroom_house/mushroom_house_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_0_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + } + ] + }, + "dungeons_arise:chests/jungle_tree_house/jungle_tree_house_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/illager_galley/illager_galley_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/undead_pirate_ship/undead_pirate_ship_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/heavenly_challenger/heavenly_challenger_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:golden_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_3_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_3_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + }, + { + "id": "#rpg_series:tier_3_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/heavenly_rider/heavenly_rider_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:golden_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/illager_fort/illager_fort_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/keep_kayra/keep_kayra_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_3_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + }, + { + "id": "#rpg_series:tier_3_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise_seven_seas:chests/pirate_junk/pirate_junk_treasure": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/mushroom_mines/mushroom_mines_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/mines_treasure_medium": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/keep_kayra/keep_kayra_library_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_3_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + }, + { + "id": "#rpg_series:tier_3_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/mining_system/mining_system_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/shiraz_palace/shiraz_palace_treasure": { + "rolls": 2.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_3_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/foundry/foundry_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/keep_kayra/keep_kayra_garden_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_3_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + }, + { + "id": "#rpg_series:tier_3_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/plague_asylum/plague_asylum_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise_seven_seas:chests/unicorn_galleon/unicorn_galleon_treasure": { + "rolls": 1.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/shiraz_palace/shiraz_palace_library": { + "rolls": 0.5, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + } + ] + }, + "dungeons_arise:chests/shiraz_palace/shiraz_palace_elite": { + "rolls": 2.0, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_2_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_2_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_3_armors", + "weight": 1 + }, + { + "id": "#rpg_series:tier_2_accessories", + "weight": 1 + }, + { + "id": "#rpg_series:tier_3_accessories", + "weight": 1 + } + ] + } + }, + "regex_injectors": { + "^dungeons_arise:chests.*barrels$": { + "rolls": 0.2, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + }, + "^dungeons_arise:chests.*normal$": { + "rolls": 0.35, + "bonus_rolls": 0.2, + "entries": [ + { + "id": "#rpg_series:tier_1_weapons", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_armors", + "weight": 1, + "enchant": { + "min_power": 1.0, + "max_power": 30.0, + "allow_treasure": true + } + }, + { + "id": "#rpg_series:tier_1_accessories", + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/config/rpg_series/tag_cache.json b/config/rpg_series/tag_cache.json new file mode 100644 index 0000000..67b8766 --- /dev/null +++ b/config/rpg_series/tag_cache.json @@ -0,0 +1,223 @@ +{ + "cache": { + "rpg_series:tier_4_weapons": [ + "archers:aeternium_spear", + "archers:ruby_spear", + "archers:crystal_shortbow", + "archers:crystal_longbow", + "archers:ruby_rapid_crossbow", + "archers:ruby_heavy_crossbow", + "paladins:aeternium_great_hammer", + "paladins:ruby_great_hammer", + "paladins:aeternium_claymore", + "paladins:ruby_claymore", + "paladins:aeternium_mace", + "paladins:ruby_mace", + "paladins:ruby_holy_staff", + "rogues:aeternium_dagger", + "rogues:aeternium_sickle", + "rogues:aeternium_double_axe", + "rogues:aeternium_glaive", + "rogues:ruby_dagger", + "rogues:ruby_sickle", + "rogues:ruby_double_axe", + "rogues:ruby_glaive", + "wizards:staff_ruby_fire", + "wizards:staff_crystal_arcane", + "wizards:staff_smaragdant_frost" + ], + "rpg_series:tier_1_armors": [ + "archers:archer_armor_chest", + "archers:archer_armor_feet", + "archers:archer_armor_head", + "archers:archer_armor_legs", + "paladins:paladin_armor_chest", + "paladins:paladin_armor_feet", + "paladins:paladin_armor_head", + "paladins:paladin_armor_legs", + "paladins:priest_robe_chest", + "paladins:priest_robe_feet", + "paladins:priest_robe_head", + "paladins:priest_robe_legs", + "rogues:rogue_armor_chest", + "rogues:rogue_armor_feet", + "rogues:rogue_armor_head", + "rogues:rogue_armor_legs", + "rogues:warrior_armor_chest", + "rogues:warrior_armor_feet", + "rogues:warrior_armor_head", + "rogues:warrior_armor_legs", + "wizards:wizard_robe_chest", + "wizards:wizard_robe_feet", + "wizards:wizard_robe_head", + "wizards:wizard_robe_legs" + ], + "rpg_series:tier_2_armors": [ + "archers:ranger_armor_chest", + "archers:ranger_armor_feet", + "archers:ranger_armor_head", + "archers:ranger_armor_legs", + "paladins:crusader_armor_chest", + "paladins:crusader_armor_feet", + "paladins:crusader_armor_head", + "paladins:crusader_armor_legs", + "paladins:prior_robe_chest", + "paladins:prior_robe_feet", + "paladins:prior_robe_head", + "paladins:prior_robe_legs", + "rogues:assassin_armor_chest", + "rogues:assassin_armor_head", + "rogues:assassin_armor_feet", + "rogues:assassin_armor_legs", + "rogues:berserker_armor_chest", + "rogues:berserker_armor_head", + "rogues:berserker_armor_feet", + "rogues:berserker_armor_legs", + "wizards:arcane_robe_chest", + "wizards:arcane_robe_feet", + "wizards:arcane_robe_head", + "wizards:arcane_robe_legs", + "wizards:fire_robe_chest", + "wizards:fire_robe_feet", + "wizards:fire_robe_head", + "wizards:fire_robe_legs", + "wizards:frost_robe_chest", + "wizards:frost_robe_feet", + "wizards:frost_robe_head", + "wizards:frost_robe_legs" + ], + "rpg_series:tier_3_armors": [], + "rpg_series:tier_0_accessories": [ + "jewelry:copper_ring", + "jewelry:iron_ring", + "jewelry:gold_ring" + ], + "rpg_series:tier_1_accessories": [ + "jewelry:emerald_necklace", + "jewelry:diamond_necklace", + "paladins:iron_kite_shield" + ], + "rpg_series:tier_3_weapons": [ + "archers:netherite_shortbow", + "archers:netherite_longbow", + "archers:netherite_rapid_crossbow", + "archers:netherite_heavy_crossbow", + "archers:netherite_spear", + "paladins:netherite_mace", + "paladins:netherite_great_hammer", + "paladins:netherite_claymore", + "paladins:netherite_holy_staff", + "rogues:netherite_dagger", + "rogues:netherite_sickle", + "rogues:netherite_double_axe", + "rogues:netherite_glaive", + "wizards:staff_netherite_arcane", + "wizards:staff_netherite_fire", + "wizards:staff_netherite_frost" + ], + "rpg_series:tier_2_accessories": [ + "jewelry:ruby_ring", + "jewelry:topaz_ring", + "jewelry:citrine_ring", + "jewelry:jade_ring", + "jewelry:sapphire_ring", + "jewelry:tanzanite_ring", + "jewelry:ruby_necklace", + "jewelry:topaz_necklace", + "jewelry:citrine_necklace", + "jewelry:jade_necklace", + "jewelry:sapphire_necklace", + "jewelry:tanzanite_necklace", + "paladins:diamond_kite_shield" + ], + "rpg_series:tier_3_accessories": [ + "jewelry:netherite_ruby_ring", + "jewelry:netherite_topaz_ring", + "jewelry:netherite_citrine_ring", + "jewelry:netherite_jade_ring", + "jewelry:netherite_sapphire_ring", + "jewelry:netherite_tanzanite_ring", + "jewelry:netherite_ruby_necklace", + "jewelry:netherite_topaz_necklace", + "jewelry:netherite_citrine_necklace", + "jewelry:netherite_jade_necklace", + "jewelry:netherite_sapphire_necklace", + "jewelry:netherite_tanzanite_necklace", + "paladins:netherite_kite_shield" + ], + "rpg_series:tier_1_weapons": [ + "minecraft:crossbow", + "archers:composite_longbow", + "archers:iron_spear", + "paladins:iron_mace", + "paladins:iron_great_hammer", + "paladins:iron_claymore", + "paladins:holy_staff", + "rogues:iron_dagger", + "rogues:iron_sickle", + "rogues:iron_double_axe", + "rogues:iron_glaive", + "wizards:staff_wizard" + ], + "rpg_series:golden_weapons": [ + "archers:golden_spear", + "paladins:golden_claymore", + "paladins:golden_great_hammer", + "paladins:golden_mace", + "paladins:golden_kite_shield", + "rogues:golden_dagger", + "rogues:golden_sickle", + "rogues:golden_double_axe", + "rogues:golden_glaive" + ], + "rpg_series:tier_2_weapons": [ + "archers:mechanic_shortbow", + "archers:royal_longbow", + "archers:rapid_crossbow", + "archers:heavy_crossbow", + "archers:diamond_spear", + "paladins:diamond_mace", + "paladins:diamond_great_hammer", + "paladins:diamond_claymore", + "paladins:diamond_holy_staff", + "rogues:diamond_dagger", + "rogues:diamond_sickle", + "rogues:diamond_double_axe", + "rogues:diamond_glaive", + "wizards:staff_arcane", + "wizards:staff_fire", + "wizards:staff_frost" + ], + "rpg_series:tier_4_accessories": [ + "jewelry:unique_attack_ring", + "jewelry:unique_attack_necklace", + "jewelry:unique_dex_ring", + "jewelry:unique_dex_necklace", + "jewelry:unique_tank_ring", + "jewelry:unique_tank_necklace", + "jewelry:unique_archer_ring", + "jewelry:unique_archer_necklace", + "jewelry:unique_arcane_ring", + "jewelry:unique_arcane_necklace", + "jewelry:unique_fire_ring", + "jewelry:unique_fire_necklace", + "jewelry:unique_frost_ring", + "jewelry:unique_frost_necklace", + "jewelry:unique_healing_ring", + "jewelry:unique_healing_necklace", + "paladins:aeternium_kite_shield", + "paladins:ruby_kite_shield" + ], + "rpg_series:tier_0_weapons": [ + "minecraft:bow", + "archers:flint_spear", + "paladins:wooden_great_hammer", + "paladins:stone_great_hammer", + "paladins:stone_claymore", + "paladins:acolyte_wand", + "rogues:flint_dagger", + "rogues:stone_double_axe", + "wizards:wand_novice" + ] + } +} \ No newline at end of file diff --git a/config/rrp.properties b/config/rrp.properties new file mode 100644 index 0000000..6b8aad3 --- /dev/null +++ b/config/rrp.properties @@ -0,0 +1,5 @@ +#number of threads RRP should use for generating resources +#Mon Aug 05 19:30:06 CDT 2024 +debug\ performance=false +threads=7 +dump\ assets=false diff --git a/config/sidebar_buttons.json b/config/sidebar_buttons.json new file mode 100644 index 0000000..ef607a2 --- /dev/null +++ b/config/sidebar_buttons.json @@ -0,0 +1,17 @@ +{ + "ftbteams": { + "my_team": true + }, + "ftbquests": { + "quests": true + }, + "ftblibrary": { + "toggle.gamemode": true, + "toggle.rain": true, + "toggle.day": true, + "toggle.night": true + }, + "ftbessentials": { + "trash_can": true + } +} \ No newline at end of file diff --git a/config/simplyskills/berserker.json5 b/config/simplyskills/berserker.json5 new file mode 100644 index 0000000..26f9c62 --- /dev/null +++ b/config/simplyskills/berserker.json5 @@ -0,0 +1,49 @@ +{ + "enableBerserkerSpecialisation": true, + "passiveBerserkerSwordMasteryFrequency": 20, + "passiveBerserkerSwordMasteryBaseSpeedAmplifier": 0, + "passiveBerserkerSwordMasterySpeedAmplifierPerTier": 1, + "passiveBerserkerAxeMasteryFrequency": 20, + "passiveBerserkerAxeMasteryBaseStrengthAmplifier": 0, + "passiveBerserkerAxeMasteryStrengthAmplifierPerTier": 1, + "passiveBerserkerIgnorePainFrequency": 20, + "passiveBerserkerIgnorePainHealthThreshold": 0.4, + "passiveBerserkerIgnorePainBaseResistanceAmplifier": 0, + "passiveBerserkerIgnorePainResistanceAmplifierPerTier": 1, + "passiveBerserkerRecklessnessFrequency": 20, + "passiveBerserkerRecklessnessHealthThreshold": 0.7, + "passiveBerserkerRecklessnessWeaknessAmplifier": 0, + "passiveBerserkerChallengeFrequency": 20, + "passiveBerserkerChallengeRadius": 2, + "passiveBerserkerChallengeMaxAmplifier": 5, + "signatureBerserkerRampageDuration": 250, + "signatureBerserkerRampageSubEffectDuration": 150, + "signatureBerserkerRampageSubEffectMaxAmplifier": 3, + "signatureBerserkerRampageCooldown": 30, + "signatureBerserkerBullrushDuration": 20, + "signatureBerserkerBullrushVelocity": 2, + "signatureBerserkerBullrushRadius": 3, + "signatureBerserkerBullrushDamageModifier": 1.8, + "signatureBerserkerBullrushHitFrequency": 5, + "signatureBerserkerBullrushImmobilizeDuration": 80, + "signatureBerserkerBullrushRelentlessExhaustPerStrength": 20, + "signatureBerserkerBullrushRelentlessDuration": 200, + "signatureBerserkerBloodthirstyDuration": 400, + "signatureBerserkerBloodthirstyHealPercent": 0.25, + "signatureBerserkerBloodthirstyTirelessChance": 85, + "signatureBerserkerBloodthirstyTremorChance": 15, + "signatureBerserkerBloodthirstyMightyStacks": 1, + "signatureBerserkerBloodthirstyCooldown": 25, + "signatureBerserkerBerserkingSacrificeAmount": 0.30000001192092896, + "signatureBerserkerBerserkingSecondsPerSacrifice": 1, + "signatureBerserkerBerserkingSubEffectDuration": 200, + "signatureBerserkerBerserkingSubEffectMaxAmplifier": 3, + "signatureBerserkerBerserkingCooldown": 25, + "signatureBerserkerLeapSlamDuration": 62, + "signatureBerserkerLeapSlamRadius": 3, + "signatureBerserkerLeapSlamVelocity": 1.5, + "signatureBerserkerLeapSlamHeight": 0.9, + "signatureBerserkerLeapSlamDescentVelocity": 1.0, + "signatureBerserkerLeapSlamDamageModifier": 2.8, + "signatureBerserkerLeapSlamImmobilizeDuration": 80 +} \ No newline at end of file diff --git a/config/simplyskills/cleric.json5 b/config/simplyskills/cleric.json5 new file mode 100644 index 0000000..ef2c354 --- /dev/null +++ b/config/simplyskills/cleric.json5 @@ -0,0 +1,6 @@ +{ + "enableClericSpecialisation": true, + "signatureClericDivineInterventionCooldown": 45, + "signatureClericSacredOrbCooldown": 30, + "signatureClericAnointWeaponCooldown": 35 +} \ No newline at end of file diff --git a/config/simplyskills/crusader.json5 b/config/simplyskills/crusader.json5 new file mode 100644 index 0000000..13aab32 --- /dev/null +++ b/config/simplyskills/crusader.json5 @@ -0,0 +1,36 @@ +{ + "enableCrusaderSpecialisation": true, + "passiveCrusaderRetributionChance": 15, + "passiveCrusaderExhaustiveRecoveryChance": 15, + "passiveCrusaderExhaustiveRecoveryExhaustionStacks": 10, + "passiveCrusaderAegisFrequency": 25, + "passiveCrusaderAegisStacksRemoved": 35, + "signatureCrusaderHeavensmithsCallRange": 20, + "signatureCrusaderHeavensmithsCallDADuration": 400, + "signatureCrusaderHeavensmithsCallTauntMarkDuration": 350, + "signatureCrusaderHeavensmithsCallDAFrequency": 5, + "signatureCrusaderHeavensmithsCallDAChance": 10, + "signatureCrusaderHeavensmithsCallDARadius": 5, + "signatureCrusaderHeavensmithsCallDAExhaustStacks": 5, + "signatureCrusaderHeavensmithsCallDAMightDuration": 115, + "signatureCrusaderHeavensmithsCallDAMightStacksMax": 3, + "signatureCrusaderHeavensmithsCallCooldown": 55, + "signatureCrusaderSacredOnslaughtDashDuration": 40, + "signatureCrusaderSacredOnslaughtDPDuration": 200, + "signatureCrusaderSacredOnslaughtVelocity": 1, + "signatureCrusaderSacredOnslaughtRadius": 3, + "signatureCrusaderSacredOnslaughtDMGMultiplier": 0.6, + "signatureCrusaderSacredOnslaughtStunDuration": 50, + "signatureCrusaderSacredOnslaughtCooldown": 15, + "signatureCrusaderConsecrationDuration": 250, + "signatureCrusaderConsecrationExtendDuration": 250, + "signatureCrusaderConsecrationRadius": 3, + "signatureCrusaderConsecrationDMGMultiplier": 1.9, + "signatureCrusaderConsecrationHitFrequency": 18, + "signatureCrusaderConsecrationMightStacks": 1, + "signatureCrusaderConsecrationMightStacksMax": 5, + "signatureCrusaderConsecrationSpellforgedStacks": 1, + "signatureCrusaderConsecrationSpellforgedStacksMax": 3, + "signatureCrusaderConsecrationTauntDuration": 200, + "signatureCrusaderConsecrationCooldown": 30 +} \ No newline at end of file diff --git a/config/simplyskills/general.json5 b/config/simplyskills/general.json5 new file mode 100644 index 0000000..1b83794 --- /dev/null +++ b/config/simplyskills/general.json5 @@ -0,0 +1,47 @@ +{ + "enableAscendancy": true, + "treeResetOnDeath": false, + "disableDefaultPuffishTrees": true, + "enableBuildSharing": false, + "skillChronicleCooldown": 12000, + "removeUnlockRestrictions": false, + "spellHasteCooldownReductionModifier": 0.800000011920929, + "minimumAchievableCooldown": 5, + "minimumTimeBetweenAbilityUse": 0.5, + "enableDDR": false, + "enableDDRDebugLog": false, + "DDRHealthRequirement": 300, + "DDRHealthThreshold": 3, + "DDRAmount": 13, + "DDRAttackSpeedWeight": 20, + "DDRAffectsPlayers": false, + "enableDAS": false, + "enableDASDebugLog": false, + "DASRadius": 64.0, + "DASUpdateFrequency": 30, + "DASPlayerScalingWeight": 10, + "DASPassiveEntityModifier": 0.20000000298023224, + "addMultiHealthRequirement": 500.0, + "DASHealth": 3.0, + "DASHealthAddMulti": 1.0, + "DASAttack": 0.2, + "DASAttackAddMulti": 1.0, + "DASArmor": 1.0, + "DASArmorAddMulti": 1.0, + "DASArmorToughness": 0.5, + "DASToughnessAddMulti": 1.0, + "DASSpeed": 0.3, + "DASSpeedAddMulti": 1.0, + "DASKnockbackResist": 0.1, + "DASResistAddMulti": 1.0, + "innerLineR": 0.137, + "innerLineG": 0.129, + "innerLineB": 0.117, + "innerLineA": 1.0, + "outerLineR": 0.156, + "outerLineG": 0.148, + "outerLineB": 0.132, + "outerLineA": 1.0, + "signatureHudX": 0, + "signatureHudY": 0 +} \ No newline at end of file diff --git a/config/simplyskills/initiate.json5 b/config/simplyskills/initiate.json5 new file mode 100644 index 0000000..9e1ee7c --- /dev/null +++ b/config/simplyskills/initiate.json5 @@ -0,0 +1,24 @@ +{ + "passiveInitiateFrailArmorThreshold": 35, + "passiveInitiateFrailAttackThreshold": 6, + "passiveInitiateFrailWeaknessAmplifier": 0, + "passiveInitiateFrailMiningFatigueAmplifier": 3, + "passiveInitiateNullificationFrequency": 80, + "passiveInitiateNullificationRadius": 12, + "passiveInitiateSlowFallDistanceToActivate": 3.0, + "passiveInitiateEmpowerChance": 15, + "passiveInitiateEmpowerDuration": 300, + "passiveInitiateEmpowerStacks": 1, + "passiveInitiateEmpowerMaxStacks": 15, + "passiveInitiateAttunedDuration": 150, + "passiveInitiateAttunedStackThreshold": 5, + "passiveInitiateAttunedStacks": 1, + "passiveInitiateAttunedMaxStacks": 15, + "passiveInitiateAttunedFrequency": 20, + "passiveInitiateLightningRodDuration": 600, + "passiveInitiateLightningRodStacks": 1, + "passiveInitiateLightningRodMaxStacks": 5, + "passiveInitiateLightningRodFrequency": 500, + "passiveInitiateHastyStacks": 1, + "passiveInitiateHastyDuration": 20 +} \ No newline at end of file diff --git a/config/simplyskills/necromancer.json5 b/config/simplyskills/necromancer.json5 new file mode 100644 index 0000000..9a9b7c2 --- /dev/null +++ b/config/simplyskills/necromancer.json5 @@ -0,0 +1,4 @@ +{ + "enableNecromancerSpecialisation": true, + "signatureNecromancerSummoningRitualCooldown": 120 +} \ No newline at end of file diff --git a/config/simplyskills/ranger.json5 b/config/simplyskills/ranger.json5 new file mode 100644 index 0000000..8efe710 --- /dev/null +++ b/config/simplyskills/ranger.json5 @@ -0,0 +1,52 @@ +{ + "enableRangerSpecialisation": true, + "passiveRangerRevealRadius": 12, + "passiveRangerRevealFrequency": 80, + "passiveRangerTamerRadius": 12, + "passiveRangerTamerFrequency": 80, + "passiveRangerTamerResistanceAmplifier": 2, + "passiveRangerTamerRegenerationAmplifier": 1, + "passiveRangerBondedRadius": 12, + "passiveRangerBondedFrequency": 10, + "passiveRangerBondedPetMinimumHealthPercent": 30, + "passiveRangerBondedHealthTransferAmount": 1, + "passiveRangerTrainedRadius": 12, + "passiveRangerTrainedFrequency": 80, + "passiveRangerTrainedStrengthAmplifier": 1, + "passiveRangerTrainedSpeedAmplifier": 1, + "passiveRangerTrainedMinimumHealthPercent": 70, + "passiveRangerIncognitoRadius": 12, + "passiveRangerIncognitoFrequency": 20, + "passiveRangerElementalArrowsRenewalChance": 35, + "passiveRangerElementalArrowsRenewalDuration": 600, + "passiveRangerElementalArrowsRenewalStacks": 1, + "passiveRangerElementalArrowsRenewalMaximumStacks": 20, + "signatureRangerDisengageRadius": 6, + "signatureRangerDisengageVelocity": 3, + "signatureRangerDisengageHeight": 1, + "signatureRangerDisengageSlownessDuration": 250, + "signatureRangerDisengageSlownessAmplifier": 3, + "signatureRangerDisengageSlowFallDuration": 80, + "signatureRangerDisengageSlowFallAmplifier": 0, + "signatureRangerDisengageRecuperateRadius": 18, + "signatureRangerDisengageExploitationRadius": 18, + "signatureRangerDisengageExploitationDuration": 120, + "signatureRangerDisengageMarksmanDuration": 200, + "signatureRangerDisengageMarksmanStacks": 1, + "signatureRangerDisengageCooldown": 15, + "effectRangerElementalArrowsDuration": 600, + "effectRangerElementalArrowsStacks": 4, + "effectRangerElementalArrowsStacksIncreasePerTier": 1, + "effectRangerElementalArrowsRadius": 4, + "effectRangerElementalArrowsRadiusIncreasePerTier": 2, + "effectRangerElementalArrowsTargetingRange": 120, + "effectRangerElementalArrowsCooldown": 40, + "effectRangerArrowRainDuration": 600, + "effectRangerArrowRainRadius": 3, + "effectRangerArrowRainRadiusIncreasePerTier": 1, + "effectRangerArrowRainArrowDensity": 25, + "effectRangerArrowRainVolleys": 2, + "effectRangerArrowRainVolleyIncreasePerTier": 1, + "effectRangerArrowRainRange": 64, + "effectRangerArrowRainCooldown": 14 +} \ No newline at end of file diff --git a/config/simplyskills/rogue.json5 b/config/simplyskills/rogue.json5 new file mode 100644 index 0000000..9cf0129 --- /dev/null +++ b/config/simplyskills/rogue.json5 @@ -0,0 +1,49 @@ +{ + "enableRogueSpecialisation": true, + "passiveRogueBackstabWeaknessDuration": 60, + "passiveRogueBackstabWeaknessAmplifier": 0, + "passiveRogueBackstabStealthChancePerEnemy": 3, + "passiveRogueBackstabStealthDuration": 200, + "passiveRogueSmokeBombRadius": 6, + "passiveRogueSmokeBombChance": 10, + "passiveRogueSmokeBombAuraDuration": 40, + "passiveRogueSmokeBombBlindnessDuration": 40, + "passiveRogueSmokeBombBlindnessAmplifier": 0, + "passiveRogueEvasionMasteryChance": 15, + "passiveRogueEvasionMasteryChanceIncreasePerTier": 5, + "passiveRogueEvasionMasterySignatureMultiplier": 2, + "passiveRogueOpportunisticMasteryPoisonDuration": 80, + "passiveRogueOpportunisticMasteryPoisonAmplifier": 2, + "passiveRogueOpportunisticMasteryPoisonDurationIncreasePerTier": 80, + "passiveRogueDeflectionIncreasedChance": 10, + "passiveRogueRecoveryRegenerationFrequency": 42, + "passiveRogueRecoveryRegenerationAmplifier": 1, + "passiveRogueShadowVeilResistanceFrequency": 60, + "passiveRogueShadowVeilResistanceStacks": 1, + "passiveRogueShadowVeilResistanceMaxStacks": 3, + "passiveRogueExploitationDeathMarkDuration": 80, + "passiveRogueExploitationDeathMarkStacks": 1, + "passiveRogueFleetfootedSpeedDuration": 40, + "passiveRogueFleetfootedSpeedStacks": 1, + "passiveRogueFleetfootedSpeedMaxStacks": 6, + "signatureRoguePreparationDuration": 160, + "signatureRoguePreparationSpeedAmplifier": 2, + "signatureRoguePreparationShadowstrikeRange": 12, + "signatureRoguePreparationShadowstrikeRadius": 3, + "signatureRoguePreparationShadowstrikeDamageModifier": 3, + "signatureRoguePreparationCooldown": 10, + "signatureRogueSiphoningStrikesLeechMultiplier": 0.15, + "signatureRogueSiphoningStrikesDuration": 600, + "signatureRogueSiphoningStrikesStacks": 10, + "signatureRogueSiphoningStrikesMightyStacks": 4, + "signatureRogueSiphoningStrikesCooldown": 25, + "signatureRogueEvasionDuration": 160, + "signatureRogueEvasionCooldown": 25, + "signatureRogueFanOfBladesDuration": 500, + "signatureRogueFanOfBladesStacks": 10, + "signatureRogueFanOfBladesBaseFrequency": 20, + "signatureRogueFanOfBladesEnhancedFrequency": 5, + "signatureRogueFanOfBladesRange": 8, + "signatureRogueFanOfBladesRadius": 6, + "signatureRogueFanOfBladesDisenchantDuration": 160 +} \ No newline at end of file diff --git a/config/simplyskills/spellblade.json5 b/config/simplyskills/spellblade.json5 new file mode 100644 index 0000000..c255e36 --- /dev/null +++ b/config/simplyskills/spellblade.json5 @@ -0,0 +1,28 @@ +{ + "enableSpellbladeSpecialisation": true, + "passiveSpellbladeSpellweavingChance": 15, + "signatureSpellbladeElementalSurgeDuration": 300, + "signatureSpellbladeElementalSurgeFrequency": 20, + "signatureSpellbladeElementalSurgeRadius": 3, + "signatureSpellbladeElementalSurgeChance": 100, + "signatureSpellbladeElementalSurgeCooldown": 30, + "signatureSpellbladeElementalImpactDuration": 20, + "signatureSpellbladeElementalImpactResistanceAmplifier": 2, + "signatureSpellbladeElementalImpactRadius": 3, + "signatureSpellbladeElementalImpactVelocity": 2, + "signatureSpellbladeElementalImpactSlownessDuration": 60, + "signatureSpellbladeElementalImpactSlownessAmplifier": 2, + "signatureSpellbladeElementalImpactChance": 100, + "signatureSpellbladeElementalImpactCooldown": 25, + "signatureSpellbladeSpellweaverChance": 30, + "signatureSpellbladeSpellweaverDuration": 600, + "signatureSpellbladeSpellweaverStacks": 20, + "signatureSpellbladeSpellweaverHasteDuration": 100, + "signatureSpellbladeSpellweaverHasteStacks": 1, + "signatureSpellbladeSpellweaverHasteMaxStacks": 5, + "signatureSpellbladeSpellweaverRegenerationDuration": 140, + "signatureSpellbladeSpellweaverRegenerationChance": 50, + "signatureSpellbladeSpellweaverRegenerationStacks": 1, + "signatureSpellbladeSpellweaverRegenerationMaxStacks": 2, + "signatureSpellbladeSpellweaverCooldown": 40 +} \ No newline at end of file diff --git a/config/simplyskills/warrior.json5 b/config/simplyskills/warrior.json5 new file mode 100644 index 0000000..1c1df1b --- /dev/null +++ b/config/simplyskills/warrior.json5 @@ -0,0 +1,28 @@ +{ + "passiveWarriorArmorMasteryArmorThreshold": 15, + "passiveWarriorArmorMasteryChance": 10, + "passiveWarriorHeavyArmorMasteryDuration": 100, + "passiveWarriorHeavyArmorMasteryAmplifier": 0, + "passiveWarriorMediumArmorMasteryDuration": 100, + "passiveWarriorMediumArmorMasteryAmplifier": 0, + "passiveWarriorShieldMasteryFrequency": 10, + "passiveWarriorShieldMasteryWeaknessAmplifier": 0, + "passiveWarriorShieldMasteryResistanceAmplifier": 0, + "passiveWarriorShieldMasteryResistanceAmplifierPerTier": 1, + "passiveWarriorRebukeChance": 25, + "passiveWarriorRebukeWeaknessDuration": 80, + "passiveWarriorRebukeWeaknessAmplifier": 0, + "passiveWarriorSpellbreakerChance": 25, + "passiveWarriorSpellbreakerDuration": 100, + "passiveWarriorSpellbreakerRadius": 4, + "passiveWarriorSpellbreakerFrequency": 5, + "passiveWarriorGoliathFallDistance": 3.0, + "passiveWarriorHeavyWeightDamageIncreasePerTick": 0.30000001192092896, + "passiveWarriorDeathDefyFrequency": 20, + "passiveWarriorDeathDefyHealthThreshold": 30, + "passiveWarriorDeathDefyAmplifierPerTenPercentHealth": 1, + "passiveWarriorFrenzyExhaustionDuration": 400, + "passiveWarriorFrenzyExhaustionStacks": 1, + "passiveWarriorTwinstrikeChance": 15, + "passiveWarriorSwordfallChance": 8 +} \ No newline at end of file diff --git a/config/simplyskills/wayfarer.json5 b/config/simplyskills/wayfarer.json5 new file mode 100644 index 0000000..22d2c16 --- /dev/null +++ b/config/simplyskills/wayfarer.json5 @@ -0,0 +1,10 @@ +{ + "passiveWayfarerSlenderArmorThreshold": 35, + "passiveWayfarerSneakSpeedAmplifier": 2, + "passiveWayfarerReflexiveEvasionDuration": 100, + "passiveWayfarerReflexiveChance": 75, + "passiveWayfarerGuardingBarrierFrequency": 800, + "passiveWayfarerGuardingBarrierDuration": 3400, + "passiveWayfarerGuardingBarrierStacks": 1, + "passiveWayfarerGuardingBarrierMaxStacks": 3 +} \ No newline at end of file diff --git a/config/simplyskills/wizard.json5 b/config/simplyskills/wizard.json5 new file mode 100644 index 0000000..37ec8db --- /dev/null +++ b/config/simplyskills/wizard.json5 @@ -0,0 +1,46 @@ +{ + "enableWizardSpecialisation": true, + "passiveWizardSpellEchoChance": 15, + "signatureWizardMeteoricWrathDuration": 800, + "signatureWizardMeteoricWrathStacks": 10, + "signatureWizardMeteoricWrathFrequency": 15, + "signatureWizardMeteoricWrathChance": 35, + "signatureWizardMeteoricWrathRadius": 12, + "signatureWizardMeteoricWrathRenewalBaseChance": 10, + "signatureWizardMeteoricWrathRenewalChanceIncreasePerTier": 15, + "signatureWizardMeteorShowerRange": 120, + "signatureWizardMeteorShowerCooldown": 40, + "signatureWizardIceCometLeapVelocity": 3, + "signatureWizardIceCometLeapHeight": 1.3, + "signatureWizardIceCometLeapSlowfallDuration": 180, + "signatureWizardIceCometVolleyDuration": 400, + "signatureWizardIceCometVolleyStacks": 6, + "signatureWizardIceCometVolleyFrequency": 8, + "signatureWizardIceCometVolleyRange": 120, + "signatureWizardIceCometRange": 120, + "signatureWizardIceCometCooldown": 30, + "signatureWizardStaticDischargeBaseLeaps": 12, + "signatureWizardStaticDischargeLeapsPerTier": 20, + "signatureWizardStaticDischargeBaseSpeedChance": 5, + "signatureWizardStaticDischargeSpeedChancePerTier": 5, + "signatureWizardStaticDischargeSpeedDuration": 400, + "signatureWizardStaticDischargeSpeedStacks": 1, + "signatureWizardStaticDischargeSpeedMaxAmplifier": 3, + "signatureWizardStaticChargeDuration": 1600, + "signatureWizardStaticChargeLeapFrequency": 5, + "signatureWizardStaticChargeLeapChance": 30, + "signatureWizardStaticChargeWeaknessDuration": 80, + "signatureWizardStaticChargeWeaknessAmplifier": 0, + "signatureWizardStaticDischargeRange": 120, + "signatureWizardStaticDischargeCooldown": 35, + "signatureWizardLightningOrbBuffRadius": 15, + "signatureWizardLightningOrbBuffFrequency": 40, + "signatureWizardLightningOrbBuffChance": 35, + "signatureWizardArcaneBoltRange": 120, + "signatureWizardLesserArcaneBoltRadius": 12, + "signatureWizardArcaneBoltVolleyDuration": 400, + "signatureWizardArcaneBoltVolleyStacks": 10, + "signatureWizardArcaneBoltVolleyFrequency": 3, + "signatureWizardArcaneBoltVolleyRange": 120, + "signatureWizardArcaneBoltCooldown": 35 +} \ No newline at end of file diff --git a/config/simplyswords_extra/backupconfig.json b/config/simplyswords_extra/backupconfig.json new file mode 100644 index 0000000..7f48e57 --- /dev/null +++ b/config/simplyswords_extra/backupconfig.json @@ -0,0 +1,4 @@ +{ + "regen_simplyswords_config_file": false, + "config_version": 1.55 +} \ No newline at end of file diff --git a/config/simplyswords_extra/loot_config.json5 b/config/simplyswords_extra/loot_config.json5 new file mode 100644 index 0000000..57736ba --- /dev/null +++ b/config/simplyswords_extra/loot_config.json5 @@ -0,0 +1,37 @@ +{ +// --------------------------------------------- LOOT CONFIGURATION ----------------------------------------------------------------- +// This config allows for the tweaking of loot injection for UNIQUE weapons. +// Standard iron > diamond gear, and Runic Tablets, are controlled by the loot modifiers in the general_config, not here. +// ---------------------------------------------------------------------------------------------------------------------------------- +// --------------------------------------------- How does it work? ------------------------------------------------------------------ +// If 'add_weapons_to_loot_tables' is enabled in the simplyswords_main config, Simply Swords will attempt to inject its loot into +// any loot table that contains 'chests' in its filepath. This includes loot tables from other mods. +// Any values provided in this config will override the aforementioned process, acting as both a whitelist, and a blacklist. + +// Each line must be made up of a string containing the namespace, path, and filename, in addition to a float value. +// The float value provided will determine the chance of the loot appearing in the loot table. Where 0.0 is %0, and 1.0 is %100. +// If the float value provided is 0.0 the items will be blacklisted from this loot table and skipped entirely by the loot injection. + +// Items can also be injected into entity loot tables, as seen in the Wither example below. +// ---------------------------------------------------------------------------------------------------------------------------------- + + "minecraft:entities/wither": 0.05, + "minecraft:entities/ender_dragon": 0.5, + "minecraft:chests/ruined_portal": 0.0, + "minecraft:chests/village/village_armorer": 0.0, + "minecraft:chests/village/village_butcher": 0.0, + "minecraft:chests/village/village_cartographer": 0.0, + "minecraft:chests/village/village_desert_house": 0.0, + "minecraft:chests/village/village_fisher": 0.0, + "minecraft:chests/village/village_fletcher": 0.0, + "minecraft:chests/village/village_mason": 0.0, + "minecraft:chests/village/village_plains_house": 0.0, + "minecraft:chests/village/village_savanna_house": 0.0, + "minecraft:chests/village/village_shepard": 0.0, + "minecraft:chests/village/village_snowy_house": 0.0, + "minecraft:chests/village/village_taiga_house": 0.0, + "minecraft:chests/village/village_tannery": 0.0, + "minecraft:chests/village/village_temple": 0.0, + "minecraft:chests/village/village_toolsmith": 0.0, + "minecraft:chests/village/village_weaponsmith": 0.0 +} \ No newline at end of file diff --git a/config/simplyswords_main/gem_effects.json5 b/config/simplyswords_main/gem_effects.json5 new file mode 100644 index 0000000..79d9f74 --- /dev/null +++ b/config/simplyswords_main/gem_effects.json5 @@ -0,0 +1,25 @@ +{ + "enableEcho": true, + "enableBerserk": true, + "enableRadiance": true, + "enableOnslaught": true, + "enableNullification": true, + "enablePrecise": true, + "preciseChance": 30, + "enableMighty": true, + "mightyChance": 30, + "enableStealthy": true, + "stealthyChance": 30, + "enableRenewed": true, + "renewedChance": 30, + "enableAccelerant": true, + "enableLeaping": true, + "leapingChance": 65, + "enableSpellshield": true, + "spellshieldChance": 15, + "enableSpellforged": true, + "enableSoulshock": true, + "enableSpellStandard": true, + "enableWarStandard": true, + "enableDeception": true +} \ No newline at end of file diff --git a/config/simplyswords_main/general.json5 b/config/simplyswords_main/general.json5 new file mode 100644 index 0000000..ec4bcd5 --- /dev/null +++ b/config/simplyswords_main/general.json5 @@ -0,0 +1,9 @@ +{ + "enableWeaponImpactSounds": true, + "weaponImpactSoundsVolume": 0.30000001192092896, + "enableWeaponFootfalls": true, + "enablePassiveParticles": true, + "enableUniqueGemSockets": true, + "compatGobberEndWeaponsUnbreakable": true, + "compatEnableSpellPowerScaling": true +} \ No newline at end of file diff --git a/config/simplyswords_main/loot.json5 b/config/simplyswords_main/loot.json5 new file mode 100644 index 0000000..26d0594 --- /dev/null +++ b/config/simplyswords_main/loot.json5 @@ -0,0 +1,43 @@ +{ + "enableLootDrops": true, + "enableLootInVillages": false, + "enableTheWatcher": true, + "standardLootTableWeight": 0.009999999776482582, + "rareLootTableWeight": 0.004000000189989805, + "runicLootTableWeight": 0.007000000216066837, + "uniqueLootTableWeight": 0.0010000000474974513, + "enableContainedRemnants": true, + "enableWatchingWarglaive": true, + "enableLongswordOfThePlague": true, + "enableSwordOnAStick": true, + "enableBramblethorn": true, + "enableStormsEdge": true, + "enableStormbringer": true, + "enableMjolnir": true, + "enableEmberblade": true, + "enableHearthflame": true, + "enableTwistedBlade": true, + "enableSoulrender": true, + "enableSoulpyre": true, + "enableSoulkeeper": true, + "enableSoulstealer": true, + "enableFrostfall": true, + "enableMoltenEdge": true, + "enableLivyatan": true, + "enableIcewhisper": true, + "enableArcanethyst": true, + "enableThunderbrand": true, + "enableBrimstone": true, + "enableSlumberingLichblade": true, + "enableShadowsting": true, + "enableDormantRelic": true, + "enableWhisperwind": true, + "enableEmberlash": true, + "enableWaxweaver": true, + "enableHiveheart": true, + "enableStarsEdge": true, + "enableWickpiercer": true, + "enableTempest": true, + "enableFlamewind": true, + "enableRibboncleaver": true +} \ No newline at end of file diff --git a/config/simplyswords_main/runic_effects.json5 b/config/simplyswords_main/runic_effects.json5 new file mode 100644 index 0000000..0e7d9da --- /dev/null +++ b/config/simplyswords_main/runic_effects.json5 @@ -0,0 +1,63 @@ +{ + "enableActiveDefence": true, + "enableFloat": true, + "enableGreaterFloat": true, + "enableFreeze": true, + "enableShielding": true, + "enableGreaterShielding": true, + "enableSlow": true, + "enableGreaterSlow": true, + "enableStoneskin": true, + "enableGreaterStoneskin": true, + "enableSwiftness": true, + "enableGreaterSwiftness": true, + "enableTrailblaze": true, + "enableGreaterTrailblaze": true, + "enableWeaken": true, + "enableGreaterWeaken": true, + "enableZephyr": true, + "enableGreaterZephyr": true, + "enableFrostWard": true, + "enableWildfire": true, + "enableUnstable": true, + "enableMomentum": true, + "enableGreaterMomentum": true, + "enableImbued": true, + "enableGreaterImbued": true, + "enablePincushion": true, + "enableGreaterPincushion": true, + "enableWard": true, + "enableImmolate": true, + "swiftnessChance": 15.0, + "swiftnessDuration": 300.0, + "slowChance": 50.0, + "slowDuration": 50.0, + "poisonChance": 15.0, + "poisonDuration": 150.0, + "freezeChance": 15.0, + "freezeDuration": 120.0, + "wildfireChance": 10.0, + "wildfireDuration": 180.0, + "wildfireRadius": 10.0, + "floatChance": 15.0, + "floatDuration": 50.0, + "zephyrChance": 15.0, + "zephyrDuration": 180.0, + "shieldingChance": 15.0, + "shieldingDuration": 120.0, + "stoneskinChance": 15.0, + "stoneskinDuration": 60.0, + "trailblazeChance": 15.0, + "trailblazeDuration": 120.0, + "weakenChance": 15.0, + "weakenDuration": 120.0, + "unstableFrequency": 140.0, + "unstableDuration": 140.0, + "activeDefenceFrequency": 20.0, + "activeDefenceRadius": 5.0, + "frostWardFrequency": 20.0, + "frostWardRadius": 5.0, + "frostWardDuration": 60.0, + "momentumCooldown": 140.0, + "imbuedChance": 15.0 +} \ No newline at end of file diff --git a/config/simplyswords_main/status_effects.json5 b/config/simplyswords_main/status_effects.json5 new file mode 100644 index 0000000..aa1a9dc --- /dev/null +++ b/config/simplyswords_main/status_effects.json5 @@ -0,0 +1,3 @@ +{ + "echoDamage": 2 +} \ No newline at end of file diff --git a/config/simplyswords_main/unique_effects.json5 b/config/simplyswords_main/unique_effects.json5 new file mode 100644 index 0000000..fbff846 --- /dev/null +++ b/config/simplyswords_main/unique_effects.json5 @@ -0,0 +1,171 @@ +{ + "abilityAbsorptionCap": 20.0, + "watcherChance": 5.0, + "watcherRestoreAmount": 0.5, + "watcherRadius": 8.0, + "omenChance": 5.0, + "omenAbsorptionCap": 20.0, + "omenInstantKillThreshold": 0.25, + "stealChance": 25.0, + "stealDuration": 400.0, + "stealInvisDuration": 120.0, + "stealBlindDuration": 200.0, + "stealRadius": 30.0, + "stealSpellScaling": 2.5999999046325684, + "soulMeldChance": 75.0, + "soulMeldDuration": 250.0, + "soulMeldRadius": 5.0, + "soulrendChance": 85.0, + "soulrendDuration": 500.0, + "soulrendDamageMulti": 3.0, + "soulrendHealMulti": 0.5, + "soulrendRadius": 10.0, + "soulrendMaxStacks": 8.0, + "soulrendDamageSpellScaling": 0.4000000059604645, + "ferocityChance": 75.0, + "ferocityDuration": 100.0, + "ferocityMaxStacks": 15.0, + "ferocityStrengthTier": 2.0, + "emberIreChance": 30.0, + "emberIreDuration": 150.0, + "volcanicFuryChance": 25.0, + "volcanicFuryRadius": 3.0, + "volcanicFuryCooldown": 300.0, + "volcanicFuryDamage": 3.0, + "volcanicFurySpellScaling": 1.399999976158142, + "stormChance": 15.0, + "stormRadius": 10.0, + "stormCooldown": 700.0, + "stormFrequency": 10.0, + "stormDuration": 200.0, + "plagueChance": 55.0, + "brimstoneChance": 15.0, + "brambleChance": 45.0, + "soultetherRange": 32.0, + "soultetherRadius": 8.0, + "soultetherDuration": 120.0, + "soultetherIgniteDuration": 120.0, + "soultetherResistanceDuration": 60.0, + "frostFuryCooldown": 380.0, + "frostFuryRadius": 3.0, + "frostFuryDamage": 18.0, + "frostFuryChance": 15.0, + "frostFuryDuration": 80.0, + "frostFurySpellScaling": 1.399999976158142, + "moltenRoarCooldown": 320.0, + "moltenRoarRadius": 5.0, + "moltenRoarKnockbackStrength": 5.0, + "moltenRoarChance": 15.0, + "moltenRoarDuration": 100.0, + "frostShatterRadius": 3.0, + "frostShatterDamage": 18.0, + "frostShatterChance": 15.0, + "frostShatterDuration": 80.0, + "frostShatterSpellScaling": 1.7000000476837158, + "permafrostRadius": 4.0, + "permafrostDamage": 1.0, + "permafrostCooldown": 600.0, + "permafrostDuration": 200.0, + "permafrostSpellScaling": 0.8999999761581421, + "arcaneAssaultRadius": 6.0, + "arcaneAssaultDamage": 1.0, + "arcaneAssaultCooldown": 220.0, + "arcaneAssaultChance": 25.0, + "arcaneAssaultDuration": 120.0, + "arcaneAssaultSpellScaling": 1.399999976158142, + "thunderBlitzRadius": 2.0, + "thunderBlitzDamage": 3.0, + "thunderBlitzCooldown": 250.0, + "thunderBlitzChance": 15.0, + "thunderBlitzSpellScaling": 1.7000000476837158, + "stormJoltCooldown": 100.0, + "stormJoltChance": 15.0, + "soulAnguishRadius": 3.0, + "soulAnguishAbsorptionCap": 8.0, + "soulAnguishDamage": 4.0, + "soulAnguishCooldown": 700.0, + "soulAnguishDuration": 200.0, + "soulAnguishHeal": 0.5, + "soulAnguishRange": 22.0, + "soulAnguishSpellScaling": 1.600000023841858, + "shockDeflectBlockDuration": 35.0, + "shockDeflectDamage": 12.0, + "shockDeflectCooldown": 90.0, + "shockDeflectParryDuration": 10.0, + "shockDeflectSpellScaling": 2.299999952316284, + "shadowmistCooldown": 200.0, + "shadowmistChance": 25.0, + "shadowmistDamageMulti": 0.800000011920929, + "shadowmistBlindDuration": 60.0, + "shadowmistRadius": 4.0, + "abyssalStandardCooldown": 700.0, + "abyssalStandardChance": 15.0, + "abyssalStandardDamage": 3.0, + "abyssalStandardSpellScaling": 1.2000000476837158, + "righteousStandardCooldown": 700.0, + "righteousStandardChance": 15.0, + "righteousStandardDamage": 3.0, + "righteousStandardSpellScaling": 1.100000023841858, + "righteousStandardSpellScalingHeal": 1.2999999523162842, + "fatalFlickerCooldown": 175.0, + "fatalFlickerChance": 15.0, + "fatalFlickerRadius": 3.0, + "fatalFlickerMaxStacks": 99.0, + "fatalFlickerDashVelocity": 3.0, + "smoulderCooldown": 80.0, + "smoulderMaxStacks": 5.0, + "smoulderHeal": 15.0, + "smoulderSpellScaling": 0.4000000059604645, + "waxweaveCooldown": 1200.0, + "waxweaveMaxStacks": 3.0, + "hivemindCooldown": 60.0, + "hivemindDuration": 450.0, + "hivemindDamage": 1.100000023841858, + "celestialSurgeCooldown": 120.0, + "celestialSurgeDuration": 120.0, + "celestialSurgeStacks": 6.0, + "celestialSurgeDamageModifier": 0.4000000059604645, + "celestialSurgeLifestealModifier": 0.10000000149011612, + "flickerFuryCooldown": 220.0, + "flickerFuryDuration": 40.0, + "flickerFuryDamage": 1.0, + "vortexDuration": 1200.0, + "vortexMaxSize": 30.0, + "vortexMaxStacks": 10.0, + "vortexSpellScaling": 0.30000001192092896, + "voidcallerDuration": 250.0, + "voidcallerStartingTickFrequency": 12.0, + "voidcallerDamageModifier": 1.0, + "voidcallerCorruptionFrequency": 60.0, + "voidcallerCorruptionPerTick": 1.0, + "voidcallerCorruptionDuration": 1200.0, + "voidcallerCorruptionMax": 100.0, + "emberstormSpreadCap": 6.0, + "emberstormDamage": 5.0, + "emberstormDetonationDamage": 15.0, + "emberstormCooldown": 980.0, + "emberstormMaxHaste": 10.0, + "emberstormSpellScaling": 0.4000000059604645, + "ribbonwrathCooldown": 40.0, + "ribbonwrathResilienceAmplifier": 1.0, + "ribbonwrathDamageBonusPercent": 0.949999988079071, + "magistormCooldown": 980.0, + "magistormDuration": 400.0, + "magistormRadius": 4.0, + "magistormDamage": 3.0, + "magistormRepairChance": 0.25, + "magistormSpellScaling": 0.5, + "enigmaCooldown": 800.0, + "enigmaDecayRate": 2.0, + "enigmaChaseRadius": 16.0, + "magibladeCooldown": 35.0, + "magibladeSonicDistance": 16.0, + "magibladeDamageModifier": 0.699999988079071, + "magibladeRepelChance": 55.0, + "magibladeRepelRadius": 4.0, + "magislamCooldown": 140.0, + "magislamRadius": 4.0, + "magislamDamageModifier": 2.0, + "magislamMagicChance": 35.0, + "magislamMagicModifier": 0.5 +} \ No newline at end of file diff --git a/config/simplyswords_main/weapon_attributes.json5 b/config/simplyswords_main/weapon_attributes.json5 new file mode 100644 index 0000000..51fe829 --- /dev/null +++ b/config/simplyswords_main/weapon_attributes.json5 @@ -0,0 +1,155 @@ +{ + "longsword_positiveDamageModifier": 0.0, + "twinblade_positiveDamageModifier": 0.0, + "rapier_positiveDamageModifier": 0.0, + "katana_positiveDamageModifier": 0.0, + "sai_positiveDamageModifier": 0.0, + "spear_positiveDamageModifier": 0.0, + "glaive_positiveDamageModifier": 0.0, + "warglaive_positiveDamageModifier": 0.0, + "cutlass_positiveDamageModifier": 0.0, + "claymore_positiveDamageModifier": 2.0, + "greataxe_positiveDamageModifier": 3.0, + "greathammer_positiveDamageModifier": 4.0, + "chakram_positiveDamageModifier": 0.0, + "scythe_positiveDamageModifier": 1.0, + "halberd_positiveDamageModifier": 3.0, + "longsword_negativeDamageModifier": 0.0, + "twinblade_negativeDamageModifier": 0.0, + "rapier_negativeDamageModifier": 1.0, + "katana_negativeDamageModifier": 0.0, + "sai_negativeDamageModifier": 3.0, + "spear_negativeDamageModifier": 0.0, + "glaive_negativeDamageModifier": 0.0, + "warglaive_negativeDamageModifier": 0.0, + "cutlass_negativeDamageModifier": 0.0, + "claymore_negativeDamageModifier": 0.0, + "greataxe_negativeDamageModifier": 0.0, + "greathammer_negativeDamageModifier": 0.0, + "chakram_negativeDamageModifier": 1.0, + "scythe_negativeDamageModifier": 0.0, + "halberd_negativeDamageModifier": 0.0, + "iron_damageModifier": 3.0, + "gold_damageModifier": 3.0, + "diamond_damageModifier": 3.0, + "netherite_damageModifier": 3.0, + "runic_damageModifier": 3.0, + "adamantite_damageModifier": 3.0, + "aquarium_damageModifier": 3.0, + "banglum_damageModifier": 3.0, + "carmot_damageModifier": 3.0, + "kyber_damageModifier": 3.0, + "mythril_damageModifier": 3.0, + "orichalcum_damageModifier": 3.0, + "durasteel_damageModifier": 3.0, + "osmium_damageModifier": 3.0, + "prometheum_damageModifier": 3.0, + "quadrillum_damageModifier": 3.0, + "runite_damageModifier": 3.0, + "starPlatinum_damageModifier": 3.0, + "bronze_damageModifier": 3.0, + "copper_damageModifier": 3.0, + "steel_damageModifier": 3.0, + "palladium_damageModifier": 3.0, + "stormyx_damageModifier": 3.0, + "celestium_damageModifier": 3.0, + "metallurgium_damageModifier": 3.0, + "gobber_damageModifier": 1.0, + "gobberNether_damageModifier": 3.0, + "gobberEnd_damageModifier": 6.0, + "longsword_attackSpeed": -2.4000000953674316, + "twinblade_attackSpeed": -2.0, + "rapier_attackSpeed": -1.7999999523162842, + "katana_attackSpeed": -2.0, + "sai_attackSpeed": -1.5, + "spear_attackSpeed": -2.700000047683716, + "glaive_attackSpeed": -2.5999999046325684, + "warglaive_attackSpeed": -2.200000047683716, + "cutlass_attackSpeed": -2.0, + "claymore_attackSpeed": -2.799999952316284, + "greataxe_attackSpeed": -3.0999999046325684, + "greathammer_attackSpeed": -3.200000047683716, + "chakram_attackSpeed": -3.0, + "scythe_attackSpeed": -2.700000047683716, + "halberd_attackSpeed": -2.799999952316284, + "brimstone_damageModifier": 6.0, + "thewatcher_damageModifier": 6.0, + "stormsedge_damageModifier": 3.0, + "stormbringer_damageModifier": 3.0, + "swordonastick_damageModifier": 5.0, + "bramblethorn_damageModifier": 3.0, + "watchingwarglaive_damageModifier": 3.0, + "longswordofplague_damageModifier": 3.0, + "emberblade_damageModifier": 3.0, + "hearthflame_damageModifier": 8.0, + "soulkeeper_damageModifier": 8.0, + "twistedblade_damageModifier": 4.0, + "soulstealer_damageModifier": 0.0, + "soulrender_damageModifier": 4.0, + "mjolnir_damageModifier": 3.0, + "soulpyre_damageModifier": 7.0, + "frostfall_damageModifier": 5.0, + "moltenedge_damageModifier": 4.0, + "livyatan_damageModifier": 4.0, + "icewhisper_damageModifier": 7.0, + "arcanethyst_damageModifier": 7.0, + "thunderbrand_damageModifier": 7.0, + "lichblade_damageModifier": 7.0, + "shadowsting_damageModifier": -2.0, + "sunfire_damageModifier": 3.0, + "harbinger_damageModifier": 3.0, + "whisperwind_damageModifier": 3.0, + "emberlash_damageModifier": 0.0, + "waxweaver_damageModifier": 6.0, + "hiveheart_damageModifier": 7.0, + "starsedge_damageModifier": 3.0, + "wickpiercer_damageModifier": 4.0, + "dreadtide_damageModifier": 3.0, + "tempest_damageModifier": 0.0, + "flamewind_damageModifier": 3.0, + "ribboncleaver_damageModifier": 7.0, + "magiscythe_damageModifier": 4.0, + "enigma_damageModifier": 7.0, + "magispear_damageModifier": 4.0, + "magiblade_damageModifier": 3.0, + "brimstone_attackSpeed": -2.799999952316284, + "thewatcher_attackSpeed": -2.799999952316284, + "stormsedge_attackSpeed": -2.0, + "stormbringer_attackSpeed": -2.4000000953674316, + "swordonastick_attackSpeed": -2.5999999046325684, + "bramblethorn_attackSpeed": -1.7999999523162842, + "watchingwarglaive_attackSpeed": -2.200000047683716, + "longswordofplague_attackSpeed": -2.4000000953674316, + "emberblade_attackSpeed": -2.4000000953674316, + "hearthflame_attackSpeed": -3.200000047683716, + "soulkeeper_attackSpeed": -2.9000000953674316, + "twistedblade_attackSpeed": -2.5999999046325684, + "soulstealer_attackSpeed": -1.5, + "soulrender_attackSpeed": -2.4000000953674316, + "mjolnir_attackSpeed": -3.0, + "soulpyre_attackSpeed": -3.0, + "frostfall_attackSpeed": -2.5, + "moltenedge_attackSpeed": -2.0999999046325684, + "livyatan_attackSpeed": -2.0999999046325684, + "icewhisper_attackSpeed": -2.700000047683716, + "arcanethyst_attackSpeed": -2.700000047683716, + "thunderbrand_attackSpeed": -2.700000047683716, + "lichblade_attackSpeed": -3.0999999046325684, + "shadowsting_attackSpeed": -1.7000000476837158, + "sunfire_attackSpeed": -2.4000000953674316, + "harbinger_attackSpeed": -2.4000000953674316, + "whisperwind_attackSpeed": -2.0, + "emberlash_attackSpeed": -1.5, + "waxweaver_attackSpeed": -2.9000000953674316, + "hiveheart_attackSpeed": -3.0, + "starsedge_attackSpeed": -2.0, + "wickpiercer_attackSpeed": -2.0999999046325684, + "dreadtide_attackSpeed": -2.0, + "tempest_attackSpeed": -2.5, + "flamewind_attackSpeed": -2.5999999046325684, + "ribboncleaver_attackSpeed": -3.200000047683716, + "magiscythe_attackSpeed": -2.4000000953674316, + "enigma_attackSpeed": -3.200000047683716, + "magispear_attackSpeed": -2.5, + "magiblade_attackSpeed": -2.0 +} \ No newline at end of file diff --git a/config/smallships-client.toml b/config/smallships-client.toml new file mode 100644 index 0000000..fb35d69 --- /dev/null +++ b/config/smallships-client.toml @@ -0,0 +1,29 @@ +# This holds the schematic version for internal purposes. DO NOT TOUCH! +schematicVersion = 2 + +# This category holds configs that define ship behaviour. +[Ship] + #Set the speed indication: 0 = km/h, 1 = m/s, 2 = knots, 3 = mph + shipModSpeedUnit = 0 + + #This category holds configs that define general ship behaviour. + [Ship.General] + #General camera settings for ships. + [Ship.General.Camera] + #Automatically enable third person camera when entering a ship. + shipGeneralCameraAutoThirdPerson = true + + #Zoom camera settings for third person view in ships. + [Ship.General.Camera.Zoom] + #Set minimum distance of zoom (value must be bigger than or equal to 1.0). + #Range: 1.0 ~ 50.0 + shipGeneralCameraZoomMin = 5.0 + #Generally enable the zooming feature. + shipGeneralCameraZoomEnable = true + #Set maximum distance of zoom (value must be smaller than or equal to 50.0). + #Range: 1.0 ~ 50.0 + shipGeneralCameraZoomMax = 20.0 +# This category holds configs that define general mod settings. +[General] + #Enable smallships creative tab in the creative inventory (only takes effect after restart). + smallshipsItemGroupEnable = false diff --git a/config/smallships-common.toml b/config/smallships-common.toml new file mode 100644 index 0000000..dae1cbf --- /dev/null +++ b/config/smallships-common.toml @@ -0,0 +1,150 @@ +# This holds the schematic version for internal purposes. DO NOT TOUCH! +schematicVersion = 5 + +# This category holds configs that define ship behaviour. +[Ship] + #This category holds configs that define general ship behaviour. + [Ship.General] + #The damage that is delivered to entities on collision with a cruising ship. Set 0 to disable feature. + #Range: 0.0 ~ 100.0 + shipGeneralCollisionDamage = 7.5 + #Should entities be pushed on collision with a cruising ship? + shipGeneralCollisionKnockBack = true + #The cool-down for sails when increasing or decreasing sail state. + #Range: 0 ~ 1000 + shipGeneralSailCooldown = 30 + #Should the ship item be dropped when the ship is fully damaged? + shipGeneralDoItemDrop = true + + #This category holds configs that define behaviour of fleeing water animals. + [Ship.General."Fleeing Water Animals"] + #Range: 0.0 ~ 100.0 + waterAnimalFleeSpeed = 1.5 + #Range: 0.0 ~ 100.0 + waterAnimalFleeDistance = 10.0 + #Range: 0.0 ~ 100.0 + waterAnimalFleeRadius = 15.0 + #General speed modifiers for ships. + [Ship.General.Modifier] + #Entities in this list won't be able to mount a ship, for example: ["minecraft:creeper", "minecraft:sheep", ...] + mountBlackList = ["minecraft:ender_dragon", "minecraft:wither", "minecraft:wither", "minecraft:ghast", "minecraft:warden", "minecraft:ravager", "alexmobs:cachalot_whale"] + #Amount of destruction a cannonball does when hit the ground. + #Range: 0.0 ~ 100.0 + shipGeneralCannonDestruction = 1.0 + #Maximum speed penalty for a filled container in percent. + #Range: -500.0 ~ 500.0 + shipGeneralContainerModifier = 10.0 + #Speed penalty per cannon in percent. + #Range: -500.0 ~ 500.0 + shipGeneralCannonModifier = 2.5 + #Maximum speed bonus and penalty depending on the ship biome type in percent. + #Range: 0.0 ~ 500.0 + shipGeneralBiomeModifier = 20.0 + #Damage reduction per shield in percent. + #Range: -500.0 ~ 500.0 + shipGeneralShieldDamageReduction = 3.0 + #Amount of damage a cannonball does on hit. + #Range: 0.0 ~ 100.0 + shipGeneralCannonDamage = 25.0 + #Time in minutes in which sunken ships will despawn. + #Range: 0.0 ~ 600.0 + shipGeneralDespawnTimeSunken = 15.0 + #Speed bonus for a paddle ship while paddling in percent. + #Range: -500.0 ~ 500.0 + shipGeneralPaddlingModifier = 35.0 + [Ship.Cog] + #Default configs for the container of the Cog. + [Ship.Cog.Container] + #Set container size for the Cog (value must be divisible by 9 and bigger than 0). + shipContainerCogContainerSize = 108 + #Default attributes for the Cog. Speed in km/h, Health in default mc health points + [Ship.Cog.Attributes] + #Range: 0.0 ~ 100.0 + shipAttributeCogMaxRotationSpeed = 4.5 + #Range: 0.0 ~ 100.0 + shipAttributeCogMaxSpeed = 30.0 + #Range: 1.0 ~ 10000.0 + shipAttributeCogMaxHealth = 300.0 + #Range: 0.0 ~ 100.0 + shipAttributeCogRotationAcceleration = 0.7 + #Range: 0.0 ~ 100.0 + shipAttributeCogMaxReverseSpeed = 0.1 + #Range: 0.0 ~ 100.0 + shipAttributeCogAcceleration = 0.015 + #Cog specific speed modifiers. + [Ship.Cog.Modifier] + #Specify biome type for the Cog. Can be NONE, COLD, NEUTRAL, or WARM + #Allowed Values: NONE, COLD, NEUTRAL, WARM + shipModifierCogBiome = "COLD" + [Ship.Drakkar] + #Default configs for the container of the Drakkar. + [Ship.Drakkar.Container] + #Set container size for the Drakkar (value must be divisible by 9 and bigger than 0). + shipContainerDrakkarContainerSize = 54 + #Default attributes for the Drakkar. Speed in km/h, Health in default mc health points + [Ship.Drakkar.Attributes] + #Range: 0.0 ~ 100.0 + shipAttributeDrakkarMaxSpeed = 30.0 + #Range: 0.0 ~ 10000.0 + shipAttributeDrakkarMaxHealth = 200.0 + #Range: 0.0 ~ 100.0 + shipAttributeDrakkarMaxReverseSpeed = 0.1 + #Range: 0.0 ~ 100.0 + shipAttributeDrakkarMaxRotationSpeed = 5.0 + #Range: 0.0 ~ 100.0 + shipAttributeDrakkarAcceleration = 0.015 + #Range: 0.0 ~ 100.0 + shipAttributeDrakkarRotationAcceleration = 1.0 + #Drakkar specific speed modifiers. + [Ship.Drakkar.Modifier] + #Specify biome type for the Drakkar. Can be NONE, COLD, NEUTRAL, or WARM + #Allowed Values: NONE, COLD, NEUTRAL, WARM + shipModifierDrakkarBiome = "COLD" + [Ship.Brigg] + #Default configs for the container of the Brigg. + [Ship.Brigg.Container] + #Set container size for the Brigg (value must be divisible by 9 and bigger than 0). + shipContainerBriggContainerSize = 162 + #Default attributes for the Brigg. Speed in km/h, Health in default mc health points + [Ship.Brigg.Attributes] + #Range: 0.0 ~ 100.0 + shipAttributeBriggMaxSpeed = 35.0 + #Range: 0.0 ~ 100.0 + shipAttributeBriggMaxReverseSpeed = 0.1 + #Range: 0.0 ~ 100.0 + shipAttributeBriggRotationAcceleration = 0.55 + #Range: 0.0 ~ 10000.0 + shipAttributeBriggMaxHealth = 450.0 + #Range: 0.0 ~ 100.0 + shipAttributeBriggAcceleration = 0.015 + #Range: 0.0 ~ 100.0 + shipAttributeBriggMaxRotationSpeed = 4.0 + #Brigg specific speed modifiers. + [Ship.Brigg.Modifier] + #Specify biome type for the Brigg. Can be NONE, COLD, NEUTRAL, or WARM + #Allowed Values: NONE, COLD, NEUTRAL, WARM + shipModifierBriggBiome = "COLD" + [Ship.Galley] + #Default configs for the container of the Galley. + [Ship.Galley.Container] + #Set container size for the Galley (value must be divisible by 9 and bigger than 0). + shipContainerGalleyContainerSize = 54 + #Default attributes for the Galley. Speed in km/h, Health in default mc health points + [Ship.Galley.Attributes] + #Range: 0.0 ~ 100.0 + shipAttributeGalleyAcceleration = 0.015 + #Range: 0.0 ~ 100.0 + shipAttributeGalleyMaxSpeed = 30.0 + #Range: 0.0 ~ 10000.0 + shipAttributeGalleyMaxHealth = 200.0 + #Range: 0.0 ~ 100.0 + shipAttributeGalleyMaxReverseSpeed = 0.1 + #Range: 0.0 ~ 100.0 + shipAttributeGalleyMaxRotationSpeed = 5.0 + #Range: 0.0 ~ 100.0 + shipAttributeGalleyRotationAcceleration = 1.0 + #Galley specific speed modifiers. + [Ship.Galley.Modifier] + #Specify biome type for the Galley. Can be NONE, COLD, NEUTRAL, or WARM + #Allowed Values: NONE, COLD, NEUTRAL, WARM + shipModifierGalleyBiome = "WARM" diff --git a/config/smoothchunk.json b/config/smoothchunk.json new file mode 100644 index 0000000..d9a2d38 --- /dev/null +++ b/config/smoothchunk.json @@ -0,0 +1,10 @@ +{ + "chunkSaveDelay": { + "desc:": "Delay before a chunk is saved to disk, default: 300 seconds", + "chunkSaveDelay": 300 + }, + "debugLogging": { + "desc:": "Enables debug logging of how many chunks got saved in a tick. default: false", + "debugLogging": false + } +} \ No newline at end of file diff --git a/config/sodium-extra-options.json b/config/sodium-extra-options.json new file mode 100644 index 0000000..8f60bc9 --- /dev/null +++ b/config/sodium-extra-options.json @@ -0,0 +1,67 @@ +{ + "animation_settings": { + "animation": true, + "water": true, + "lava": true, + "fire": true, + "portal": true, + "block_animations": true, + "sculk_sensor": true + }, + "particle_settings": { + "particles": true, + "rain_splash": true, + "block_break": true, + "block_breaking": true, + "other": {} + }, + "detail_settings": { + "sky": true, + "sun_moon": true, + "stars": true, + "rain_snow": true, + "biome_colors": true, + "sky_colors": true + }, + "render_settings": { + "fog_distance": 0, + "fog_start": 100, + "multi_dimension_fog_control": false, + "dimensionFogDistance": {}, + "light_updates": true, + "item_frame": true, + "armor_stand": true, + "painting": true, + "piston": true, + "beacon_beam": true, + "enchanting_table_book": true, + "item_frame_name_tag": true, + "player_name_tag": true + }, + "extra_settings": { + "overlay_corner": "TOP_LEFT", + "text_contrast": "NONE", + "show_fps": false, + "show_f_p_s_extended": true, + "show_coords": false, + "reduce_resolution_on_mac": false, + "use_adaptive_sync": false, + "cloud_height": 192, + "cloud_distance": 100, + "toasts": true, + "advancement_toast": true, + "recipe_toast": true, + "system_toast": true, + "tutorial_toast": true, + "instant_sneak": false, + "prevent_shaders": false, + "steady_debug_hud": true, + "steady_debug_hud_refresh_interval": 1 + }, + "super_secret_settings": { + "fetch_sodium_extra_crowdin_translations": false, + "sodium_extra_crowdin_project_identifier": "sodium-extra", + "fetch_sodium_crowdin_translations": false, + "sodium_crowdin_project_identifier": "sodium-fabric" + } +} \ No newline at end of file diff --git a/config/sodium-extra.properties b/config/sodium-extra.properties new file mode 100644 index 0000000..dde224b --- /dev/null +++ b/config/sodium-extra.properties @@ -0,0 +1,7 @@ +# This is the configuration file for Sodium Extra. +# This file exists for debugging purposes and should not be configured otherwise. +# +# You can find information on editing this file and all the available options here: +# https://github.com/FlashyReese/sodium-extra-fabric/wiki/Configuration-File +# +# By default, this file will be empty except for this notice. diff --git a/config/sodium-fingerprint.json b/config/sodium-fingerprint.json new file mode 100644 index 0000000..6799e46 --- /dev/null +++ b/config/sodium-fingerprint.json @@ -0,0 +1 @@ +{"v":1,"s":"ab3747a700feddeb299ed832bb05b1db2a24575245a16aae42417fccd11975f066be984e7b6c290b39388e88d16d4b521bf42c9bdfe377c23b9c0ddc68b5684c","u":"3d557f744c2e0917213e0e713b9e7db28ed879fefb1ac181161a26f1271f2cb0a4934305e3df3af6dc2493d7867801fd265c1b0b175f04b0078371906779cb6a","p":"92246c7b2a0db9c64e3d7752923b1f91b64685da94e472a40dbbfeb76c8629907f064112f8c949a6ed92df89c9958e46d2ef0b914a68607923552845184e3233","t":1723148304} \ No newline at end of file diff --git a/config/sodium-mixins.properties b/config/sodium-mixins.properties new file mode 100644 index 0000000..731e8bb --- /dev/null +++ b/config/sodium-mixins.properties @@ -0,0 +1,6 @@ +# This is the configuration file for Sodium. +# +# You can find information on editing this file and all the available options here: +# https://github.com/CaffeineMC/sodium-fabric/wiki/Configuration-File +# +# By default, this file will be empty except for this notice. diff --git a/config/sodium-options.json b/config/sodium-options.json new file mode 100644 index 0000000..ffda91d --- /dev/null +++ b/config/sodium-options.json @@ -0,0 +1,25 @@ +{ + "quality": { + "weather_quality": "DEFAULT", + "leaves_quality": "DEFAULT", + "enable_vignette": true + }, + "advanced": { + "enable_memory_tracing": false, + "use_advanced_staging_buffers": true, + "cpu_render_ahead_limit": 3 + }, + "performance": { + "chunk_builder_threads": 0, + "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_no_error_g_l_context": true + }, + "notifications": { + "has_cleared_donation_button": false, + "has_seen_donation_prompt": false + } +} \ No newline at end of file diff --git a/config/soulsweapons.json b/config/soulsweapons.json new file mode 100644 index 0000000..984b325 --- /dev/null +++ b/config/soulsweapons.json @@ -0,0 +1,509 @@ +{ + "inform_player_about_disabled_use": true, + "inform_player_about_no_bound_freyr_sword": true, + "inform_player_about_no_soulbound_thrown_weapon": true, + "inform_player_about_cooldown_effect": true, + "inform_player_about_no_souls_to_collect": true, + "inform_player_about_collected_souls": true, + "disable_weapon_recipes": false, + "disable_gun_recipes": false, + "disable_armor_recipes": false, + "disable_all_enchantments": false, + "disable_enchantment_fast_hands": false, + "disable_enchantment_posture_breaker": false, + "disable_enchantment_stagger": false, + "disable_recipe_bloodthirster": false, + "disable_recipe_bluemoon_greatsword": false, + "disable_recipe_bluemoon_shortsword": false, + "disable_recipe_comet_spear": false, + "disable_recipe_darkin_blade": false, + "disable_recipe_dawnbreaker": false, + "disable_recipe_heap_of_raw_iron": false, + "disable_recipe_dragonslayer_swordspear": false, + "disable_recipe_dragon_staff": false, + "disable_recipe_draugr": false, + "disable_recipe_galeforce": false, + "disable_recipe_rageblade": false, + "disable_recipe_lich_bane": false, + "disable_recipe_moonlight_greatsword": false, + "disable_recipe_moonlight_shortsword": false, + "disable_recipe_nightfall": false, + "disable_recipe_soul_reaper": false, + "disable_recipe_forlorn_scythe": true, + "disable_recipe_whirligig_sawblade": false, + "disable_recipe_withered_wabbajack": false, + "disable_recipe_leviathan_axe": false, + "disable_recipe_skofnung": false, + "disable_recipe_pure_moonlight_greatsword": false, + "disable_recipe_mjolnir": false, + "disable_recipe_sword_of_freyr": false, + "disable_recipe_sting": false, + "disable_recipe_featherlight": false, + "disable_recipe_crucible_sword": false, + "disable_recipe_darkin_scythe": false, + "disable_recipe_kirkhammer": false, + "disable_recipe_ludwigs_holy_blade": false, + "disable_recipe_draupnir_spear": false, + "disable_recipe_holy_moonlight_sword": false, + "disable_recipe_master_sword": false, + "disable_recipe_frostmourne": false, + "disable_recipe_nights_edge": false, + "disable_recipe_empowered_dawnbreaker": false, + "disable_recipe_kraken_slayer_bow": true, + "disable_recipe_kraken_slayer_crossbow": false, + "disable_recipe_darkmoon_longbow": false, + "disable_recipe_arkenplate": false, + "disable_recipe_chaos_helmet": false, + "disable_recipe_soul_ingot_helmet": false, + "disable_recipe_soul_ingot_chestplate": false, + "disable_recipe_soul_ingot_leggings": false, + "disable_recipe_soul_ingot_boots": false, + "disable_recipe_soul_robes_helmet": false, + "disable_recipe_soul_robes_chestplate": false, + "disable_recipe_soul_robes_leggings": false, + "disable_recipe_soul_robes_boots": false, + "disable_recipe_forlorn_helmet": false, + "disable_recipe_forlorn_chestplate": false, + "disable_recipe_forlorn_leggings": false, + "disable_recipe_forlorn_boots": false, + "disable_recipe_withered_chest": false, + "disable_recipe_enhanced_arkenplate": false, + "disable_recipe_enhanced_withered_chest": false, + "disable_use_bluemoon_shortsword": false, + "disable_use_bluemoon_greatsword": false, + "disable_use_moonlight_shortsword": false, + "disable_use_moonlight_greatsword": false, + "disable_use_pure_moonlight_greatsword": false, + "disable_use_bloodthirster": false, + "disable_use_darkin_blade": false, + "disable_use_dragon_staff": false, + "disable_use_withered_wabbajack": false, + "disable_use_whirligig_sawblade": false, + "disable_use_dragonslayer_swordspear": false, + "disable_use_rageblade": false, + "disable_use_heap_of_raw_iron": false, + "disable_use_nightfall": false, + "disable_use_comet_spear": false, + "disable_use_lich_bane": false, + "disable_use_galeforce": false, + "disable_use_draugr": false, + "disable_use_dawnbreaker": false, + "disable_use_soul_reaper": false, + "disable_use_forlorn_scythe": false, + "disable_use_leviathan_axe": false, + "disable_use_skofnung": false, + "disable_use_skofnung_stone": false, + "disable_use_mjolnir": false, + "disable_use_sword_of_freyr": false, + "disable_use_featherlight": false, + "disable_use_crucible_sword": false, + "disable_use_darkin_scythe": false, + "disable_use_darkin_scythe_prime": false, + "disable_use_shadow_assassin_scythe": false, + "disable_use_draupnir_spear": false, + "disable_use_holy_moonlight_greatsword": false, + "disable_use_holy_moonlight_sword": false, + "disable_use_frostmourne": false, + "disable_use_master_sword": false, + "disable_use_nights_edge": false, + "disable_use_empowered_dawnbreaker": false, + "disable_use_kraken_slayer_bow": false, + "disable_use_kraken_slayer_crossbow": false, + "disable_use_darkmoon_longbow": false, + "disable_use_hunter_pistol": false, + "disable_use_hunter_blunderbuss": false, + "disable_use_gatling_gun": false, + "disable_use_hunter_cannon": false, + "disable_use_kirkhammer": false, + "disable_use_silver_sword": false, + "disable_use_ludwigs_holy_greatsword": false, + "disable_use_moonstone_ring": false, + "disable_use_chaos_orb": false, + "disable_use_arkenplate": false, + "disable_use_chaos_crown": false, + "disable_use_chaos_robes": false, + "disable_use_soul_ingot_armor": false, + "disable_use_soul_robes_armor": false, + "disable_use_forlorn_armor": false, + "disable_use_withered_chest": false, + "withered_demon_spawnweight": 20, + "moderatly_sized_chungus_spawnweight": 100, + "chungus_monolith_radius": 32, + "evil_forlorn_spawnweight": 15, + "can_withered_demon_spawn": true, + "can_moderatly_sized_chungus_spawn": true, + "can_evil_forlorn_spawn": true, + "can_bosses_break_blocks": true, + "chaos_armor_armor_points": [ + 4, + 7, + 10, + 5 + ], + "chaos_set_armor_points": [ + 2, + 3, + 4, + 1 + ], + "soul_ingot_armor_points": [ + 3, + 5, + 7, + 3 + ], + "soul_robes_armor_points": [ + 2, + 3, + 4, + 3 + ], + "forlorn_armor_armor_points": [ + 3, + 6, + 8, + 3 + ], + "withered_armor_armor_points": [ + 4, + 7, + 10, + 5 + ], + "chaos_crown_flip_effect_cooldown": 300, + "arkenplate_shockwave_cooldown": 200, + "arkenplate_shockwave_knockback": 2.0, + "arkenplate_shockwave_damage": 6.0, + "arkenplate_mirror_trigger_percent": 0.334, + "forlorn_set_bonus_range": 6.0, + "forlorn_set_bonus_heal": 2.0, + "withered_chest_strength_trigger_percent_1": 0.5, + "withered_chest_strength_trigger_percent_2": 0.25, + "withered_chest_ability_cooldown": 500, + "withered_chest_apply_wither_duration": 100, + "withered_chest_apply_wither_amplifier": 0, + "withered_chest_apply_fire_seconds": 6, + "withered_chest_life_leach_duration": 400, + "withered_chest_life_leach_amplifier": 0, + "bloodthirster_damage": 8, + "bloodthirster_attack_speed": 1.6, + "bloodthirster_overshields": true, + "lifesteal_item_base_healing": 2, + "lifesteal_item_heal_scales": true, + "lifesteal_item_cooldown": 60, + "bluemoon_greatsword_damage": 8, + "bluemoon_greatsword_attack_speed": 1.2, + "bluemoon_greatsword_charge_needed": 8, + "bluemoon_greatsword_charge_added_post_hit": 1, + "bluemoon_shortsword_damage": 7, + "bluemoon_shortsword_attack_speed": 1.6, + "bluemoon_shortsword_projectile_cooldown": 120, + "comet_spear_damage": 8, + "comet_spear_attack_speed": 1.4, + "comet_spear_projectile_damage": 8.0, + "comet_spear_ability_damage": 10, + "comet_spear_skyfall_ability_cooldown": 400, + "comet_spear_throw_ability_cooldown": 25, + "comet_spear_calculated_fall_base_radius": 0.0, + "comet_spear_calculated_fall_height_increase_radius_modifier": 2.0, + "comet_spear_calculated_fall_max_radius": 100.0, + "comet_spear_calculated_fall_max_damage": 100.0, + "comet_spear_calculated_fall_height_increase_damage_modifier": 0.2, + "comet_spear_calculated_fall_target_launch_modifier": 0.35, + "comet_spear_calculated_fall_should_heal": false, + "comet_spear_calculated_fall_heal_from_damage_modifier": 0.1, + "crucible_sword_normal_damage": 9, + "crucible_sword_attack_speed": 1.6, + "crucible_sword_empowered_damage": 30, + "crucible_sword_empowered_cooldown": 300, + "darkin_blade_damage": 11, + "darkin_blade_attack_speed": 1.0, + "darkin_blade_ability_damage": 12, + "darkin_blade_ability_cooldown": 150, + "darkin_blade_calculated_fall_base_radius": 3.0, + "darkin_blade_calculated_fall_height_increase_radius_modifier": 1.75, + "darkin_blade_calculated_fall_target_launch_modifier": 0.25, + "darkin_blade_calculated_fall_max_radius": 100.0, + "darkin_blade_calculated_fall_max_damage": 100.0, + "darkin_blade_calculated_fall_height_increase_damage_modifier": 0.2, + "darkin_blade_calculated_fall_should_heal": true, + "darkin_blade_calculated_fall_heal_from_damage_modifier": 0.1, + "darkin_scythe_damage": 9, + "darkin_scythe_attack_speed": 1.0, + "darkin_scythe_bonus_damage": 3, + "darkin_scythe_max_souls": 100, + "darkin_scythe_prime_ability_damage": 20.0, + "darkin_scythe_prime_attack_speed": 1.6, + "darkin_scythe_prime_ability_percent_health_damage": 10.0, + "darkin_scythe_prime_ability_cooldown": 400, + "darkin_scythe_prime_heal_modifier": 0.25, + "darkin_scythe_prime_ticks_before_dismount": 80, + "darkmoon_longbow_damage": 9, + "darkmoon_longbow_max_velocity": 3.0, + "darkmoon_longbow_pull_time_ticks": 25, + "darkmoon_longbow_ability_damage": 13.0, + "darkmoon_longbow_ability_cooldown_ticks": 150, + "dawnbreaker_damage": 8, + "dawnbreaker_attack_speed": 1.6, + "dawnbreaker_ability_damage": 10.0, + "dawnbreaker_ability_percent_chance_addition": 0.0, + "dawnbreaker_affect_all_entities": false, + "empowered_dawnbreaker_damage": 10, + "empowered_dawnbreaker_attack_speed": 1.2, + "empowered_dawnbreaker_ability_damage": 15.0, + "empowered_dawnbreaker_ability_cooldown": 180, + "heap_of_raw_iron_damage": 10, + "heap_of_raw_iron_attack_speed": 1.0, + "heap_of_raw_iron_cooldown": 200, + "heap_of_raw_iron_calculated_fall_base_radius": 2.5, + "heap_of_raw_iron_calculated_fall_height_increase_radius_modifier": 1.6, + "heap_of_raw_iron_calculated_fall_target_launch_modifier": 0.25, + "heap_of_raw_iron_calculated_fall_max_radius": 100.0, + "heap_of_raw_iron_calculated_fall_max_damage": 100.0, + "heap_of_raw_iron_calculated_fall_height_increase_damage_modifier": 0.2, + "heap_of_raw_iron_calculated_fall_should_heal": false, + "heap_of_raw_iron_calculated_fall_heal_from_damage_modifier": 0.1, + "dragonslayer_swordspear_damage": 8, + "dragonslayer_swordspear_attack_speed": 1.4, + "dragonslayer_swordspear_rain_bonus_damage": 1, + "dragonslayer_swordspear_rain_total_attack_speed": 1.8, + "dragonslayer_swordspear_projectile_damage": 7.0, + "dragonslayer_swordspear_ability_damage": 6.0, + "dragonslayer_swordspear_lightning_amount": 1, + "dragonslayer_swordspear_throw_cooldown": 100, + "dragonslayer_swordspear_ability_cooldown": 300, + "dragon_staff_damage": 8, + "dragon_staff_attack_speed": 1.2, + "dragon_staff_aura_strength": 1, + "dragon_staff_cooldown": 100, + "dragon_staff_use_time": 100, + "draugr_damage_at_night": 11, + "draugr_attack_speed": 1.6, + "draupnir_spear_damage": 8, + "draupnir_spear_attack_speed": 1.4, + "draupnir_spear_projectile_damage": 10.0, + "draupnir_spear_detonate_power": 1.0, + "draupnir_spear_throw_cooldown": 40, + "draupnir_spear_detonate_cooldown": 100, + "draupnir_spear_summon_spears_cooldown": 300, + "draupnir_spear_max_age": 400, + "forlorn_scythe_damage": 11, + "forlorn_scythe_attack_speed": 1.0, + "featherlight_damage": 8, + "featherlight_attack_speed": 1.6, + "featherlight_calculated_fall_base_radius": 2.5, + "featherlight_calculated_fall_height_increase_radius_modifier": 1.6, + "featherlight_calculated_fall_target_launch_modifier": 0.2, + "featherlight_calculated_fall_max_radius": 100.0, + "featherlight_calculated_fall_max_damage": 100.0, + "featherlight_calculated_fall_height_increase_damage_modifier": 0.2, + "featherlight_calculated_fall_should_heal": false, + "featherlight_calculated_fall_heal_from_damage_modifier": 0.1, + "frostmourne_damage": 11, + "frostmourne_attack_speed": 1.6, + "frostmourne_summoned_allies_cap": 50, + "galeforce_damage": 10, + "galeforce_max_velocity": 3.0, + "galeforce_pull_time_ticks": 20, + "galeforce_speed_effect_duration_ticks": 50, + "galeforce_speed_effect_amplifier": 4, + "galeforce_dash_cooldown": 80, + "rageblade_damage": 7, + "rageblade_attack_speed": 1.6, + "rageblade_haste_cap": true, + "holy_moonlight_greatsword_damage": 10, + "holy_moonlight_greatsword_attack_speed": 1.2, + "holy_moonlight_ability_charge_needed": 50, + "holy_moonlight_greatsword_charge_added_post_hit": 3, + "holy_moonlight_ability_damage": 20.0, + "holy_moonlight_ability_knockup": 0.3, + "holy_moonlight_ability_cooldown": 150, + "holy_moonlight_ruptures_amount": 8, + "holy_moonlight_sword_damage": 7, + "holy_moonlight_sword_attack_speed": 1.6, + "holy_moonlight_sword_max_bonus_damage": 2, + "holy_moonlight_sword_charge_added_post_hit": 1, + "kirkhammer_damage": 9, + "kirkhammer_attack_speed": 1.0, + "kirkhammer_silver_sword_damage": 6, + "kirkhammer_silver_sword_attack_speed": 1.6, + "kraken_slayer_damage": 7, + "kraken_slayer_max_velocity": 3.0, + "kraken_slayer_pull_time_ticks": 10, + "kraken_slayer_crossbow_damage": 9, + "kraken_slayer_crossbow_max_velocity": 3.15, + "kraken_slayer_crossbow_pull_time_ticks": 15, + "kraken_slayer_bonus_true_damage": 4.0, + "kraken_slayer_player_true_damage_taken_modifier": 0.4, + "leviathan_axe_damage": 10, + "leviathan_axe_attack_speed": 1.2, + "leviathan_axe_projectile_damage": 7.0, + "leviathan_axe_return_speed": 4.0, + "lich_bane_damage": 7, + "lich_bane_attack_speed": 1.6, + "lich_bane_bonus_magic_damage": 2.0, + "ludwigs_holy_greatsword_damage": 8, + "ludwigs_holy_greatsword_attack_speed": 1.2, + "righteous_undead_bonus_damage": 2.0, + "master_sword_damage": 8, + "master_sword_attack_speed": 1.6, + "master_sword_projectile_damage": 11.0, + "mjolnir_damage": 9, + "mjolnir_attack_speed": 1.2, + "mjolnir_rain_bonus_damage": 2, + "mjolnir_rain_total_attack_speed": 1.2, + "mjolnir_smash_damage": 8.0, + "mjolnir_projectile_damage": 7.0, + "mjolnir_lightning_smash_cooldown": 200, + "mjolnir_lightning_circle_amount": 3, + "mjolnir_riptide_cooldown": 300, + "mjolnir_return_speed": 4.0, + "moonlight_greatsword_damage": 9, + "moonlight_greatsword_attack_speed": 1.2, + "moonlight_greatsword_projectile_damage": 8.0, + "pure_moonlight_greatsword_damage": 11, + "pure_moonlight_greatsword_attack_speed": 1.2, + "moonlight_shortsword_damage": 8, + "moonlight_shortsword_attack_speed": 1.6, + "moonlight_shortsword_projectile_damage": 3.0, + "moonlight_shortsword_projectile_cooldown": 13, + "moonlight_ring_projectile_cooldown": 5, + "nightfall_damage": 11, + "nightfall_attack_speed": 1.0, + "nightfall_ability_damage": 18.0, + "nightfall_ability_shield_power": 2, + "nightfall_shield_cooldown": 500, + "nightfall_smash_cooldown": 300, + "nightfall_summoned_allies_cap": 50, + "nightfall_summon_chance": 0.3, + "nightfall_calculated_fall_base_radius": 3.0, + "nightfall_calculated_fall_height_increase_radius_modifier": 1.5, + "nightfall_calculated_fall_target_launch_modifier": 0.3, + "nightfall_calculated_fall_max_radius": 100.0, + "nightfall_calculated_fall_max_damage": 100.0, + "nightfall_calculated_fall_height_increase_damage_modifier": 0.2, + "nightfall_calculated_fall_should_heal": false, + "nightfall_calculated_fall_heal_from_damage_modifier": 0.1, + "nights_edge_weapon_damage": 10, + "nights_edge_weapon_attack_speed": 1.2, + "nights_edge_ability_cooldown": 120, + "nights_edge_ability_damage": 10.0, + "shadow_assassin_scythe_shadow_step_bonus_damage": 2, + "shadow_assassin_scythe_attack_speed": 1.0, + "shadow_assassin_scythe_shadow_step_ticks": 60, + "shadow_assassin_scythe_shadow_step_cooldown": 160, + "shadow_assassin_scythe_ability_damage": 40.0, + "shadow_assassin_scythe_ability_cooldown": 300, + "shadow_assassin_scythe_ticks_before_dismount": 120, + "skofnung_damage": 8, + "skofnung_attack_speed": 1.6, + "skofnung_bonus_damage": 2, + "skofnung_disable_heal_duration": 100, + "skofnung_stone_additional_empowered_strikes": 8, + "soul_reaper_damage": 11, + "soul_reaper_attack_speed": 1.0, + "soul_reaper_summoned_allies_cap": 50, + "sting_damage": 6, + "sting_attack_speed": 1.6, + "sting_bonus_arthropod_damage": 4.0, + "sword_of_freyr_damage": 7, + "sword_of_freyr_attack_speed": 1.6, + "sword_of_freyr_friendly_fire": true, + "whirligig_sawblade_damage": 8, + "whirligig_sawblade_attack_speed": 1.6, + "whirligig_sawblade_ability_damage": 5.0, + "whirligig_sawblade_cooldown": 100, + "whirligig_sawblade_use_time": 100, + "withered_wabbajack_damage": 8, + "withered_wabbajack_attack_speed": 1.2, + "calculated_fall_hits_immune_entities": false, + "ultra_heavy_haste_when_strength": true, + "ultra_heavy_posture_loss_modifier_when_stagger_enchant": 2.0, + "max_posture_loss": 200, + "stagger_enchant_posture_loss_applied_per_level": 5, + "stagger_enchant_posture_loss_on_player_modifier": 1.0, + "enable_shield_parry": true, + "shield_parry_cooldown": 40, + "shield_parry_max_animation_frames": 10, + "shield_parry_frames": 3, + "can_projectiles_apply_posture_loss": true, + "silver_bullet_undead_bonus_damage": 4.0, + "silver_bullet_posture_loss_on_player_modifier": 0.75, + "blunderbuss_damage": 13.0, + "blunderbuss_velocity": 3.0, + "blunderbuss_divergence": 10.0, + "blunderbuss_projectile_amount": 3, + "blunderbuss_posture_loss": 25, + "blunderbuss_cooldown": 80, + "blunderbuss_bullets_needed": 2, + "gatling_gun_damage": 3.0, + "gatling_gun_velocity": 3.0, + "gatling_gun_divergence": 3.0, + "gatling_gun_posture_loss": 9, + "gatling_gun_max_time": 100, + "gatling_gun_cooldown": 120, + "gatling_gun_bullets_needed": 1, + "hunter_cannon_damage": 30.0, + "hunter_cannon_velocity": 3.0, + "hunter_cannon_divergence": 1.0, + "hunter_cannon_posture_loss": 60, + "hunter_cannon_cooldown": 300, + "hunter_cannon_bullets_needed": 10, + "hunter_pistol_damage": 6.0, + "hunter_pistol_velocity": 3.0, + "hunter_pistol_divergence": 1.0, + "hunter_pistol_posture_loss": 30, + "hunter_pistol_cooldown": 50, + "hunter_pistol_bullets_needed": 1, + "decaying_king_health": 500.0, + "decaying_king_attack_cooldown_ticks": 20, + "decaying_king_special_cooldown_ticks": 60, + "decaying_king_damage_modifier": 1.0, + "decaying_king_xp": 500, + "returning_knight_health": 400.0, + "returning_knight_attack_cooldown_ticks": 40, + "returning_knight_special_cooldown_ticks": 80, + "returning_knight_damage_modifier": 1.0, + "returning_knight_xp": 500, + "old_champions_remains_health": 200.0, + "old_champions_remains_attack_cooldown_ticks": 10, + "old_champions_remains_special_cooldown_ticks": 300, + "old_champions_remains_damage_modifier": 1.0, + "old_champions_remains_hits_before_growing_resistant": 3, + "old_champions_remains_xp": 200, + "frenzied_shade_health": 100.0, + "frenzied_shade_damage_modifier": 1.0, + "frenzied_shade_cooldown": 10, + "frenzied_shade_xp": 400, + "chaos_monarch_health": 400.0, + "chaos_monarch_attack_cooldown_ticks": 20, + "chaos_monarch_damage_modifier": 1.0, + "chaos_monarch_xp": 500, + "fallen_icon_health": 500.0, + "fallen_icon_attack_cooldown_ticks_phase_1": 30, + "fallen_icon_attack_cooldown_ticks_phase_2": 0, + "fallen_icon_special_cooldown_ticks": 50, + "fallen_icon_damage_modifier": 1.0, + "fallen_icon_xp": 600, + "day_stalker_health": 500.0, + "day_stalker_damage_modifier": 1.0, + "day_stalker_empowered_projectile_damage_taken_modifier_phase_1": 0.8, + "day_stalker_empowered_projectile_damage_taken_modifier_phase_2": 0.6, + "day_stalker_xp": 500, + "day_stalker_cooldown_modifier_phase_1": 1.0, + "day_stalker_cooldown_modifier_phase_2": 1.0, + "day_stalker_special_cooldown_modifier_phase_1": 1.0, + "day_stalker_special_cooldown_modifier_phase_2": 1.0, + "duo_fight_time_before_switch": 400, + "night_prowler_health": 400.0, + "night_prowler_damage_modifier": 1.0, + "night_prowler_eclipse_healing": 3.0, + "night_prowler_projectile_heal_below_percent_health": 0.16670000553131104, + "night_prowler_projectile_heal_amount": 5.0, + "night_prowler_teleport_chance": 0.3, + "night_prowler_xp": 500, + "night_prowler_cooldown_modifier_phase_1": 1.0, + "night_prowler_cooldown_modifier_phase_2": 1.0, + "night_prowler_special_cooldown_modifier_phase_1": 1.0, + "night_prowler_special_cooldown_modifier_phase_2": 1.0 +} \ No newline at end of file diff --git a/config/sound_physics_remastered/allowed_sounds.properties b/config/sound_physics_remastered/allowed_sounds.properties new file mode 100644 index 0000000..b7c60e0 --- /dev/null +++ b/config/sound_physics_remastered/allowed_sounds.properties @@ -0,0 +1,2615 @@ +# Allowed sounds +# Set to 'false' to disable sound physics for that sound + +minecraft\:entity.parrot.imitate.vindicator=true +minecraft\:item.bucket.fill=true +minecraft\:entity.sniffer.digging=true +simplyskills\:dark_whirlwind_whoosh=true +minecraft\:block.lodestone.place=true +bettercombat\:glaive_slash_slow=true +minecraft\:music.overworld.bamboo_jungle=true +simplyswords\:dark_sword_whoosh_01=true +minecraft\:entity.hoglin.death=true +deeperdarker\:entity.shriek_worm.death=true +minecraft\:block.cherry_wood_fence_gate.open=true +simplyswords\:dark_sword_whoosh_03=true +aquamirae\:block.frozen_chest.unlock=true +simplyswords\:dark_sword_whoosh_02=true +minecraft\:entity.parrot.imitate.witch=true +minecraft\:entity.pillager.celebrate=true +simplyswords\:dark_sword_whoosh_04=true +simplyswords\:elemental_bow_holy_shoot_flyby_03=true +minecraft\:block.chiseled_bookshelf.insert.enchanted=true +minecraft\:entity.mule.eat=true +minecraft\:item.trident.thunder=true +minecraft\:block.bamboo_wood_door.open=true +minecraft\:entity.piglin.ambient=true +mythicmounts\:colelytra_hurt=true +minecraft\:block.pink_petals.step=true +graveyard\:entity.lich.spawn=true +soulsweapons\:knight_swipe=true +wizards\:arcane_beam_casting=true +simplyswords\:elemental_bow_holy_shoot_flyby_02=true +simplyswords\:elemental_bow_holy_shoot_flyby_01=true +minecraft\:block.bamboo_wood_pressure_plate.click_on=true +naturalist\:entity.hippo.ambient=true +minecraft\:music.overworld.jagged_peaks=true +mcwwindows\:blinds_close=true +soulsweapons\:shield=true +naturalist\:entity.bird.ambient_cardinal=true +rogues\:shadow_step_arrive=true +minecraft\:block.bamboo_sapling.break=true +minecraft\:block.note_block.banjo=true +minecraft\:entity.llama.step=true +graveyard\:entity.lich.shoot_skull=true +graveyard\:item.vial.splash=true +paladins\:shield_equip=true +minecraft\:item.flintandsteel.use=true +minecraft\:entity.shulker.open=true +graveyard\:entity.lich.death=true +soulsweapons\:gatling_gun_barrage=true +minecraft\:block.note_block.imitate.creeper=true +minecraft\:entity.skeleton_horse.hurt=true +adventurez\:piglinbeast_clubswing=true +minecraft\:block.powder_snow.break=true +minecraft\:entity.camel.eat=true +minecraft\:entity.mule.death=true +wizards\:fireball_impact=true +adventurez\:baby_deer_hurt=true +minecraft\:entity.magma_cube.hurt_small=true +minecells\:obelisk=true +simplyskills\:maw=true +promenade\:entity.duck.step=true +minecraft\:block.roots.hit=true +deeperdarker\:entity.shattered.death=true +minecraft\:entity.sniffer.step=true +rogues\:charge_activate=true +minecraft\:entity.player.attack.crit=true +minecraft\:entity.silverfish.death=true +minecraft\:entity.axolotl.splash=true +minecraft\:block.frogspawn.hatch=true +minecraft\:music.overworld.cherry_grove=true +minecraft\:entity.camel.saddle=true +minecraft\:block.froglight.hit=true +friendsandfoes\:entity.iceologer.prepare_slowness=true +simplyskills\:fx_skill_backstab=true +bettercombat\:wand_swing=true +minecells\:conjunctivius.hit=true +soulsweapons\:day_stalker_spin_normal=true +minecraft\:block.nether_sprouts.place=true +paladins\:holy_beam_damage=true +graveyard\:entity.corrupted_illager.hurt=true +creeperoverhaul\:entity.wood.creeper.explosion=true +minecraft\:block.fungus.place=true +mythicmounts\:griffon_death=true +aquamirae\:item.shell_horn.use=true +minecraft\:block.gilded_blackstone.step=true +minecraft\:entity.piglin.retreat=true +adventurez\:desert_rhino_idle=true +convenientdecor\:silly_alien_plushie_squish=true +simplyskills\:spell_celestial_cast=true +minecraft\:entity.armor_stand.hit=true +adventurez\:golem_roar=true +minecraft\:ambient.basalt_deltas.loop=true +minecraft\:entity.skeleton_horse.step_water=true +minecraft\:music.menu=true +minecraft\:block.sculk_vein.place=true +mcwwindows\:bars_close=true +minecells\:conjunctivius.shot=true +minecraft\:block.anvil.hit=true +adventurez\:shadow_prepare=true +bingus\:recall=true +simplyswords\:spell_fire=true +minecraft\:entity.chicken.step=true +naturalist\:entity.lion.ambient=true +betterend\:betterend.ambient.dust_wastelands=true +deeperdarker\:item.sculk_transmitter.link=true +minecraft\:entity.cat.beg_for_food=true +minecraft\:block.wood.fall=true +minecraft\:entity.camel.hurt=true +minecraft\:entity.zombie.break_wooden_door=true +cave_dweller\:flee_2=true +cave_dweller\:flee_1=true +minecraft\:entity.goat.screaming.horn_break=true +simplyswords\:elemental_bow_fire_shoot_flyby_03=true +simplyswords\:elemental_bow_fire_shoot_flyby_02=true +simplyswords\:elemental_bow_fire_shoot_flyby_01=true +minecraft\:entity.sniffer.digging_stop=true +soulsweapons\:gatling_gun_stop=true +minecraft\:ambient.warped_forest.mood=true +mutantmonsters\:entity.mutant_zombie.grunt=true +naturalist\:entity.alligator.egg_hatch=true +paladins\:holy_shock_heal=true +minecraft\:block.wood.place=true +promenade\:entity.duck.ambient=true +minecraft\:block.anvil.land=true +minecraft\:item.firecharge.use=true +soulsweapons\:night_skull_die=true +minecraft\:entity.horse.jump=true +creeperoverhaul\:entity.ocean.creeper.inflate=true +minecraft\:block.pointed_dripstone.drip_lava=true +adventurez\:shaman_death=true +soulsweapons\:hard_boss_spawn=true +naturalist\:entity.boar.hurt=true +minecraft\:entity.parrot.imitate.pillager=true +naturalist\:entity.bird.ambient_robin=true +minecraft\:entity.ravager.death=true +minecraft\:block.grindstone.use=true +friendsandfoes\:entity.rascal.disappear=true +graveyard\:entity.lich.idle=true +minecraft\:entity.firework_rocket.twinkle_far=true +minecraft\:block.powder_snow.place=true +minecraft\:entity.illusioner.prepare_blindness=true +simplyskills\:object_impact_thud_repeat=true +simplyskills\:slash_02=true +minecraft\:entity.camel.death=true +minecraft\:entity.llama.chest=true +minecraft\:block.ladder.fall=true +minecraft\:block.candle.step=true +paladins\:holy_beam_heal=true +spell_engine\:generic_frost_release=true +minecraft\:block.coral_block.break=true +minecraft\:block.soul_sand.step=true +mutantmonsters\:entity.mutant_skeleton.hurt=true +minecraft\:block.cherry_sapling.step=true +minecraft\:entity.evoker.prepare_summon=true +minecraft\:entity.armor_stand.fall=true +minecraft\:block.netherite_block.place=true +minecraft\:entity.turtle.ambient_land=true +simplyswords\:ambience_wind_loop=true +minecraft\:block.bamboo_sapling.place=true +creeperoverhaul\:entity.plant.creeper.hit=true +naturalist\:entity.bear.eat=true +zenith_attributes\:dodge=true +minecraft\:entity.piglin.admiring_item=true +minecraft\:block.calcite.fall=true +minecraft\:block.cherry_wood.break=true +bingus\:summoned=true +minecraft\:entity.enderman.stare=true +mythicmounts\:firebird_angry=true +simplyskills\:spell_radiant_hit=true +minecells\:disgusting_worm.attack=true +minecraft\:entity.generic.big_fall=true +mutantmonsters\:entity.mutant_creeper.primed=true +minecraft\:block.cherry_leaves.hit=true +minecells\:elevator_start=true +archon\:channel_mana=true +minecraft\:entity.wandering_trader.no=true +minecraft\:block.wool.hit=true +minecraft\:entity.tadpole.flop=true +naturalist\:entity.duck.hurt=true +minecraft\:block.netherrack.place=true +minecraft\:block.ladder.step=true +minecraft\:block.candle.fall=true +spell_engine\:generic_arcane_release=true +minecraft\:block.packed_mud.hit=true +minecraft\:entity.phantom.flap=true +adventurez\:dragon_hit=true +bosses_of_mass_destruction\:brimstone=true +rogues\:vanish_release=true +minecraft\:item.hoe.till=true +minecraft\:block.tuff.step=true +friendsandfoes\:entity.iceologer.hurt=true +minecraft\:block.cherry_sapling.fall=true +soulsweapons\:engulf=true +minecraft\:block.gilded_blackstone.fall=true +adventurez\:desert_rhino_attack=true +minecraft\:block.wart_block.step=true +rogues\:arms_workbench=true +minecraft\:entity.turtle.hurt=true +soulsweapons\:slice_target=true +adventurez\:orc_death=true +graveyard\:entity.revenant.hurt=true +minecraft\:entity.dolphin.play=true +minecraft\:block.note_block.bit=true +minecraft\:block.sculk_sensor.fall=true +minecraft\:entity.villager.celebrate=true +minecraft\:block.lodestone.break=true +simplyskills\:object_impact_thud=true +spell_engine\:generic_lightning_release=true +minecraft\:block.basalt.step=true +minecraft\:entity.polar_bear.hurt=true +naturalist\:entity.zebra.angry=true +minecraft\:entity.parrot.imitate.wither=true +artifacts\:generic.pop=true +minecraft\:entity.fox.screech=true +soulsweapons\:night_prowler_scream=true +minecraft\:block.sculk_sensor.clicking_stop=true +minecraft\:entity.vex.death=true +adventurez\:eye_idle=true +minecraft\:entity.bee.loop=true +minecraft\:entity.vex.charge=true +minecraft\:block.beehive.work=true +adventurez\:small_golem_idle=true +minecraft\:entity.skeleton_horse.jump_water=true +bettercombat\:staff_slash=true +minecraft\:entity.zombie_villager.death=true +minecraft\:entity.horse.ambient=true +minecraft\:entity.villager.work_armorer=true +minecraft\:block.mud_bricks.fall=true +minecraft\:entity.phantom.death=true +minecraft\:block.tripwire.detach=true +dungeonnowloading\:hollow_hurt=true +friendsandfoes\:entity.tuff_golem.repair=true +minecraft\:block.deepslate.place=true +minecells\:weapon.swipe=true +bettercombat\:claymore_stab=true +friendsandfoes\:entity.wildfire.death=true +friendsandfoes\:entity.wildfire.step=true +minecraft\:entity.ender_dragon.death=true +minecraft\:block.sand.hit=true +minecraft\:entity.leash_knot.place=true +minecraft\:entity.strider.retreat=true +minecraft\:entity.cow.step=true +adventurez\:nightmare_death=true +aquamirae\:effect.mystery=true +bosses_of_mass_destruction\:obsidilith_teleport=true +adventurez\:dragon_breath=true +minecraft\:entity.allay.item_taken=true +minecraft\:block.note_block.imitate.zombie=true +minecraft\:entity.mooshroom.convert=true +minecraft\:entity.warden.death=true +deeperdarker\:block.sculk_stone.fall=true +minecraft\:block.sculk_sensor.step=true +minecraft\:item.armor.equip_leather=true +minecraft\:block.bell.resonate=true +minecraft\:entity.mooshroom.milk=true +minecraft\:block.dispenser.fail=true +minecraft\:entity.endermite.death=true +minecraft\:entity.goat.screaming.prepare_ram=true +graveyard\:entity.nameless_hanged.breath=true +minecraft\:block.nether_sprouts.break=true +minecraft\:block.respawn_anchor.ambient=true +friendsandfoes\:entity.rascal.reward_bad=true +minecraft\:item.crossbow.shoot=true +minecraft\:entity.bee.sting=true +bettercombat\:glaive_slash_quick=true +minecraft\:block.deepslate.break=true +minecraft\:block.chest.open=true +adventurez\:orc_step=true +naturalist\:entity.snake.hiss=true +minecraft\:block.netherite_block.break=true +minecraft\:block.note_block.cow_bell=true +minecraft\:block.iron_door.open=true +minecraft\:block.fungus.break=true +aquamirae\:entity.eel.bite=true +minecraft\:entity.strider.happy=true +paladins\:holy_beam_release=true +adventurez\:piglinbeast_hurt=true +mythicmounts\:ridinglizard_hurt=true +minecraft\:ambient.soul_sand_valley.additions=true +friendsandfoes\:entity.rascal.hurt=true +minecraft\:block.slime_block.place=true +graveyard\:entity.ghoul.step=true +creeperoverhaul\:entity.wood.creeper.death=true +minecraft\:block.sculk_vein.break=true +naturalist\:entity.duck.death=true +minecraft\:block.fire.ambient=true +minecraft\:block.wooden_trapdoor.open=true +deeperdarker\:ambience.otherside_portal.groan=true +betterend\:betterend.record.grasping_at_stars=true +minecraft\:entity.ravager.stunned=true +bosses_of_mass_destruction\:spore_impact=true +minecraft\:block.nether_wood.fall=true +adventurez\:iguana_hurt=true +dungeonnowloading\:hollow_death=true +minecraft\:entity.fox.aggro=true +simplyswords\:magic_bow_shoot_flyby_01=true +minecraft\:entity.player.levelup=true +minecraft\:entity.dolphin.hurt=true +minecraft\:entity.glow_item_frame.place=true +simplyswords\:magic_bow_shoot_flyby_02=true +simplyswords\:magic_bow_shoot_flyby_03=true +minecraft\:entity.player.small_fall=true +simplyswords\:elemental_bow_fire_shoot_impact_02=true +simplyswords\:elemental_bow_fire_shoot_impact_01=true +minecraft\:entity.skeleton.step=true +minecraft\:music_disc.13=true +simplyswords\:elemental_bow_fire_shoot_impact_03=true +minecraft\:entity.bee.death=true +minecraft\:entity.parrot.imitate.wither_skeleton=true +minecraft\:music_disc.11=true +mythicmounts\:groundlizard_ambient=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 +minecraft\:item.trident.riptide_3=true +soulsweapons\:knight_sword_smash=true +minecraft\:item.trident.riptide_2=true +minecraft\:block.calcite.break=true +minecraft\:block.pointed_dripstone.fall=true +minecraft\:entity.piglin_brute.hurt=true +mythicmounts\:archelon_hurt=true +bettercombat\:dagger_slash=true +mutantmonsters\:entity.mutant_enderman.scream=true +minecraft\:block.nether_gold_ore.fall=true +vc_gliders\:space_deploy=true +minecraft\:entity.fox.eat=true +runes\:crafting=true +minecraft\:block.azalea.break=true +minecraft\:entity.armor_stand.place=true +deeperdarker\:entity.stalker.hurt=true +minecraft\:item.trident.riptide_1=true +minecraft\:block.wet_grass.fall=true +minecraft\:block.mud_bricks.step=true +minecraft\:entity.pig.hurt=true +adventurez\:small_golem_death=true +naturalist\:entity.alligator.ambient=true +minecraft\:block.bamboo_wood_hanging_sign.fall=true +minecraft\:entity.wolf.pant=true +archers\:entangling_roots=true +minecraft\:block.sweet_berry_bush.place=true +minecraft\:entity.parrot.imitate.endermite=true +minecraft\:block.tuff.fall=true +betternether\:betternether.mob.naga_idle=true +minecraft\:block.ancient_debris.hit=true +minecells\:crit=true +mythicmounts\:netherbat_death=true +mutantmonsters\:entity.mutant_creeper.hurt=true +minecraft\:block.netherite_block.step=true +adventurez\:hog_death=true +mythicmounts\:colelytra_angry=true +minecraft\:entity.frog.death=true +soulsweapons\:hard_boss_death_long=true +minecraft\:entity.endermite.hurt=true +minecraft\:block.deepslate.hit=true +graveyard\:entity.acolyte.hurt=true +simplyskills\:spell_radiant_expire=true +simplyswords\:magic_sword_parry_various_hits=true +minecraft\:entity.evoker.prepare_wololo=true +minecraft\:entity.warden.sniff=true +betternether\:betternether.mob.skull_flight=true +handcrafted\:hammer_stone=true +minecraft\:entity.polar_bear.ambient_baby=true +minecraft\:block.sculk.hit=true +minecraft\:block.gravel.place=true +spell_engine\:spellbook_equip=true +minecraft\:block.deepslate_bricks.break=true +minecraft\:entity.warden.nearby_closer=true +simplyswords\:magic_sword_attack_with_blood_01=true +simplyswords\:magic_sword_attack_with_blood_02=true +simplyswords\:magic_sword_attack_with_blood_03=true +minecraft\:entity.wolf.shake=true +simplyswords\:magic_sword_attack_with_blood_04=true +minecraft\:entity.firework_rocket.launch=true +adventurez\:shadow_death=true +minecraft\:block.basalt.break=true +naturalist\:entity.zebra.breathe=true +minecraft\:block.hanging_roots.fall=true +obscure_api\:miracle=true +minecraft\:block.ender_chest.open=true +minecraft\:entity.piglin.jealous=true +minecraft\:block.sculk_sensor.hit=true +paladins\:holy_barrier_deactivate=true +minecraft\:entity.camel.step_sand=true +bosses_of_mass_destruction\:gauntlet_death=true +friendsandfoes\:entity.tuff_golem.glue_on=true +minecells\:shocker.charge=true +mutantmonsters\:entity.spider_pig.death=true +minecraft\:block.bamboo_wood.break=true +minecraft\:entity.parrot.imitate.ender_dragon=true +adventurez\:desert_rhino_walk=true +minecraft\:block.dispenser.dispense=true +minecraft\:block.sculk.fall=true +minecraft\:block.water.ambient=true +adventurez\:dragon_death=true +minecraft\:entity.donkey.eat=true +adventurez\:deer_idle=true +minecells\:rancid_rat.release=true +minecraft\:item.bucket.empty_tadpole=true +minecraft\:block.moss_carpet.hit=true +soulsweapons\:big_chungus=true +minecraft\:ambient.underwater.enter=true +minecraft\:entity.puffer_fish.hurt=true +minecraft\:entity.piglin.celebrate=true +graveyard\:entity.ghoul.ambient=true +minecraft\:entity.husk.ambient=true +minecraft\:entity.guardian.death=true +minecraft\:entity.stray.step=true +minecraft\:entity.shulker.death=true +minecraft\:entity.camel.dash_ready=true +minecraft\:entity.iron_golem.repair=true +adventurez\:whale_idle=true +minecraft\:block.large_amethyst_bud.break=true +minecraft\:block.shulker_box.close=true +bosses_of_mass_destruction\:lich_hurt=true +mythicmounts\:archelon_death=true +minecraft\:block.deepslate_bricks.place=true +minecraft\:entity.guardian.flop=true +minecraft\:entity.piglin_brute.ambient=true +minecraft\:entity.chicken.death=true +minecraft\:entity.glow_item_frame.remove_item=true +simplyswords\:elemental_bow_earth_shoot_impact_01=true +simplyswords\:elemental_bow_earth_shoot_impact_02=true +minecraft\:entity.salmon.hurt=true +minecraft\:entity.spider.death=true +adventurez\:golem_hit=true +bosses_of_mass_destruction\:comet_prepare=true +simplyswords\:elemental_bow_earth_shoot_impact_03=true +minecraft\:entity.turtle.shamble_baby=true +spell_engine\:generic_soul_casting=true +minecells\:cell_absorb=true +dungeonnowloading\:chaos_spawner_laughter=true +promenade\:block.snowy_leaves.hit=true +minecraft\:ui.button.click=true +mythicmounts\:dragon_ambient=true +naturalist\:entity.bear.hurt=true +minecraft\:entity.generic.death=true +graveyard\:entity.lich.heal=true +graveyard\:entity.ghouling.step=true +minecraft\:block.bamboo_wood_button.click_off=true +minecraft\:block.sculk_vein.fall=true +minecraft\:entity.hoglin.retreat=true +minecraft\:block.wooden_trapdoor.close=true +mythicmounts\:acencia_death=true +minecraft\:block.roots.fall=true +deeperdarker\:entity.shattered.hurt=true +minecraft\:block.shroomlight.hit=true +minecells\:music.black_bridge=true +minecraft\:block.flowering_azalea.break=true +minecraft\:block.nether_wood.step=true +minecraft\:block.sculk_shrieker.hit=true +paladins\:judgement_impact=true +friendsandfoes\:entity.copper_golem.hurt=true +minecraft\:block.honey_block.fall=true +soulsweapons\:demon_death=true +minecraft\:block.hanging_roots.hit=true +minecraft\:block.moss_carpet.fall=true +minecraft\:item.trident.throw=true +adventurez\:open_shadow_chest=true +simplyswords\:magic_sword_parry_02=true +minecraft\:entity.armor_stand.break=true +simplyswords\:magic_sword_parry_01=true +minecraft\:entity.goat.prepare_ram=true +simplyswords\:magic_sword_parry_04=true +simplyswords\:magic_sword_parry_03=true +minecraft\:entity.player.attack.nodamage=true +minecraft\:entity.cow.milk=true +minecraft\:entity.hoglin.ambient=true +minecraft\:entity.llama.ambient=true +minecraft\:block.nylium.fall=true +minecraft\:block.sculk.step=true +minecraft\:entity.strider.step_lava=true +minecraft\:block.sweet_berry_bush.break=true +minecraft\:block.calcite.place=true +minecraft\:entity.snow_golem.ambient=true +minecraft\:block.metal.step=true +artifacts\:entity.mimic.open=true +naturalist\:entity.lion.roar=true +minecraft\:entity.donkey.angry=true +minecells\:weapon.tentacle.release=true +friendsandfoes\:entity.iceologer.ambient=true +minecells\:conjunctivius.death=true +minecraft\:ui.toast.in=true +minecraft\:block.wart_block.fall=true +minecraft\:block.slime_block.break=true +minecraft\:entity.enderman.ambient=true +minecraft\:item.crossbow.loading_start=true +simplyswords\:elemental_sword_wind_attack_01=true +simplyswords\:elemental_sword_wind_attack_03=true +minecraft\:entity.shulker.shoot=true +simplyswords\:elemental_sword_wind_attack_02=true +minecraft\:entity.drowned.swim=true +minecraft\:block.wet_grass.break=true +minecraft\:block.note_block.bass=true +minecells\:rise=true +mythicmounts\:firebird_hurt=true +betterend\:betterend.music.dark=true +graveyard\:entity.lich.phase_three=true +minecraft\:block.stem.hit=true +minecraft\:entity.parrot.imitate.ghast=true +minecraft\:block.honey_block.step=true +naturalist\:entity.alligator.death=true +naturalist\:entity.tortoise.egg_break=true +minecraft\:entity.squid.ambient=true +naturalist\:entity.alligator.hurt=true +minecraft\:entity.strider.ambient=true +minecraft\:entity.ghast.ambient=true +adventurez\:golem_idle=true +minecraft\:ambient.underwater.loop=true +minecraft\:block.respawn_anchor.set_spawn=true +minecraft\:block.wooden_pressure_plate.click_off=true +minecraft\:entity.experience_orb.pickup=true +soulsweapons\:sword_hit_shield=true +minecraft\:entity.villager.work_fisherman=true +minecraft\:block.hanging_roots.step=true +minecraft\:entity.skeleton.ambient=true +minecraft\:music.overworld.forest=true +minecraft\:item.trident.return=true +friendsandfoes\:entity.wildfire.summon_blaze=true +minecraft\:entity.turtle.egg_crack=true +minecraft\:block.gilded_blackstone.break=true +rogues\:shout_release=true +simplyswords\:elemental_sword_ice_attack_02=true +simplyswords\:elemental_sword_ice_attack_01=true +adventurez\:piglinbeast_death=true +simplyswords\:elemental_sword_ice_attack_03=true +minecraft\:entity.magma_cube.jump=true +minecraft\:block.mud.step=true +naturalist\:entity.duck.ambient=true +minecraft\:block.end_portal_frame.fill=true +minecraft\:item.elytra.flying=true +minecraft\:entity.goat.screaming.ram_impact=true +minecraft\:block.lava.ambient=true +mutantmonsters\:entity.mutant_enderman.hurt=true +minecraft\:entity.rabbit.death=true +minecraft\:entity.camel.stand=true +mythicmounts\:acencia_ambient=true +minecraft\:block.cake.add_candle=true +minecraft\:block.slime_block.step=true +minecraft\:block.nether_gold_ore.step=true +minecraft\:entity.spider.ambient=true +simplyswords\:stone_slide_loop_03=true +adventurez\:desert_rhino_death=true +simplyskills\:spell_thunder_cast=true +minecraft\:block.nether_wood_door.close=true +minecraft\:block.bamboo_wood.place=true +naturalist\:entity.catfish.flop=true +minecraft\:block.fungus.step=true +minecraft\:entity.horse.breathe=true +adventurez\:small_golem_walk=true +minecraft\:entity.tropical_fish.death=true +minecraft\:block.moss_carpet.step=true +minecraft\:block.note_block.chime=true +minecells\:elevator_stop=true +minecraft\:entity.cow.death=true +minecraft\:ambient.crimson_forest.mood=true +minecraft\:ambient.underwater.loop.additions=true +minecraft\:block.bamboo_wood_hanging_sign.hit=true +minecraft\:entity.skeleton_horse.ambient_water=true +minecraft\:entity.hostile.death=true +minecraft\:block.chain.hit=true +bosses_of_mass_destruction\:minion_summon=true +minecraft\:entity.warden.roar=true +soulsweapons\:scythe_swipe=true +minecraft\:block.flowering_azalea.place=true +minecraft\:block.mud.hit=true +minecraft\:entity.minecart.inside.underwater=true +minecraft\:entity.strider.hurt=true +bosses_of_mass_destruction\:spike_wave_indicator=true +minecraft\:entity.evoker.prepare_attack=true +promenade\:entity.sunken_skeleton.ambient=true +minecraft\:block.note_block.imitate.wither_skeleton=true +minecraft\:item.bundle.drop_contents=true +minecraft\:entity.horse.angry=true +minecraft\:entity.zoglin.ambient=true +bettercombat\:mace_slam=true +minecraft\:block.stone.hit=true +wizards\:wizard_robes_equip=true +minecraft\:block.nylium.step=true +minecraft\:block.soul_sand.fall=true +soulsweapons\:demon_idle=true +minecraft\:entity.strider.saddle=true +minecraft\:entity.zombie_horse.hurt=true +cave_dweller\:dweller_death=true +naturalist\:entity.rhino.scrape=true +betterend\:betterend.ambient.umbra_valley=true +simplyswords\:slash_01=true +minecraft\:entity.cod.ambient=true +adventurez\:shadow_idle=true +minecraft\:entity.player.hurt_freeze=true +minecells\:explosion=true +aquamirae\:entity.captain_cornelia.death=true +mutantmonsters\:entity.creeper_minion.ambient=true +minecraft\:block.enchantment_table.use=true +friendsandfoes\:entity.tuff_golem.step=true +wizards\:fire_meteor_release=true +minecraft\:block.bell.use=true +minecraft\:entity.frog.long_jump=true +minecraft\:entity.hostile.splash=true +aquamirae\:entity.captain_cornelia.horn=true +minecraft\:block.large_amethyst_bud.place=true +minecells\:portal.use=true +minecraft\:block.weeping_vines.break=true +minecraft\:block.wood.step=true +minecraft\:block.wet_grass.place=true +minecraft\:entity.goat.screaming.hurt=true +minecraft\:item.bucket.fill_tadpole=true +minecraft\:block.bamboo_wood_hanging_sign.step=true +minecraft\:block.note_block.guitar=true +minecraft\:item.bottle.fill_dragonbreath=true +minecraft\:entity.rabbit.hurt=true +minecraft\:entity.wandering_trader.reappeared=true +betterend\:betterend.entity.dragonfly=true +minecraft\:item.honey_bottle.drink=true +wizards\:frost_shield_impact=true +minecraft\:entity.turtle.death=true +minecraft\:entity.pig.saddle=true +minecraft\:entity.parrot.imitate.guardian=true +minecells\:concierge.leap.charge=true +minecraft\:entity.tadpole.death=true +simplyswords\:elemental_bow_thunder_shoot_impact_03=true +minecraft\:entity.fox.ambient=true +minecraft\:entity.villager.work_farmer=true +simplyswords\:elemental_bow_thunder_shoot_impact_02=true +simplyswords\:elemental_bow_thunder_shoot_impact_01=true +minecraft\:block.roots.step=true +rogues\:throw=true +simplyswords\:elemental_bow_ice_shoot_flyby_01=true +simplyswords\:elemental_bow_ice_shoot_flyby_02=true +minecraft\:block.fungus.hit=true +simplyswords\:elemental_bow_ice_shoot_flyby_03=true +minecraft\:entity.villager.work_shepherd=true +deeperdarker\:entity.sculk_snapper.bite=true +bettercombat\:spear_stab=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 +mythicmounts\:moth_ambient=true +minecraft\:block.decorated_pot.place=true +mythicmounts\:netherbat_ambient=true +minecraft\:entity.fishing_bobber.retrieve=true +graveyard\:entity.lich.hunt=true +minecraft\:entity.axolotl.idle_water=true +simplyskills\:soundeffect_20=true +simplyswords\:throw_mjolnir_short=true +minecraft\:music.overworld.grove=true +minecraft\:block.weeping_vines.place=true +minecraft\:block.note_block.didgeridoo=true +simplyskills\:soundeffect_29=true +graveyard\:entity.ghouling.ambient=true +minecraft\:entity.wandering_trader.trade=true +simplyskills\:soundeffect_23=true +simplyskills\:soundeffect_24=true +minecraft\:block.nether_ore.hit=true +simplyskills\:soundeffect_21=true +simplyskills\:soundeffect_22=true +minecraft\:entity.vex.hurt=true +simplyskills\:soundeffect_27=true +simplyskills\:soundeffect_28=true +aquamirae\:entity.deep_death=true +simplyskills\:soundeffect_25=true +minecraft\:block.fence_gate.open=true +simplyskills\:soundeffect_26=true +minecraft\:block.sweet_berry_bush.pick_berries=true +rogues\:stealth_leave=true +bosses_of_mass_destruction\:soul_star=true +mutantmonsters\:entity.creeper_minion_egg.hatch=true +minecraft\:entity.ender_dragon.ambient=true +soulsweapons\:knight_thrust_sword=true +wizards\:arcane_beam_impact=true +mythicmounts\:nightmare_death=true +minecraft\:block.stone.break=true +simplyskills\:soundeffect_18=true +minecraft\:block.sniffer_egg.plop=true +simplyskills\:soundeffect_19=true +minecraft\:entity.ravager.celebrate=true +minecraft\:block.chain.step=true +simplyswords\:elemental_bow_recharge=true +minecraft\:block.suspicious_gravel.break=true +minecraft\:block.mud.fall=true +simplyskills\:soundeffect_12=true +mythicmounts\:acencia_hurt=true +simplyskills\:soundeffect_13=true +simplyskills\:soundeffect_10=true +simplyskills\:soundeffect_11=true +simplyskills\:soundeffect_16=true +simplyskills\:soundeffect_17=true +simplyskills\:soundeffect_14=true +minecells\:weapon.katana.release=true +simplyskills\:soundeffect_15=true +minecraft\:block.lava.pop=true +simplyskills\:soundeffect_41=true +simplyskills\:soundeffect_42=true +simplyskills\:soundeffect_40=true +mutantmonsters\:entity.mutant_creeper.death=true +combatroll\:roll=true +minecraft\:entity.item_frame.break=true +minecraft\:block.amethyst_block.hit=true +minecraft\:block.beacon.ambient=true +spell_engine\:generic_healing_impact_1=true +spell_engine\:generic_healing_impact_2=true +wizards\:fire_scorch_impact=true +bosses_of_mass_destruction\:void_blossom_spike=true +minecraft\:entity.guardian.hurt_land=true +minecraft\:entity.fox.hurt=true +minecraft\:entity.panda.death=true +mythicmounts\:nudibranch_ambient=true +naturalist\:entity.snake.hurt=true +simplyskills\:soundeffect_45=true +simplyskills\:soundeffect_46=true +minecells\:fly.release=true +simplyskills\:soundeffect_43=true +adventurez\:nightmare_idle=true +minecells\:grenadier.charge=true +simplyskills\:soundeffect_44=true +minecraft\:item.totem.use=true +minecells\:conjunctivius.dash.release=true +minecraft\:entity.fishing_bobber.splash=true +minecraft\:music_disc.wait=true +simplyskills\:soundeffect_47=true +minecraft\:ambient.underwater.loop.additions.ultra_rare=true +simplyskills\:soundeffect_48=true +creeperoverhaul\:entity.sand.creeper.explosion=true +minecraft\:block.honey_block.slide=true +minecraft\:block.nether_ore.fall=true +minecraft\:entity.skeleton_horse.ambient=true +minecraft\:block.soul_soil.place=true +graveyard\:entity.revenant.step=true +simplyskills\:soundeffect_30=true +simplyskills\:soundeffect_31=true +graveyard\:entity.ghouling.spawn=true +adventurez\:rock_throw=true +minecraft\:block.wooden_button.click_on=true +minecraft\:block.shroomlight.break=true +minecraft\:entity.squid.hurt=true +simplyskills\:soundeffect_34=true +simplyskills\:soundeffect_35=true +minecraft\:block.rooted_dirt.hit=true +simplyskills\:soundeffect_32=true +minecraft\:block.cherry_wood_trapdoor.open=true +minecraft\:block.roots.place=true +minecraft\:block.mud.break=true +friendsandfoes\:entity.shield_debris.impact=true +naturalist\:entity.bear.death=true +simplyskills\:soundeffect_33=true +simplyskills\:soundeffect_38=true +simplyskills\:soundeffect_39=true +simplyskills\:soundeffect_36=true +minecraft\:entity.arrow.hit_player=true +simplyskills\:soundeffect_37=true +simplyswords\:magic_bow_shoot_miss_02=true +minecraft\:block.mud.place=true +minecraft\:block.muddy_mangrove_roots.fall=true +graveyard\:entity.lich.levitation=true +simplyswords\:magic_bow_shoot_miss_03=true +minecraft\:entity.illusioner.death=true +minecraft\:entity.shulker.hurt_closed=true +simplyswords\:elemental_sword_sci-fi_attack_01=true +minecraft\:entity.silverfish.hurt=true +graveyard\:entity.lich.hurt=true +simplyswords\:elemental_sword_sci-fi_attack_02=true +minecraft\:item.spyglass.use=true +simplyswords\:elemental_sword_sci-fi_attack_03=true +minecraft\:entity.parrot.imitate.hoglin=true +spell_engine\:bind_spell=true +minecraft\:entity.iron_golem.step=true +bosses_of_mass_destruction\:spore_prepare=true +minecraft\:block.blastfurnace.fire_crackle=true +minecraft\:block.chain.fall=true +minecraft\:block.honey_block.hit=true +minecraft\:entity.magma_cube.death_small=true +simplyswords\:elemental_bow_sci-fi_shoot_impact_02=true +simplyswords\:elemental_bow_sci-fi_shoot_impact_03=true +minecraft\:entity.fox.teleport=true +minecraft\:entity.phantom.hurt=true +simplyswords\:elemental_bow_sci-fi_shoot_impact_01=true +minecraft\:block.candle.hit=true +minecraft\:block.portal.travel=true +minecraft\:item.brush.brushing.gravel.complete=true +minecraft\:entity.goat.screaming.eat=true +minecraft\:entity.allay.ambient_with_item=true +minecraft\:music_disc.otherside=true +minecraft\:entity.slime.death=true +promenade\:block.snowy_leaves.step=true +minecraft\:entity.skeleton.hurt=true +minecraft\:block.moss_carpet.place=true +minecraft\:block.nether_wood_door.open=true +minecells\:weapon.flint.release=true +minecraft\:block.big_dripleaf.step=true +adventurez\:fungus_death=true +simplyswords\:dark_sword_attack_with_blood_03=true +simplyswords\:dark_sword_attack_with_blood_02=true +minecraft\:block.bamboo.hit=true +simplyswords\:dark_sword_attack_with_blood_01=true +paladins\:holy_beam_start_casting=true +minecraft\:block.bamboo_wood_pressure_plate.click_off=true +minecraft\:item.trident.hit_ground=true +minecraft\:item.brush.brushing.gravel=true +minecraft\:block.portal.ambient=true +minecraft\:block.snow.place=true +minecraft\:entity.stray.hurt=true +simplyswords\:magic_bow_shoot_miss_01=true +minecraft\:music_disc.blocks=true +minecraft\:entity.ender_dragon.hurt=true +minecraft\:entity.glow_squid.ambient=true +minecraft\:item.honeycomb.wax_on=true +minecraft\:entity.wither.break_block=true +minecraft\:entity.sniffer.sniffing=true +minecraft\:block.ender_chest.close=true +minecraft\:entity.witch.ambient=true +artifacts\:item.whoopee_cushion.fart=true +cave_dweller\:spotted=true +minecraft\:block.respawn_anchor.deplete=true +minecraft\:block.candle.break=true +minecraft\:block.spore_blossom.break=true +minecraft\:block.amethyst_block.place=true +minecraft\:item.armor.equip_diamond=true +minecraft\:block.nether_wood.place=true +minecraft\:block.pointed_dripstone.drip_water=true +adventurez\:rock_impact=true +minecraft\:entity.blaze.shoot=true +minecraft\:block.nether_gold_ore.break=true +minecraft\:entity.sheep.shear=true +minecells\:music.prisoners_quarters=true +spell_engine\:generic_healing_casting=true +minecraft\:entity.ender_pearl.throw=true +bosses_of_mass_destruction\:gauntlet_cast=true +minecraft\:block.beacon.activate=true +minecraft\:block.tuff.break=true +minecraft\:entity.turtle.egg_hatch=true +graveyard\:entity.acolyte.ambient=true +minecraft\:block.redstone_torch.burnout=true +friendsandfoes\:entity.ice_chunk.summon=true +minecraft\:intentionally_empty=true +minecraft\:entity.zombified_piglin.angry=true +minecraft\:block.fungus.fall=true +minecraft\:block.moss.step=true +deeperdarker\:block.ancient_vase.step=true +minecraft\:block.dispenser.launch=true +minecraft\:entity.cat.hiss=true +minecraft\:block.nether_wart.break=true +zenith\:reforge=true +minecraft\:entity.goat.long_jump=true +minecraft\:entity.ravager.roar=true +minecraft\:block.note_block.imitate.ender_dragon=true +minecraft\:entity.blaze.hurt=true +naturalist\:item.bucket.fill_snail=true +mutantmonsters\:entity.creeper_minion.hurt=true +minecraft\:block.sniffer_egg.crack=true +simplyskills\:hit_03=true +minecraft\:entity.endermite.ambient=true +adventurez\:shaman_walk=true +bosses_of_mass_destruction\:obsidilith_wave=true +mythicmounts\:courierbird_death=true +minecraft\:block.ancient_debris.step=true +minecraft\:entity.panda.bite=true +minecraft\:entity.parrot.imitate.silverfish=true +minecraft\:block.polished_deepslate.step=true +adventurez\:hog_step=true +mutantmonsters\:entity.mutant_enderman.morph=true +minecraft\:block.bamboo_wood.fall=true +adventurez\:iguana_idle=true +mythicmounts\:nightmare_hurt=true +minecraft\:entity.wandering_trader.hurt=true +aquamirae\:entity.deep_hurt=true +minecraft\:entity.dolphin.ambient_water=true +bettercombat\:sword_slash=true +simplyswords\:swing_scifi=true +minecells\:weapon.frost_blast.release=true +minecraft\:entity.bat.death=true +paladins\:holy_barrier_idle=true +minecraft\:item.bottle.fill=true +bosses_of_mass_destruction\:void_blossom_burrow=true +minecraft\:entity.piglin.converted_to_zombified=true +wizards\:fire_breath_impact=true +minecraft\:entity.arrow.shoot=true +minecraft\:ambient.warped_forest.additions=true +minecraft\:block.nether_ore.step=true +rogues\:vanish_combined=true +simplyswords\:magic_bow_pull_back_long_version_01=true +wizards\:fire_breath_start=true +simplyswords\:magic_bow_pull_back_long_version_02=true +minecraft\:entity.strider.step=true +betterend\:betterend.ambient.megalake_grove=true +simplyswords\:swing_omen_two=true +simplyswords\:magic_bow_pull_back_long_version_03=true +spell_engine\:generic_fire_casting=true +minecraft\:entity.goat.death=true +minecraft\:entity.panda.aggressive_ambient=true +simplyswords\:elemental_sword_holy_attack_01=true +simplyswords\:elemental_sword_holy_attack_02=true +adventurez\:eye_hurt=true +simplyswords\:elemental_sword_holy_attack_03=true +minecraft\:block.big_dripleaf.hit=true +minecraft\:entity.husk.converted_to_zombie=true +minecraft\:entity.villager.work_cleric=true +minecraft\:block.bubble_column.bubble_pop=true +minecraft\:entity.phantom.swoop=true +minecraft\:entity.piglin_brute.death=true +minecraft\:entity.llama.death=true +minecraft\:entity.piglin.hurt=true +minecraft\:entity.parrot.imitate.phantom=true +minecraft\:music.overworld.lush_caves=true +aquamirae\:entity.captain_cornelia.hurt=true +minecells\:sweeper.charge=true +minecraft\:entity.boat.paddle_land=true +archers\:archers_workbench=true +minecraft\:entity.frog.tongue=true +graveyard\:block.coffin.close=true +minecraft\:music_disc.ward=true +minecraft\:entity.fox.sniff=true +deeperdarker\:ambience.otherside=true +friendsandfoes\:entity.ice_chunk.hit=true +minecraft\:entity.wither_skeleton.hurt=true +minecraft\:block.azalea_leaves.fall=true +minecraft\:entity.wither_skeleton.step=true +minecraft\:entity.drowned.hurt_water=true +aquamirae\:ambient.ship_horn=true +adventurez\:close_shadow_chest=true +minecraft\:block.tuff.hit=true +betterend\:betterend.music.forest=true +mutantmonsters\:entity.mutant_enderman.death=true +minecraft\:entity.sheep.hurt=true +deeperdarker\:entity.sculk_leech.hurt=true +minecraft\:block.metal.fall=true +minecraft\:block.netherite_block.fall=true +minecraft\:entity.pig.step=true +minecraft\:entity.villager.yes=true +minecraft\:music.nether.soul_sand_valley=true +minecraft\:entity.ender_dragon.growl=true +minecraft\:entity.vindicator.hurt=true +adventurez\:eye_death=true +minecraft\:entity.llama.swag=true +minecraft\:block.small_dripleaf.break=true +minecraft\:entity.villager.work_toolsmith=true +deeperdarker\:entity.sculk_snapper.sniff=true +soulsweapons\:nightfall_bonk=true +minecraft\:item.bucket.fill_fish=true +minecraft\:block.moss_carpet.break=true +minecraft\:block.bamboo_sapling.hit=true +minecells\:concierge.punch.release=true +adventurez\:heart_beat=true +wizards\:fire_wall_ignite=true +minecraft\:block.nether_wood_hanging_sign.break=true +minecraft\:block.spore_blossom.place=true +simplyswords\:elemental_sword_fire_attack_01=true +simplyswords\:swing_woosh=true +friendsandfoes\:entity.rascal.nod=true +minecraft\:entity.enderman.scream=true +minecraft\:block.soul_sand.hit=true +minecraft\:entity.parrot.imitate.warden=true +simplyswords\:elemental_sword_fire_attack_02=true +minecraft\:entity.minecart.riding=true +simplyswords\:elemental_sword_fire_attack_03=true +minecraft\:block.tuff.place=true +minecraft\:block.soul_soil.break=true +minecraft\:entity.illusioner.prepare_mirror=true +minecraft\:entity.elder_guardian.death=true +archers\:magic_arrow_impact=true +minecraft\:block.ladder.hit=true +minecraft\:entity.polar_bear.warning=true +friendsandfoes\:entity.rascal.ambient=true +minecraft\:block.amethyst_block.break=true +minecraft\:entity.piglin_brute.converted_to_zombified=true +minecraft\:entity.parrot.imitate.magma_cube=true +minecraft\:block.small_dripleaf.place=true +soulsweapons\:warmth_buff=true +minecraft\:entity.cat.purreow=true +paladins\:cloth_equip=true +minecraft\:block.beacon.deactivate=true +minecraft\:music_disc.pigstep=true +adventurez\:amethyst_golem_rage=true +naturalist\:entity.bird.death=true +graveyard\:entity.lich.melee=true +minecraft\:entity.parrot.imitate.elder_guardian=true +soulsweapons\:posture_break=true +mythicmounts\:griffon_hurt=true +minecraft\:block.conduit.attack.target=true +promenade\:entity.capybara.ambient=true +minecraft\:music.overworld.flower_forest=true +simplyskills\:spell_celestial_hit=true +minecraft\:entity.arrow.hit=true +simplyskills\:spell_arcane_cast=true +minecraft\:item.ink_sac.use=true +minecraft\:entity.witch.death=true +minecraft\:entity.squid.death=true +minecraft\:block.gilded_blackstone.hit=true +minecells\:music.promenade=true +naturalist\:entity.bear.ambient_baby=true +minecraft\:entity.sheep.ambient=true +bosses_of_mass_destruction\:gauntlet_hurt=true +soulsweapons\:knight_death_laugh=true +minecraft\:block.bone_block.place=true +bosses_of_mass_destruction\:lich_teleport=true +minecraft\:entity.cow.ambient=true +simplyskills\:spell_gain_barrier=true +minecraft\:entity.tropical_fish.flop=true +soulsweapons\:night_shade_idle=true +minecraft\:block.frogspawn.place=true +minecraft\:entity.snow_golem.shear=true +minecraft\:block.azalea_leaves.step=true +minecraft\:entity.panda.ambient=true +minecraft\:block.polished_deepslate.fall=true +graveyard\:entity.wraith.hurt=true +deeperdarker\:music.deeperdarker.overcast_columns=true +soulsweapons\:decaying_king_idle=true +minecraft\:item.armor.equip_chain=true +minecraft\:entity.dolphin.ambient=true +minecraft\:entity.parrot.imitate.zombie=true +minecraft\:block.snow.break=true +minecraft\:block.lily_pad.place=true +minecraft\:entity.zombie_villager.hurt=true +minecraft\:entity.dolphin.eat=true +minecraft\:entity.evoker.hurt=true +adventurez\:desert_rhino_hit=true +minecraft\:block.gravel.hit=true +soulsweapons\:day_stalker_chaos_storm=true +artifacts\:block.water.step=true +minecraft\:item.bucket.fill_lava=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 +minecraft\:entity.generic.small_fall=true +mobs_of_mythology\:drake_death=true +minecraft\:block.chiseled_bookshelf.hit=true +aquamirae\:entity.captain_cornelia.rage=true +minecells\:conjunctivius.dash.charge=true +minecraft\:block.chain.break=true +minecraft\:entity.ravager.hurt=true +minecraft\:block.weeping_vines.fall=true +minecraft\:block.soul_soil.step=true +minecraft\:block.bamboo_wood_hanging_sign.break=true +minecraft\:block.wooden_button.click_off=true +minecraft\:entity.wandering_trader.death=true +minecraft\:entity.warden.dig=true +minecells\:concierge.aura.charge=true +deeperdarker\:entity.stalker.ambient=true +minecraft\:entity.guardian.attack=true +soulsweapons\:overheat_charge=true +minecraft\:entity.bee.loop_aggressive=true +minecraft\:block.scaffolding.hit=true +betternether\:betternether.ambient.nether_jungle=true +minecraft\:event.raid.horn=true +graveyard\:entity.reaper.ambient=true +bosses_of_mass_destruction\:rage_prepare=true +minecraft\:entity.goat.screaming.death=true +simplyskills\:fx_ui_unlock3=true +minecraft\:ambient.nether_wastes.mood=true +minecraft\:block.anvil.destroy=true +simplyskills\:fx_ui_unlock2=true +minecraft\:block.cherry_wood.place=true +minecraft\:block.bamboo_wood_button.click_on=true +minecraft\:block.hanging_roots.break=true +minecraft\:block.netherrack.break=true +minecraft\:block.respawn_anchor.charge=true +soulsweapons\:knight_charge_sword=true +minecraft\:block.pink_petals.break=true +minecraft\:entity.piglin.death=true +naturalist\:entity.alligator.egg_break=true +wizards\:fire_breath_casting=true +bettercombat\:pickaxe_swing=true +minecraft\:entity.warden.listening_angry=true +minecraft\:entity.witch.hurt=true +minecells\:leaping_zombie.death=true +minecraft\:entity.player.breath=true +creeperoverhaul\:entity.stone.creeper.death=true +deeperdarker\:music.deeperdarker.echoing_forest=true +guardvillagers\:entity.guard.death=true +mutantmonsters\:entity.mutant_creeper.ambient=true +minecraft\:entity.dolphin.swim=true +promenade\:entity.capybara.ambient.baby=true +friendsandfoes\:entity.tuff_golem.wake=true +minecraft\:entity.stray.death=true +naturalist\:entity.bear.spit=true +adventurez\:shard_destroy=true +minecraft\:block.deepslate_tiles.step=true +minecraft\:block.wet_grass.hit=true +friendsandfoes\:entity.glare.rustle=true +minecells\:fly.fly=true +minecraft\:block.ancient_debris.fall=true +minecraft\:block.note_block.pling=true +minecraft\:entity.ghast.warn=true +minecraft\:entity.warden.heartbeat=true +mythicmounts\:courierbird_ambient=true +soulsweapons\:death_screams=true +minecraft\:entity.skeleton_horse.death=true +minecraft\:entity.sniffer.scenting=true +minecraft\:entity.parrot.imitate.husk=true +minecraft\:block.spore_blossom.hit=true +minecraft\:entity.tadpole.grow_up=true +simplyswords\:dark_sword_parry=true +minecraft\:entity.axolotl.attack=true +minecraft\:entity.polar_bear.step=true +minecraft\:entity.turtle.hurt_baby=true +bettercombat\:claymore_swing=true +minecraft\:entity.horse.land=true +minecraft\:entity.parrot.step=true +minecraft\:music.dragon=true +simplyswords\:elemental_bow_wind_shoot_impact_03=true +minecraft\:block.big_dripleaf.place=true +minecraft\:block.nether_sprouts.hit=true +minecraft\:block.lava.extinguish=true +minecraft\:block.basalt.fall=true +minecraft\:entity.player.big_fall=true +minecraft\:entity.villager.work_librarian=true +minecraft\:block.stone_button.click_off=true +minecraft\:block.dripstone_block.hit=true +simplyswords\:elemental_bow_wind_shoot_impact_01=true +simplyswords\:elemental_bow_wind_shoot_impact_02=true +minecraft\:entity.slime.hurt=true +minecraft\:block.end_gateway.spawn=true +minecraft\:entity.iron_golem.attack=true +minecraft\:entity.chicken.egg=true +minecraft\:block.amethyst_cluster.hit=true +minecraft\:entity.zoglin.hurt=true +minecraft\:block.ladder.break=true +minecraft\:block.bubble_column.whirlpool_inside=true +minecraft\:entity.glow_item_frame.break=true +mythicmounts\:colelytra_death=true +minecraft\:item.crossbow.hit=true +graveyard\:entity.lich.scare=true +mythicmounts\:firebird_death=true +minecraft\:entity.elder_guardian.hurt_land=true +adventurez\:soulreaper_death=true +minecraft\:block.end_portal.spawn=true +minecraft\:music_disc.cat=true +minecraft\:music.overworld.snowy_slopes=true +naturalist\:entity.snail.forward=true +minecraft\:block.bamboo_wood.step=true +simplyswords\:swing_small=true +minecraft\:entity.generic.burn=true +minecraft\:block.bubble_column.whirlpool_ambient=true +dungeonnowloading\:chaos_spawner_hurt=true +adventurez\:mammoth_death=true +minecells\:teleport.charge=true +minecraft\:block.composter.empty=true +minecraft\:block.sculk.break=true +creeperoverhaul\:entity.wood.creeper.prime=true +minecraft\:entity.zombie_villager.converted=true +adventurez\:shadow_cast=true +minecraft\:block.chain.place=true +deeperdarker\:block.sculk_stone.step=true +mythicmounts\:direwolf_hurt=true +simplyskills\:magic_shamanic_voice_20=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 +minecraft\:entity.zombie_villager.ambient=true +minecraft\:entity.enderman.death=true +minecraft\:block.froglight.break=true +rogues\:shock_powder_impact=true +simplyskills\:spell_earth_punch=true +minecraft\:ambient.underwater.loop.additions.rare=true +minecraft\:block.calcite.step=true +mythicmounts\:courierbird_hurt=true +friendsandfoes\:entity.glare.ambient=true +mutantmonsters\:entity.mutant_snow_golem.death=true +minecraft\:entity.zoglin.attack=true +naturalist\:entity.rhino.ambient_baby=true +minecraft\:block.stone.fall=true +minecraft\:ui.loom.take_result=true +bosses_of_mass_destruction\:petal_blade=true +mutantmonsters\:entity.creeper_minion.primed=true +minecraft\:entity.puffer_fish.flop=true +minecraft\:block.big_dripleaf.tilt_down=true +adventurez\:shaman_idle=true +minecraft\:entity.parrot.death=true +minecraft\:block.hanging_roots.place=true +simplyswords\:swing_normal=true +minecraft\:block.amethyst_block.fall=true +minecraft\:block.note_block.xylophone=true +creeperoverhaul\:entity.stone.creeper.prime=true +minecraft\:entity.elder_guardian.ambient_land=true +simplyswords\:elemental_bow_earth_shoot_flyby_02=true +simplyswords\:elemental_bow_earth_shoot_flyby_01=true +minecraft\:entity.rabbit.ambient=true +minecraft\:entity.blaze.death=true +naturalist\:entity.deer.ambient_baby=true +patchouli\:book_flip=true +simplyswords\:elemental_bow_poison_attack_03=true +friendsandfoes\:entity.copper_golem.repair=true +minecells\:disgusting_worm.death=true +simplyswords\:elemental_bow_earth_shoot_flyby_03=true +soulsweapons\:moonlight_big=true +minecraft\:block.beehive.exit=true +simplyswords\:elemental_bow_poison_attack_01=true +minecraft\:entity.vex.ambient=true +simplyswords\:elemental_bow_poison_attack_02=true +minecraft\:block.dripstone_block.break=true +minecraft\:block.coral_block.place=true +mythicmounts\:direwolf_death=true +deeperdarker\:block.sculk_stone.hit=true +betterend\:betterend.entity.shadow_walker=true +promenade\:block.snowy_leaves.place=true +minecraft\:block.shroomlight.place=true +creeperoverhaul\:entity.sand.creeper.hurt=true +minecraft\:entity.guardian.ambient_land=true +friendsandfoes\:entity.iceologer.cast_spell=true +simplyswords\:elemental_bow_holy_shoot_impact_02=true +paladins\:divine_protection_release=true +simplyswords\:elemental_bow_holy_shoot_impact_01=true +minecraft\:block.coral_block.step=true +simplyswords\:elemental_bow_holy_shoot_impact_03=true +graveyard\:entity.nightmare.ambient=true +mythicmounts\:wing_flap=true +minecraft\:entity.generic.eat=true +friendsandfoes\:entity.wildfire.shockwave=true +friendsandfoes\:entity.mauler.hurt=true +bosses_of_mass_destruction\:gauntlet_spin_punch=true +minecells\:shocker.death=true +minecraft\:block.weeping_vines.step=true +minecraft\:block.moss.fall=true +minecraft\:block.cherry_wood.hit=true +mutantmonsters\:entity.endersoul_clone.death=true +dungeonnowloading\:whimper_death=true +simplyswords\:elemental_bow_water_shoot_impact_02=true +simplyswords\:elemental_bow_water_shoot_impact_03=true +minecraft\:entity.axolotl.swim=true +simplyswords\:elemental_bow_water_shoot_impact_01=true +minecraft\:block.slime_block.hit=true +minecraft\:entity.husk.step=true +friendsandfoes\:entity.ice_chunk.ambient=true +minecraft\:entity.zombie.death=true +creeperoverhaul\:entity.stone.creeper.hurt=true +minecraft\:entity.ender_dragon.shoot=true +minecraft\:block.sculk_catalyst.hit=true +simplyswords\:object_impact_thud=true +bingus\:godlike=true +adventurez\:dragon_step=true +minecraft\:entity.zombie.step=true +naturalist\:entity.rhino.ambient=true +minecraft\:block.stone.place=true +minecraft\:entity.allay.item_given=true +minecells\:weapon.bow.release=true +minecraft\:entity.wolf.howl=true +mythicmounts\:nudibranch_death=true +minecraft\:entity.pig.ambient=true +bettercombat\:claymore_slam=true +minecraft\:entity.iron_golem.death=true +naturalist\:entity.bird.fly=true +bingus\:bingusdies=true +minecraft\:block.nether_wood_trapdoor.close=true +minecraft\:entity.item_frame.place=true +bosses_of_mass_destruction\:energy_shield=true +minecraft\:music.overworld.jungle=true +naturalist\:entity.bird.ambient_canary=true +minecraft\:block.chiseled_bookshelf.pickup=true +betterend\:betterend.music.water=true +minecraft\:entity.item_frame.remove_item=true +minecraft\:entity.warden.ambient=true +aquamirae\:entity.eel.roar=true +betterend\:betterend.music.caves=true +minecraft\:block.flowering_azalea.hit=true +minecraft\:block.nether_gold_ore.place=true +cave_dweller\:chase_step_4=true +minecells\:concierge.shout=true +cave_dweller\:chase_step_3=true +cave_dweller\:chase_step_2=true +minecraft\:entity.iron_golem.damage=true +cave_dweller\:chase_step_1=true +minecraft\:block.candle.place=true +friendsandfoes\:entity.tuff_golem.sleep=true +minecraft\:block.beehive.enter=true +minecraft\:entity.elder_guardian.curse=true +minecraft\:entity.firework_rocket.blast=true +minecraft\:entity.wolf.whine=true +minecraft\:ambient.basalt_deltas.mood=true +minecraft\:block.coral_block.fall=true +minecraft\:block.stone.step=true +minecraft\:block.nether_wood.break=true +minecraft\:block.sculk.place=true +combatroll\:roll_cooldown_ready=true +minecraft\:entity.llama.eat=true +minecraft\:entity.generic.splash=true +minecraft\:block.sculk_catalyst.place=true +naturalist\:entity.bear.sleep=true +smallships\:ship_hit=true +naturalist\:entity.zebra.jump=true +minecraft\:entity.frog.ambient=true +minecraft\:entity.wolf.step=true +minecraft\:entity.slime.squish=true +minecraft\:block.sniffer_egg.hatch=true +minecells\:teleport.release=true +minecraft\:block.froglight.place=true +minecraft\:entity.bat.loop=true +minecraft\:item.bucket.empty_fish=true +minecraft\:entity.goat.eat=true +minecraft\:entity.hoglin.step=true +minecraft\:entity.illusioner.hurt=true +mcwdoors\:shoji=true +mythicmounts\:ridinglizard_angry=true +minecraft\:entity.slime.death_small=true +creeperoverhaul\:entity.stone.creeper.explosion=true +mythicmounts\:groundlizard_death=true +minecraft\:entity.zombie.ambient=true +minecraft\:block.sand.break=true +minecraft\:block.amethyst_block.step=true +minecraft\:block.decorated_pot.break=true +minecraft\:entity.goat.hurt=true +friendsandfoes\:entity.glare.hurt=true +minecraft\:entity.generic.extinguish_fire=true +paladins\:holy_barrier_activate=true +creeperoverhaul\:entity.ocean.creeper.hurt_deflated=true +minecells\:concierge.shockwave.release=true +promenade\:block.snowy_leaves.break=true +minecraft\:block.metal.hit=true +minecraft\:entity.rabbit.attack=true +soulsweapons\:hard_boss_death_short=true +minecraft\:block.muddy_mangrove_roots.step=true +minecraft\:block.big_dripleaf.break=true +minecraft\:entity.guardian.ambient=true +minecraft\:block.tripwire.attach=true +bettercombat\:scythe_slash=true +aquamirae\:entity.deep_ambient=true +graveyard\:entity.corrupted_illager.ambient=true +simplyswords\:elemental_bow_thunder_shoot_flyby_02=true +simplyswords\:elemental_bow_thunder_shoot_flyby_01=true +minecells\:leaping_zombie.leap.charge=true +simplyswords\:elemental_bow_thunder_shoot_flyby_03=true +soulsweapons\:fart=true +minecells\:concierge.aura.release=true +minecraft\:block.suspicious_gravel.place=true +minecraft\:entity.goat.screaming.long_jump=true +minecraft\:block.ladder.place=true +minecraft\:block.dripstone_block.place=true +minecells\:curse_death=true +minecraft\:block.bamboo_wood_hanging_sign.place=true +graveyard\:entity.ghouling.hurt=true +minecraft\:entity.hostile.swim=true +mythicmounts\:dragon_death=true +minecraft\:block.nether_wood_fence_gate.open=true +minecraft\:entity.tnt.primed=true +minecraft\:block.soul_soil.fall=true +promenade\:block.snowy_leaves.fall=true +minecraft\:block.big_dripleaf.fall=true +minecraft\:entity.generic.swim=true +minecraft\:block.stone_button.click_on=true +minecraft\:entity.slime.squish_small=true +betterend\:betterend.ambient.glowing_grasslands=true +minecraft\:entity.villager.work_cartographer=true +dungeonnowloading\:whimper_hurt=true +simplyskills\:magic_shamanic_spell_01=true +minecraft\:entity.warden.nearby_closest=true +soulsweapons\:partner_dies=true +minecraft\:block.fence_gate.close=true +minecraft\:entity.mule.ambient=true +simplyskills\:magic_shamanic_spell_04=true +simplyskills\:magic_shamanic_spell_02=true +simplyskills\:magic_shamanic_spell_03=true +minecraft\:block.beehive.drip=true +minecraft\:block.campfire.crackle=true +minecraft\:block.comparator.click=true +minecraft\:block.metal_pressure_plate.click_off=true +minecraft\:item.armor.equip_iron=true +minecraft\:entity.panda.sneeze=true +minecraft\:entity.dolphin.jump=true +minecraft\:music_disc.relic=true +minecraft\:block.sculk_catalyst.fall=true +betterend\:betterend.record.strange_and_alien=true +graveyard\:entity.reaper.hurt=true +minecraft\:block.ancient_debris.break=true +minecraft\:item.nether_wart.plant=true +simplyswords\:throw_mjolnir_long=true +minecraft\:entity.fox.spit=true +minecraft\:block.chiseled_bookshelf.break=true +friendsandfoes\:entity.copper_golem.step=true +minecells\:mutated_bat.charge=true +minecraft\:block.cherry_leaves.fall=true +graveyard\:entity.corrupted_illager.death=true +minecraft\:block.azalea_leaves.break=true +minecraft\:entity.hostile.big_fall=true +minecraft\:entity.turtle.death_baby=true +minecraft\:entity.cod.death=true +minecraft\:entity.player.death=true +minecraft\:block.scaffolding.fall=true +creeperoverhaul\:entity.plant.creeper.hurt=true +simplyskills\:ui_replenish_01=true +minecraft\:block.lantern.fall=true +minecraft\:entity.splash_potion.throw=true +jewelry\:jewelry_equip=true +minecraft\:block.bone_block.step=true +minecraft\:entity.dolphin.splash=true +minecraft\:entity.wither.ambient=true +aquamirae\:effect.oxygen=true +friendsandfoes\:entity.mauler.growl=true +graveyard\:entity.reaper.charge=true +soulsweapons\:moonlight_small=true +minecells\:weapon.bow.charge=true +minecraft\:block.wart_block.place=true +soulsweapons\:warmth_die=true +minecraft\:entity.creeper.primed=true +bosses_of_mass_destruction\:void_blossom_fall=true +minecraft\:entity.horse.eat=true +simplyskills\:spell_lightning_cast=true +minecells\:inquisitor.release=true +mcwwindows\:window_open=true +guardvillagers\:entity.guard.ambient=true +minecraft\:block.copper.place=true +minecraft\:entity.elder_guardian.hurt=true +minecraft\:entity.polar_bear.ambient=true +minecraft\:block.nether_wood_button.click_off=true +minecraft\:block.chest.locked=true +adventurez\:nightmare_angry=true +minecraft\:entity.frog.step=true +minecraft\:block.small_amethyst_bud.break=true +minecraft\:entity.wolf.ambient=true +minecraft\:block.cherry_wood.fall=true +minecraft\:block.nether_wood_pressure_plate.click_on=true +adventurez\:nightmare_hurt=true +minecraft\:block.decorated_pot.fall=true +simplyswords\:elemental_bow_water_shoot_flyby_01=true +minecraft\:block.candle.extinguish=true +minecraft\:weather.rain=false +betternether\:betternether.mob.naga_attack=true +bosses_of_mass_destruction\:wave_indicator=true +cave_dweller\:dweller_hurt_4=true +simplyswords\:elemental_bow_water_shoot_flyby_02=true +minecraft\:entity.phantom.ambient=true +cave_dweller\:dweller_hurt_3=true +simplyswords\:elemental_bow_water_shoot_flyby_03=true +mythicmounts\:nudibranch_angry=true +minecraft\:entity.cat.death=true +paladins\:holy_beam_casting=true +simplyswords\:magic_sword_breaks=true +minecraft\:block.sand.step=true +minecraft\:entity.goat.screaming.ambient=true +rogues\:demoralize_impact=true +minecraft\:entity.ender_dragon.flap=true +mythicmounts\:griffon_angry=true +rogues\:warrior_armor=true +simplyskills\:spell_fireball=true +minecraft\:block.conduit.deactivate=true +wizards\:arcane_beam_release=true +naturalist\:entity.bass.flop=true +minecraft\:entity.generic.hurt=true +minecraft\:entity.puffer_fish.death=true +minecraft\:entity.turtle.egg_break=true +friendsandfoes\:entity.copper_golem.death=true +cave_dweller\:dweller_hurt_2=true +cave_dweller\:dweller_hurt_1=true +minecraft\:entity.elder_guardian.death_land=true +minecraft\:entity.magma_cube.death=true +mutantmonsters\:entity.mutant_skeleton.ambient=true +graveyard\:entity.acolyte.death=true +minecraft\:item.spyglass.stop_using=true +minecraft\:entity.donkey.ambient=true +adventurez\:orc_idle=true +minecraft\:ui.loom.select_pattern=true +minecraft\:weather.rain.above=false +simplyswords\:spell_misc_02=true +minecraft\:block.wooden_door.open=true +minecraft\:ambient.crimson_forest.loop=true +smallships\:sail_pull=true +minecraft\:block.cherry_wood_button.click_on=true +creeperoverhaul\:entity.plant.creeper.prime=true +simplyskills\:spell_misc_01=true +smallships\:cannon_shot=true +graveyard\:entity.lich.phase_two=true +minecraft\:block.pumpkin.carve=true +minecraft\:block.vine.fall=true +soulsweapons\:crit_hit=true +rogues\:rogue_armor=true +minecraft\:block.cherry_wood_trapdoor.close=true +minecraft\:block.decorated_pot.step=true +minecraft\:item.shield.block=true +minecraft\:block.note_block.snare=true +naturalist\:entity.elephant.ambient=true +deeperdarker\:item.sculk_transmitter.unlink=true +minecraft\:block.copper.break=true +minecraft\:block.grass.break=true +minecraft\:block.metal.place=true +spell_engine\:generic_frost_casting=true +minecraft\:entity.allay.hurt=true +minecraft\:block.vine.hit=true +minecraft\:block.wart_block.break=true +bosses_of_mass_destruction\:charged_ender_pearl=true +minecraft\:entity.zombie_horse.ambient=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 +bosses_of_mass_destruction\:spike_indicator=true +minecraft\:entity.item.break=true +bettercombat\:staff_slam=true +minecraft\:entity.wandering_trader.yes=true +bettercombat\:staff_spin=true +minecraft\:entity.blaze.burn=true +minecells\:charge=true +minecraft\:entity.mooshroom.suspicious_milk=true +minecraft\:entity.pig.death=true +minecraft\:entity.zombie.infect=true +artifacts\:entity.mimic.hurt=true +minecraft\:block.sand.fall=true +minecraft\:item.bundle.remove_one=true +minecraft\:entity.hoglin.hurt=true +minecraft\:entity.horse.hurt=true +minecraft\:block.polished_deepslate.place=true +minecraft\:entity.creeper.death=true +minecraft\:block.honey_block.break=true +mythicmounts\:griffon_ambient=true +deeperdarker\:entity.shriek_worm.hurt=true +minecraft\:block.sculk_catalyst.break=true +minecraft\:entity.squid.squirt=true +mythicmounts\:dragon_angry=true +minecraft\:entity.villager.work_leatherworker=true +minecraft\:block.stone_pressure_plate.click_on=true +minecraft\:ui.toast.challenge_complete=true +mutantmonsters\:entity.endersoul_fragment.explode=true +minecraft\:entity.guardian.death_land=true +naturalist\:entity.bear.ambient=true +minecraft\:block.pink_petals.place=true +minecraft\:block.cherry_wood_pressure_plate.click_off=true +minecraft\:entity.hoglin.converted_to_zombified=true +bosses_of_mass_destruction\:blue_fireball_land=true +minecraft\:block.nether_wood_fence_gate.close=true +simplyswords\:swing_omen_one=true +minecraft\:music_disc.stal=true +minecraft\:block.sculk_vein.hit=true +minecraft\:entity.firework_rocket.large_blast_far=true +minecraft\:entity.parrot.imitate.zoglin=true +minecraft\:entity.drowned.ambient_water=true +minecraft\:entity.fish.swim=true +minecraft\:entity.sniffer.drop_seed=true +minecraft\:entity.villager.ambient=true +soulsweapons\:demon_damage=true +simplyskills\:fx_ui_unlock=true +spell_engine\:generic_lightning_casting=true +minecraft\:block.lantern.step=true +patchouli\:book_open=true +adventurez\:amethyst_golem_idle=true +minecraft\:block.note_block.harp=true +minecraft\:entity.parrot.imitate.shulker=true +minecraft\:entity.axolotl.death=true +adventurez\:golem_spawn=true +adventurez\:spellcast_shield=true +graveyard\:entity.ghoul.roar=true +minecraft\:entity.skeleton_horse.gallop_water=true +soulsweapons\:decaying_king_hurt=true +adventurez\:amethyst_golem_hit=true +creeperoverhaul\:entity.wood.creeper.hurt=true +minecraft\:music_disc.mellohi=true +minecraft\:music.overworld.frozen_peaks=true +minecraft\:entity.drowned.ambient=true +friendsandfoes\:entity.rascal.reward=true +minecraft\:entity.elder_guardian.ambient=true +mcwdoors\:garage=true +minecraft\:block.nether_wood_hanging_sign.hit=true +bosses_of_mass_destruction\:missile_prepare=true +minecraft\:block.rooted_dirt.place=true +graveyard\:entity.reaper.death=true +mythicmounts\:colelytra_ambient=true +minecraft\:block.vine.step=true +minecraft\:block.azalea_leaves.place=true +minecraft\:music.credits=true +minecraft\:entity.zombie.converted_to_drowned=true +minecraft\:block.note_block.flute=true +bosses_of_mass_destruction\:obsidilith_burst=true +minecraft\:entity.zombified_piglin.ambient=true +minecraft\:entity.fox.death=true +minecraft\:block.bone_block.fall=true +minecraft\:item.crossbow.quick_charge_2=true +minecraft\:item.crossbow.quick_charge_1=true +minecraft\:entity.player.splash=true +minecraft\:block.amethyst_block.chime=true +minecraft\:entity.husk.death=true +minecraft\:music_disc.far=true +minecraft\:music.end=true +minecraft\:item.bucket.empty_powder_snow=true +minecraft\:item.bucket.fill_powder_snow=true +minecraft\:block.scaffolding.step=true +minecraft\:entity.firework_rocket.large_blast=true +minecells\:mutated_bat.wake=true +minecraft\:entity.panda.eat=true +minecraft\:item.crossbow.quick_charge_3=true +minecraft\:entity.wither_skeleton.death=true +minecraft\:ambient.cave=true +minecraft\:block.cave_vines.pick_berries=true +minecraft\:entity.spider.step=true +minecraft\:entity.illusioner.mirror_move=true +minecraft\:block.pointed_dripstone.drip_lava_into_cauldron=true +naturalist\:entity.vulture.death=true +minecraft\:entity.salmon.ambient=true +minecraft\:entity.slime.hurt_small=true +minecraft\:block.azalea.step=true +minecraft\:entity.wolf.death=true +rogues\:throw_impact=true +aquamirae\:item.treasure_pouch.open=true +soulsweapons\:big_chungus_song=true +minecraft\:entity.wandering_trader.disappeared=true +minecraft\:block.pointed_dripstone.land=true +naturalist\:entity.snail.crush=true +minecraft\:block.small_amethyst_bud.place=true +minecraft\:entity.mule.angry=true +wizards\:fire_meteor_impact=true +minecraft\:entity.husk.hurt=true +minecraft\:block.snow.hit=true +bosses_of_mass_destruction\:gauntlet_idle=true +soulsweapons\:dawnbreaker_sound=true +minecraft\:block.portal.trigger=true +dungeonnowloading\:chaos_spawner_death=true +graveyard\:block.bone.ambient=true +minecraft\:entity.puffer_fish.sting=true +simplyskills\:spell_fire_cast=true +minecraft\:block.grass.hit=true +graveyard\:entity.revenant.death=true +minecraft\:block.conduit.ambient=true +mutantmonsters\:entity.mutant_zombie.attack=true +soulsweapons\:trinity=true +minecraft\:block.deepslate_tiles.fall=true +minecraft\:block.stone_pressure_plate.click_off=true +minecraft\:block.bubble_column.upwards_inside=true +minecraft\:block.copper.hit=true +minecraft\:entity.parrot.hurt=true +minecraft\:entity.horse.gallop=true +mutantmonsters\:entity.mutant_enderman.teleport=true +minecraft\:entity.allay.item_thrown=true +minecraft\:entity.zombie_horse.death=true +minecraft\:block.grass.place=true +minecraft\:entity.evoker.ambient=true +minecraft\:entity.zoglin.death=true +minecraft\:entity.parrot.imitate.slime=true +minecraft\:block.bamboo_wood_trapdoor.open=true +mythicmounts\:jump=true +naturalist\:entity.hippo.hurt=true +mobs_of_mythology\:drake_roar=true +naturalist\:entity.firefly.hurt=true +minecraft\:block.cave_vines.hit=true +minecraft\:block.barrel.close=true +minecraft\:entity.chicken.ambient=true +minecraft\:entity.cat.hurt=true +minecraft\:entity.guardian.hurt=true +betternether\:betternether.mob.firefly.fly=true +minecraft\:entity.hoglin.angry=true +minecraft\:entity.ghast.death=true +minecraft\:music_disc.mall=true +minecraft\:entity.silverfish.step=true +friendsandfoes\:entity.glare.death=true +graveyard\:block.coffin.open=true +minecraft\:entity.turtle.shamble=true +minecraft\:entity.shulker_bullet.hurt=true +soulsweapons\:day_stalker_decimate=true +minecraft\:music.game=true +minecraft\:block.nether_ore.break=true +deeperdarker\:entity.sculk_snapper.ambient=true +minecraft\:item.bucket.empty=true +graveyard\:entity.lich.theme_01=true +bettercombat\:axe_slash=true +minecraft\:block.calcite.hit=true +bettercombat\:double_axe_swing=true +smallships\:sail_move=true +minecraft\:block.decorated_pot.shatter=true +bettercombat\:sickle_slash=true +bosses_of_mass_destruction\:teleport_prepare=true +minecraft\:block.sculk_shrieker.step=true +promenade\:entity.sunken_skeleton.step=true +mobs_of_mythology\:robotic_voice=true +simplyswords\:elemental_bow_ice_shoot_impact_01=true +minecraft\:entity.snowball.throw=true +simplyswords\:elemental_bow_ice_shoot_impact_02=true +simplyswords\:elemental_bow_ice_shoot_impact_03=true +minecraft\:block.chorus_flower.grow=true +minecraft\:entity.hostile.small_fall=true +minecells\:shieldbearer.release=true +soulsweapons\:gatling_gun_startup=true +minecraft\:block.bubble_column.upwards_ambient=true +graveyard\:entity.ghoul.hurt=true +minecells\:fly.charge=true +artifacts\:entity.mimic.death=true +simplyswords\:elemental_sword_thunder_attack_01=true +simplyswords\:elemental_sword_thunder_attack_03=true +simplyswords\:elemental_sword_thunder_attack_02=true +minecraft\:entity.hoglin.attack=true +minecraft\:entity.warden.nearby_close=true +graveyard\:entity.ghoul.death=true +minecraft\:block.cave_vines.place=true +minecraft\:block.nylium.hit=true +minecraft\:item.bucket.empty_lava=true +betterend\:betterend.ambient.chorus_forest=true +minecraft\:block.azalea.fall=true +mutantmonsters\:entity.mutant_enderman.stare=true +minecraft\:block.nether_wood_hanging_sign.step=true +minecraft\:block.nether_wood_hanging_sign.place=true +minecraft\:entity.player.burp=true +minecraft\:block.cherry_wood_button.click_off=true +minecraft\:block.bamboo_wood_trapdoor.close=true +minecraft\:entity.item.pickup=true +simplyswords\:magic_sword_whoosh_03=true +bosses_of_mass_destruction\:spike=true +simplyswords\:magic_sword_whoosh_04=true +simplyswords\:magic_sword_whoosh_01=true +simplyswords\:magic_sword_whoosh_02=true +simplyswords\:magic_sword_whoosh_07=true +minecraft\:entity.villager.work_butcher=true +simplyswords\:magic_sword_whoosh_05=true +simplyswords\:magic_sword_whoosh_06=true +naturalist\:entity.bird.eat=true +minecraft\:entity.player.attack.knockback=true +naturalist\:entity.zebra.ambient=true +minecraft\:block.bamboo.step=true +minecraft\:block.stem.place=true +mutantmonsters\:entity.spider_pig.ambient=true +minecraft\:block.cherry_wood_hanging_sign.step=true +minecraft\:block.amethyst_cluster.break=true +deeperdarker\:block.ancient_vase.fall=true +minecraft\:block.glass.place=true +minecraft\:item.armor.equip_elytra=true +minecraft\:entity.cat.stray_ambient=true +minecraft\:block.small_dripleaf.step=true +minecraft\:entity.strider.eat=true +wizards\:frost_nova_release=true +minecraft\:entity.player.hurt_drown=true +minecells\:sweeper.release=true +promenade\:entity.sunken_skeleton.shoot=true +minecraft\:block.growing_plant.crop=true +minecraft\:entity.lingering_potion.throw=true +minecraft\:block.cherry_sapling.hit=true +minecraft\:block.deepslate_bricks.fall=true +minecraft\:entity.zombie.attack_iron_door=true +handcrafted\:hammer_wood=true +minecraft\:entity.camel.ambient=true +minecraft\:entity.ghast.shoot=true +minecraft\:music.overworld.stony_peaks=true +bosses_of_mass_destruction\:gauntlet_laser_charge=true +minecraft\:block.cherry_leaves.place=true +soulsweapons\:day_stalker_radiance=true +minecraft\:block.bamboo.fall=true +minecraft\:block.composter.fill_success=true +mutantmonsters\:entity.mutant_zombie.roar=true +bettercombat\:rapier_slash=true +minecraft\:ambient.nether_wastes.loop=true +minecraft\:entity.turtle.swim=true +naturalist\:entity.vulture.hurt=true +minecraft\:music.under_water=true +simplyskills\:place_stone_10=true +bingus\:bingushurts=true +naturalist\:entity.dragonfly.loop=true +minecraft\:entity.glow_squid.squirt=true +minecraft\:music.overworld.meadow=true +minecells\:kamikaze.death=true +promenade\:entity.duck.hurt=true +minecraft\:entity.player.attack.sweep=true +minecraft\:block.soul_soil.hit=true +minecraft\:block.tripwire.click_on=true +simplyskills\:place_stone_09=true +minecraft\:entity.evoker.death=true +minecraft\:entity.goat.ambient=true +simplyskills\:place_stone_08=true +bosses_of_mass_destruction\:minion_rune=true +minecraft\:item.dye.use=true +minecraft\:entity.sniffer.hurt=true +bettercombat\:hammer_slam=true +minecraft\:block.dripstone_block.fall=true +betterend\:betterend.record.endseeker=true +simplyskills\:place_stone_07=true +simplyskills\:place_stone_06=true +wizards\:frost_nova_effect_impact=true +minecraft\:block.glass.break=true +simplyswords\:elemental_sword_earth_attack_02=true +vc_gliders\:glider_open=true +minecraft\:block.note_block.hat=true +aquamirae\:record.horizon=true +simplyswords\:elemental_sword_earth_attack_03=true +simplyswords\:elemental_sword_earth_attack_01=true +graveyard\:entity.corrupted_illager.step=true +minecraft\:block.cherry_leaves.break=true +minecraft\:entity.bat.ambient=true +minecraft\:block.flowering_azalea.step=true +minecraft\:item.armor.equip_turtle=true +minecraft\:entity.skeleton_horse.swim=true +mythicmounts\:netherbat_angry=true +minecraft\:block.mangrove_roots.place=true +minecraft\:entity.drowned.hurt=true +minecraft\:entity.player.swim=true +naturalist\:entity.deer.ambient=true +minecraft\:entity.bat.takeoff=true +minecraft\:entity.parrot.imitate.zombie_villager=true +naturalist\:entity.vulture.ambient=true +minecraft\:entity.painting.break=true +soulsweapons\:spawn_undead=true +minecraft\:block.anvil.fall=true +mythicmounts\:archelon_ambient=true +minecraft\:block.hanging_sign.hit=true +paladins\:divine_protection_impact=true +minecraft\:entity.warden.angry=true +bettercombat\:staff_stab=true +minecraft\:entity.cow.hurt=true +minecraft\:entity.mooshroom.eat=true +mcwwindows\:blinds_open=true +minecells\:portal.activate=true +minecraft\:block.chiseled_bookshelf.insert=true +minecraft\:block.sculk_shrieker.fall=true +minecraft\:block.iron_trapdoor.close=true +simplyswords\:magic_shamanic_nordic_02=true +minecraft\:block.suspicious_gravel.step=true +minecraft\:entity.parrot.imitate.spider=true +minecraft\:block.sculk_shrieker.shriek=true +minecraft\:block.chest.close=true +minecraft\:entity.dolphin.attack=true +deeperdarker\:entity.sculk_snapper.hurt=true +adventurez\:hog_hurt=true +minecraft\:block.frogspawn.break=true +aquamirae\:entity.golden_moth.ambient=true +promenade\:entity.duck.death=true +graveyard\:block.sarcophagus.use=true +minecraft\:entity.parrot.eat=true +minecraft\:item.bone_meal.use=true +minecells\:music.insufferable_crypt=true +minecraft\:block.small_dripleaf.fall=true +promenade\:entity.sunken_skeleton.death=true +minecraft\:entity.vindicator.celebrate=true +minecraft\:entity.ocelot.ambient=true +minecraft\:entity.shulker.hurt=true +aquamirae\:item.pouch.open=true +naturalist\:entity.alligator.ambient_baby=true +minecraft\:music.overworld.badlands=true +mutantmonsters\:entity.mutant_creeper.charge=true +minecraft\:block.cave_vines.break=true +simplyskills\:magic_shamanic_power_12=true +soulsweapons\:day_stalker_windup=true +minecraft\:entity.player.attack.weak=true +adventurez\:golem_awakens=true +bettercombat\:katana_slash=true +minecraft\:entity.firework_rocket.shoot=true +minecraft\:block.deepslate_bricks.step=true +minecraft\:block.cherry_wood_hanging_sign.fall=true +mythicmounts\:acencia_angry=true +minecraft\:entity.lightning_bolt.thunder=false +jewelry\:jewelry_workbench=true +minecraft\:entity.parrot.ambient=true +betterend\:betterend.entity.shadow_walker_death=true +friendsandfoes\:entity.rascal.reappear=true +deeperdarker\:music.deeperdarker.arrival=true +minecraft\:block.cherry_wood.step=true +minecraft\:block.stem.break=true +simplyswords\:magic_shamanic_nordic_27=true +minecraft\:entity.villager.death=true +simplyswords\:magic_shamanic_voice_20=true +minecraft\:block.suspicious_gravel.fall=true +minecraft\:block.amethyst_cluster.place=true +simplyswords\:magic_shamanic_nordic_21=true +friendsandfoes\:entity.glare.grumpiness=true +simplyswords\:magic_shamanic_nordic_22=true +minecraft\:entity.villager.trade=true +minecraft\:entity.drowned.death_water=true +minecraft\:entity.cat.purr=true +minecraft\:block.conduit.ambient.short=true +minecraft\:block.piston.contract=true +simplyswords\:magic_shamanic_nordic_23=true +minecraft\:block.sculk_sensor.place=true +mcwwindows\:window_close=true +mythicmounts\:chest_equips=true +spell_engine\:generic_arcane_casting=true +minecraft\:entity.splash_potion.break=true +adventurez\:soulreaper_idle=true +betternether\:betternether.ambient.gravel_desert=true +minecraft\:block.cherry_wood_pressure_plate.click_on=true +mutantmonsters\:entity.mutant_skeleton.step=true +mythicmounts\:groundlizard_hurt=true +mutantmonsters\:entity.mutant_enderman.ambient=true +minecraft\:entity.item_frame.add_item=true +graveyard\:entity.wraith.ambient=true +minecraft\:block.dripstone_block.step=true +minecraft\:entity.zombie_villager.step=true +adventurez\:fungus_hurt=true +minecells\:buzz=true +minecraft\:block.glass.fall=true +minecells\:rancid_rat.charge=true +minecraft\:block.lodestone.step=true +naturalist\:entity.boar.death=true +minecraft\:entity.parrot.imitate.piglin=true +simplyskills\:damage_03=true +soulsweapons\:restore=true +minecraft\:block.fire.extinguish=true +friendsandfoes\:entity.wildfire.ambient=true +mythicmounts\:moth_hurt=true +simplyswords\:magic_shamanic_voice_04=true +adventurez\:shaman_hurt=true +mythicmounts\:moth_angry=true +minecraft\:entity.panda.step=true +adventurez\:iguana_death=true +mutantmonsters\:entity.mutant_zombie.death=true +minecraft\:entity.player.hurt_on_fire=true +naturalist\:entity.snail.back=true +minecraft\:block.mud_bricks.place=true +minecraft\:entity.tropical_fish.ambient=true +minecraft\:entity.sniffer.death=true +minecraft\:block.packed_mud.break=true +mutantmonsters\:entity.mutant_zombie.ambient=true +minecells\:weapon.hit_floor=true +mythicmounts\:summoning_staff_fails=true +minecraft\:entity.puffer_fish.blow_out=true +minecraft\:block.nether_wood_hanging_sign.fall=true +minecraft\:entity.parrot.imitate.vex=true +simplyswords\:magic_shamanic_voice_15=true +minecraft\:entity.fox.bite=true +minecraft\:ambient.warped_forest.loop=true +minecraft\:block.flowering_azalea.fall=true +minecraft\:block.sculk.spread=true +graveyard\:block.urn.open=true +minecraft\:entity.camel.step=true +minecraft\:block.metal.break=true +bettercombat\:anchor_slam=true +simplyswords\:magic_shamanic_voice_12=true +minecraft\:ambient.crimson_forest.additions=true +minecraft\:block.cherry_wood_fence_gate.close=true +graveyard\:entity.ghouling.groan=true +adventurez\:orc_hurt=true +simplyswords\:magic_bow_shoot_impact_01=true +minecraft\:entity.piglin.step=true +minecraft\:entity.fishing_bobber.throw=true +minecraft\:block.packed_mud.fall=true +simplyswords\:magic_bow_shoot_impact_03=true +minecraft\:entity.horse.armor=true +simplyswords\:magic_bow_shoot_impact_02=true +minecraft\:block.amethyst_block.resonate=true +soulsweapons\:trick_weapon=true +minecraft\:block.hanging_sign.step=true +minecraft\:block.nether_sprouts.step=true +minecraft\:block.nether_gold_ore.hit=true +minecraft\:block.mud_bricks.break=true +minecraft\:entity.painting.place=true +minecraft\:entity.parrot.imitate.drowned=true +minecraft\:entity.warden.sonic_charge=true +minecraft\:block.chiseled_bookshelf.pickup.enchanted=true +minecraft\:music_disc.strad=true +minecraft\:entity.blaze.ambient=true +friendsandfoes\:entity.player.mirror_move=true +minecraft\:block.amethyst_cluster.fall=true +minecraft\:entity.cod.flop=true +minecraft\:entity.zombie_villager.cure=true +graveyard\:block.urn.close=true +minecraft\:entity.dolphin.death=true +minecraft\:entity.warden.step=true +minecraft\:block.anvil.step=true +minecraft\:block.packed_mud.step=true +minecraft\:block.hanging_sign.fall=true +minecraft\:entity.sheep.step=true +minecraft\:entity.parrot.imitate.evoker=true +adventurez\:deer_death=true +minecraft\:entity.cat.ambient=true +paladins\:holy_shock_damage=true +simplyswords\:object_impact_thud_repeat=true +minecraft\:block.polished_deepslate.break=true +minecraft\:item.trident.hit=true +minecraft\:entity.magma_cube.hurt=true +minecraft\:block.wooden_pressure_plate.click_on=true +simplyskills\:energy_charge=true +minecraft\:entity.generic.explode=true +minecraft\:block.nether_sprouts.fall=true +soulsweapons\:sharpen=true +minecraft\:entity.horse.saddle=true +cave_dweller\:chase_1=true +minecraft\:block.lever.click=true +cave_dweller\:chase_4=true +cave_dweller\:chase_2=true +cave_dweller\:chase_3=true +naturalist\:entity.bird.ambient_finch=true +minecraft\:block.roots.break=true +minecraft\:block.nether_wood_pressure_plate.click_off=true +minecraft\:entity.silverfish.ambient=true +graveyard\:block.altar.ambient=true +spell_engine\:generic_soul_release=true +naturalist\:entity.deer.hurt_baby=true +minecraft\:entity.zombified_piglin.death=true +minecraft\:block.bone_block.hit=true +minecraft\:entity.witch.celebrate=true +minecraft\:block.amethyst_cluster.step=true +deeperdarker\:block.sculk_stone.break=true +minecraft\:ambient.soul_sand_valley.mood=true +minecells\:concierge.step=true +minecells\:weapon.tentacle.charge=true +mythicmounts\:summoning_staff_teleports=true +betterend\:betterend.ambient.blossoming_spires=true +mythicmounts\:wing_whir=true +minecraft\:block.powder_snow.hit=true +cave_dweller\:cavenoise_1=true +mythicmounts\:nightmare_ambient=true +minecraft\:block.ancient_debris.place=true +cave_dweller\:cavenoise_2=true +mythicmounts\:fire=true +mythicmounts\:netherbat_hurt=true +minecraft\:entity.wither.death=true +minecraft\:block.sculk_sensor.break=true +cave_dweller\:cavenoise_3=true +wizards\:frost_nova_damage_impact=true +cave_dweller\:cavenoise_4=true +creeperoverhaul\:entity.plant.creeper.death=true +minecraft\:entity.ghast.scream=true +graveyard\:block.ossuary.open=true +minecraft\:block.glass.step=true +naturalist\:entity.tortoise.egg_crack=true +minecraft\:block.lodestone.fall=true +bingus\:vineboom=true +minecraft\:block.sculk_catalyst.bloom=true +minecraft\:block.cherry_wood_door.close=true +betterend\:betterend.ambient.umbrella_jungle=true +graveyard\:entity.lich.phase_three_attack=true +simplyskills\:activate_tower_beacon=true +graveyard\:entity.nightmare.death=true +minecraft\:entity.llama.hurt=true +minecraft\:block.mangrove_roots.break=true +minecraft\:ui.stonecutter.select_recipe=true +minecraft\:entity.donkey.death=true +simplyskills\:soundeffect_9=true +minecraft\:entity.allay.ambient_without_item=true +minecraft\:entity.rabbit.jump=true +bettercombat\:rapier_stab=true +mythicmounts\:ridinglizard_ambient=true +bosses_of_mass_destruction\:comet_shoot=true +mythicmounts\:firebird_ambient=true +naturalist\:entity.bird.ambient_sparrow=true +minecraft\:music.nether.basalt_deltas=true +simplyskills\:soundeffect_6=true +minecraft\:entity.goat.screaming.milk=true +minecraft\:entity.warden.tendril_clicks=true +simplyskills\:soundeffect_7=true +simplyskills\:soundeffect_8=true +friendsandfoes\:entity.mauler.death=true +betterend\:betterend.ambient.foggy_mushroomland=true +betterend\:betterend.ambient.megalake=true +soulsweapons\:knight_hit=true +adventurez\:hog_attack=true +minecraft\:block.gravel.step=true +minecraft\:entity.ravager.attack=true +minecraft\:entity.parrot.imitate.blaze=true +adventurez\:iguana_step=true +minecraft\:entity.sniffer.searching=true +soulsweapons\:blinding_light_explosion=true +minecraft\:entity.snow_golem.death=true +minecraft\:block.pointed_dripstone.hit=true +minecraft\:block.anvil.break=true +soulsweapons\:night_shade_damage=true +wizards\:frost_shield_release=true +minecraft\:music.nether.nether_wastes=true +minecraft\:block.candle.ambient=true +minecraft\:block.nether_bricks.place=true +soulsweapons\:day_stalker_pull=true +minecraft\:entity.zombified_piglin.hurt=true +minecraft\:entity.camel.dash=true +minecraft\:block.netherrack.fall=true +minecraft\:entity.ocelot.death=true +soulsweapons\:knight_death=true +bosses_of_mass_destruction\:obsidilith_hurt=true +minecraft\:item.shield.break=true +minecraft\:entity.player.hurt=true +minecraft\:item.armor.equip_generic=true +minecraft\:block.deepslate_bricks.hit=true +minecraft\:block.lantern.break=true +simplyswords\:magic_sword_spell_02=true +minecells\:scorpion.charge=true +simplyswords\:magic_sword_spell_01=true +cave_dweller\:disappear=true +simplyswords\:magic_sword_spell_03=true +minecraft\:block.frogspawn.fall=true +graveyard\:entity.ghouling.death=true +minecells\:concierge.shockwave.charge=true +simplyswords\:dark_sword_breaks=true +minecraft\:entity.turtle.lay_egg=true +simplyswords\:throw_mjolnir=true +naturalist\:entity.deer.hurt=true +mutantmonsters\:entity.spider_pig.hurt=true +minecraft\:block.cave_vines.fall=true +minecraft\:entity.wither.shoot=true +minecraft\:block.deepslate_tiles.place=true +minecraft\:entity.firework_rocket.twinkle=true +minecraft\:block.spore_blossom.fall=true +minecraft\:block.hanging_sign.place=true +wizards\:arcane_missile_release=true +minecraft\:block.netherite_block.hit=true +minecraft\:item.chorus_fruit.teleport=true +simplyskills\:spell_energy=true +minecraft\:block.decorated_pot.hit=true +archers\:magic_arrow_start=true +minecraft\:block.deepslate.step=true +minecraft\:entity.villager.work_weaponsmith=true +minecraft\:block.chiseled_bookshelf.fall=true +friendsandfoes\:entity.copper_golem.head_spin=true +minecraft\:block.gilded_blackstone.place=true +minecraft\:block.medium_amethyst_bud.break=true +minecraft\:entity.salmon.flop=true +minecraft\:block.cherry_sapling.place=true +minecraft\:block.mud_bricks.hit=true +minecraft\:block.iron_door.close=true +minecraft\:block.mangrove_roots.fall=true +minecraft\:item.armor.equip_gold=true +minecraft\:block.sculk_shrieker.break=true +minecraft\:block.soul_sand.break=true +friendsandfoes\:entity.glare.eat=true +naturalist\:entity.elephant.hurt=true +rogues\:slice_and_dice=true +mythicmounts\:direwolf_ambient=true +minecraft\:entity.generic.drink=true +minecraft\:entity.ghast.hurt=true +adventurez\:baby_deer_idle=true +soulsweapons\:night_shade_death=true +minecraft\:block.packed_mud.place=true +betterend\:betterend.entity.shadow_walker_damage=true +minecraft\:item.bucket.fill_axolotl=true +spell_engine\:generic_healing_release=true +minecraft\:block.azalea_leaves.hit=true +minecells\:weapon.flint.charge=true +mythicmounts\:dragon_hurt=true +minecraft\:block.cave_vines.step=true +minecraft\:entity.goat.step=true +bosses_of_mass_destruction\:void_blossom_hurt=true +simplyswords\:dark_sword_enchant=true +minecraft\:entity.firework_rocket.blast_far=true +minecraft\:music.nether.crimson_forest=true +rogues\:whirlwind=true +minecraft\:item.goat_horn.sound.7=false +minecraft\:item.goat_horn.sound.6=false +minecraft\:block.sculk_shrieker.place=true +minecraft\:item.goat_horn.sound.5=false +simplyswords\:elemental_bow_wind_shoot_flyby_03=true +minecraft\:item.goat_horn.sound.4=false +simplyswords\:elemental_bow_wind_shoot_flyby_01=true +minecraft\:block.polished_deepslate.hit=true +simplyswords\:elemental_bow_wind_shoot_flyby_02=true +minecraft\:item.bundle.insert=true +minecraft\:block.nether_bricks.hit=true +minecraft\:block.metal_pressure_plate.click_on=true +adventurez\:flute_call=true +aquamirae\:entity.captain_cornelia.ambient=true +mythicmounts\:courierbird_angry=true +simplyswords\:elemental_bow_sci-fi_shoot_flyby_03=true +simplyswords\:elemental_bow_sci-fi_shoot_flyby_02=true +simplyswords\:elemental_bow_sci-fi_shoot_flyby_01=true +minecraft\:block.moss.break=true +mythicmounts\:ridinglizard_death=true +minecraft\:item.goat_horn.sound.3=false +minecraft\:item.goat_horn.sound.2=false +minecraft\:item.goat_horn.sound.1=false +minecraft\:item.goat_horn.sound.0=false +naturalist\:entity.snake.rattle=true +minecraft\:block.pointed_dripstone.break=true +simplyswords\:magic_sword_block_01=true +minecraft\:block.soul_sand.place=true +simplyswords\:magic_sword_block_02=true +minecraft\:block.nether_wood_button.click_on=true +friendsandfoes\:entity.glare.grumpiness_short=true +guardvillagers\:entity.guard.hurt=true +aquamirae\:entity.golden_moth.catch=true +minecraft\:block.deepslate.fall=true +minecraft\:entity.wandering_trader.drink_milk=true +friendsandfoes\:entity.tuff_golem.move=true +minecraft\:entity.parrot.imitate.creeper=true +mcdw\:echo_sound=true +minecraft\:entity.egg.throw=true +minecraft\:entity.magma_cube.squish=true +wizards\:frost_shard_impact=true +minecraft\:block.wool.break=true +friendsandfoes\:entity.wildfire.hurt=true +minecraft\:entity.skeleton.shoot=true +minecraft\:entity.piglin_brute.step=true +deeperdarker\:block.ancient_vase.hit=true +minecraft\:entity.drowned.death=true +minecraft\:block.weeping_vines.hit=true +archers\:magic_arrow_release=true +minecraft\:block.bamboo_wood.hit=true +minecraft\:entity.bee.hurt=true +minecraft\:block.frogspawn.step=true +minecraft\:block.vine.place=true +minecraft\:item.crossbow.loading_end=true +minecells\:shieldbearer.charge=true +minecraft\:music.overworld.dripstone_caves=true +minecraft\:entity.player.attack.strong=true +minecraft\:block.beehive.shear=true +minecraft\:entity.snow_golem.shoot=true +minecraft\:block.moss.hit=true +minecraft\:entity.panda.pre_sneeze=true +minecraft\:entity.cat.eat=true +betternether\:betternether.mob.jellyfish=true +wizards\:frost_blizzard_casting=true +minecraft\:block.smithing_table.use=true +minecraft\:block.stem.fall=true +minecraft\:block.conduit.activate=true +adventurez\:piglinbeast_shout=true +soulsweapons\:umbral_trespass_sound=true +deeperdarker\:block.sculk_stone.place=true +minecraft\:ui.toast.out=true +friendsandfoes\:entity.tuff_golem.hurt=true +bettercombat\:fist_punch=true +adventurez\:piglinbeast_idle=true +adventurez\:golem_walk=true +minecells\:freeze=true +minecraft\:block.mangrove_roots.step=true +minecraft\:entity.ender_eye.death=true +minecraft\:block.chorus_flower.death=true +minecraft\:block.deepslate_tiles.break=true +minecraft\:entity.vindicator.ambient=true +minecraft\:entity.frog.hurt=true +minecraft\:entity.puffer_fish.blow_up=true +minecraft\:block.basalt.place=true +adventurez\:equip_chest=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 +mythicmounts\:nightmare_angry=true +minecraft\:entity.elder_guardian.flop=true +minecraft\:entity.lightning_bolt.impact=true +minecraft\:entity.panda.cant_breed=true +aquamirae\:entity.captain_cornelia.attack_1=true +minecells\:conjunctivius.shout=true +minecraft\:item.book.page_turn=true +minecraft\:block.pink_petals.hit=true +aquamirae\:entity.captain_cornelia.attack_2=true +minecraft\:entity.bat.hurt=true +minecraft\:entity.fox.sleep=true +minecraft\:block.medium_amethyst_bud.place=true +minecraft\:music.overworld.old_growth_taiga=true +minecraft\:block.sign.waxed_interact_fail=true +minecraft\:entity.glow_squid.death=true +minecraft\:ui.cartography_table.take_result=true +minecraft\:entity.zombie.attack_wooden_door=true +promenade\:entity.sunken_skeleton.hurt=true +minecraft\:entity.illusioner.cast_spell=true +minecraft\:entity.salmon.death=true +minecraft\:entity.hostile.hurt=true +minecraft\:block.anvil.place=true +minecraft\:block.brewing_stand.brew=true +paladins\:battle_banner_presence=true +minecraft\:block.bamboo.break=true +creeperoverhaul\:entity.ocean.creeper.death=true +minecraft\:block.glass.hit=true +minecraft\:block.shroomlight.fall=true +minecraft\:item.crop.plant=true +minecraft\:music_disc.chirp=true +minecraft\:block.frogspawn.hit=true +minecells\:sewers_tentacle.death=true +minecraft\:entity.chicken.hurt=true +minecells\:inquisitor.charge=true +wizards\:arcane_blast_impact=true +archon\:combustion=true +minecraft\:block.furnace.fire_crackle=true +minecells\:leaping_zombie.leap.release=true +minecraft\:entity.horse.step_wood=true +minecraft\:block.note_block.bell=true +minecraft\:block.nether_wood.hit=true +minecraft\:entity.warden.agitated=true +minecraft\:entity.panda.worried_ambient=true +minecraft\:block.copper.step=true +minecraft\:entity.wolf.hurt=true +spell_engine\:generic_fire_release=true +betterend\:betterend.record.eo_dracona=true +adventurez\:eye_death_platform=true +graveyard\:entity.lich.corpse_spell=true +minecraft\:entity.enderman.teleport=true +minecraft\:block.lodestone.hit=true +minecraft\:block.gravel.fall=true +minecraft\:block.pointed_dripstone.step=true +rogues\:shock_powder_release=true +minecraft\:entity.skeleton.death=true +creeperoverhaul\:entity.wood.creeper.hit=true +minecells\:kamikaze.charge=true +minecraft\:block.deepslate_tiles.hit=true +minecraft\:entity.warden.sonic_boom=true +simplyswords\:dark_sword_unfold=true +minecraft\:entity.llama.angry=true +minecraft\:entity.glow_item_frame.add_item=true +vc_gliders\:space_glide=true +minecraft\:entity.wither.spawn=true +minecraft\:block.wool.place=true +minecraft\:block.stem.step=true +bosses_of_mass_destruction\:void_spike_indicator=true +minecraft\:block.hanging_sign.break=true +deeperdarker\:entity.shattered.ambient=true +minecraft\:block.gravel.break=true +minecraft\:block.vine.break=true +mythicmounts\:summoning_staff_links=true +minecraft\:entity.warden.listening=true +minecraft\:block.basalt.hit=true +minecraft\:block.smoker.smoke=true +minecraft\:entity.wolf.growl=true +minecraft\:music_disc.5=true +minecraft\:entity.pillager.death=true +minecraft\:entity.ravager.step=true +deeperdarker\:item.sculk_transmitter.error=true +rogues\:shadow_step_depart=true +minecraft\:item.axe.scrape=true +minecraft\:item.crossbow.loading_middle=true +minecraft\:entity.evoker.celebrate=true +minecraft\:block.copper.fall=true +minecraft\:entity.drowned.shoot=true +minecraft\:block.wood.hit=true +minecraft\:entity.zombie.hurt=true +minecraft\:block.composter.ready=true +mythicmounts\:moth_death=true +soulsweapons\:demon_walk=true +mutantmonsters\:entity.mutant_zombie.hurt=true +minecraft\:entity.frog.eat=true +minecraft\:entity.parrot.imitate.illusioner=true +minecraft\:block.nether_bricks.step=true +soulsweapons\:decaying_king_death=true +minecraft\:entity.illusioner.ambient=true +minecraft\:ambient.nether_wastes.additions=true +dungeonnowloading\:chaos_spawner_chain_break=true +adventurez\:magic_shield_hit=true +friendsandfoes\:entity.tuff_golem.glue_off=true +minecraft\:entity.camel.sit=true +minecraft\:entity.parrot.fly=true +simplyswords\:dark_sword_spell=true +minecraft\:entity.boat.paddle_water=true +minecraft\:entity.stray.ambient=true +simplyskills\:spell_arcane_hit=true +minecraft\:entity.horse.step=true +soulsweapons\:soulmass_idle=true +betterend\:betterend.ambient.caves=true +mythicmounts\:book_created=true +soulsweapons\:knight_core_beam=true +minecraft\:entity.enderman.hurt=true +creeperoverhaul\:entity.plant.creeper.explosion=true +minecraft\:item.shovel.flatten=true +minecraft\:item.bottle.empty=true +minecraft\:block.note_block.basedrum=true +mutantmonsters\:entity.mutant_skeleton.death=true +bosses_of_mass_destruction\:obsidilith_prepare_attack=true +minecraft\:block.sculk.charge=true +aquamirae\:item.terrible_sword=true +bingus\:bingusmeow=true +minecraft\:entity.item_frame.rotate_item=true +minecraft\:item.axe.strip=true +adventurez\:mammoth_hit=true +naturalist\:entity.giraffe.ambient=true +minecraft\:entity.axolotl.idle_air=true +minecraft\:block.netherrack.step=true +bosses_of_mass_destruction\:gauntlet_clink=true +graveyard\:block.bone.placed=true +minecells\:shocker.release=true +minecells\:concierge.leap.land=true +minecraft\:entity.puffer_fish.ambient=true +minecells\:kamikaze.wake=true +minecraft\:entity.panda.hurt=true +minecraft\:block.powder_snow.step=true +minecraft\:entity.shulker.close=true +minecraft\:block.shroomlight.step=true +minecraft\:entity.ender_eye.launch=true +minecraft\:block.bamboo.place=true +minecraft\:block.pointed_dripstone.drip_water_into_cauldron=true +minecraft\:block.shulker_box.open=true +minecells\:conjunctivius.dying=true +minecraft\:block.piston.extend=true +minecraft\:entity.slime.attack=true +minecraft\:block.rooted_dirt.break=true +minecraft\:entity.goat.ram_impact=true +minecells\:mutated_bat.release=true +paladins\:plate_equip=true +minecraft\:entity.warden.hurt=true +wizards\:fire_breath_release=true +minecraft\:ui.stonecutter.take_result=true +minecraft\:block.wool.step=true +mythicmounts\:archelon_angry=true +minecraft\:block.bamboo_wood_fence_gate.open=true +friendsandfoes\:entity.iceologer.prepare_summon=true +simplyskills\:spell_arcane_nova=true +minecraft\:block.cherry_wood_hanging_sign.break=true +minecraft\:entity.creeper.hurt=true +minecraft\:block.note_block.imitate.piglin=true +mythicmounts\:direwolf_angry=true +paladins\:battle_banner_release=true +minecraft\:item.bucket.empty_axolotl=true +minecraft\:block.tripwire.click_off=true +simplyswords\:elemental_sword_water_attack_01=true +minecraft\:entity.wandering_trader.ambient=true +betternether\:betternether.ambient.mushroom_forest=true +simplyswords\:elemental_sword_water_attack_02=true +minecraft\:block.iron_trapdoor.open=true +simplyswords\:elemental_sword_water_attack_03=true +minecraft\:music.nether.warped_forest=true +aquamirae\:item.scroll.use=true +minecraft\:block.suspicious_sand.step=true +minecraft\:entity.piglin_brute.angry=true +minecraft\:block.bamboo_wood_door.close=true +minecraft\:entity.spider.hurt=true +minecraft\:entity.witch.drink=true +naturalist\:entity.duck.step=true +minecraft\:entity.player.splash.high_speed=true +creeperoverhaul\:entity.ocean.creeper.deflate=true +bosses_of_mass_destruction\:spore_ball_land=true +minecraft\:entity.donkey.hurt=true +naturalist\:entity.zebra.eat=true +naturalist\:entity.boar.ambient=true +minecraft\:entity.sniffer.eat=true +minecraft\:entity.snow_golem.hurt=true +friendsandfoes\:entity.glare.shake=true +minecraft\:block.bamboo_wood_fence_gate.close=true +minecraft\:block.nether_bricks.fall=true +minecraft\:block.beacon.power_select=true +minecraft\:block.suspicious_sand.break=true +friendsandfoes\:entity.mauler.bite=true +minecells\:weapon.katana.charge=true +adventurez\:amethyst_golem_death=true +minecraft\:block.snow.step=true +minecraft\:block.suspicious_gravel.hit=true +artifacts\:entity.mimic.close=true +minecraft\:block.anvil.use=true +dungeonnowloading\:hollow_ambient=true +minecraft\:item.goat_horn.play=true +minecraft\:entity.minecart.inside=true +minecraft\:entity.wither.hurt=true +minecraft\:block.nylium.place=true +minecraft\:entity.shulker.ambient=true +minecraft\:entity.tadpole.hurt=true +minecraft\:block.big_dripleaf.tilt_up=true +deeperdarker\:entity.shriek_worm.ambient=true +naturalist\:entity.alligator.egg_crack=true +minecraft\:block.froglight.step=true +minecraft\:block.suspicious_sand.fall=true +minecraft\:block.sculk_sensor.clicking=true +minecraft\:entity.villager.hurt=true +minecraft\:block.suspicious_sand.place=true +minecraft\:block.coral_block.hit=true +creeperoverhaul\:entity.sand.creeper.death=true +naturalist\:entity.bird.ambient_bluejay=true +minecraft\:entity.pillager.hurt=true +mythicmounts\:nudibranch_hurt=true +minecraft\:entity.cod.hurt=true +minecraft\:entity.parrot.imitate.skeleton=true +minecraft\:entity.piglin.angry=true +soulsweapons\:darkness_rise=true +minecraft\:entity.zoglin.angry=true +minecraft\:entity.glow_item_frame.rotate_item=true +friendsandfoes\:entity.moobloom.convert=true +naturalist\:entity.zebra.death=true +minecraft\:block.mangrove_roots.hit=true +minecraft\:block.powder_snow.fall=true +minecraft\:entity.warden.attack_impact=true +minecraft\:block.muddy_mangrove_roots.break=true +minecraft\:block.azalea.place=true +minecraft\:entity.ravager.ambient=true +mutantmonsters\:entity.mutant_snow_golem.hurt=true +adventurez\:deer_hurt=true +simplyskills\:spell_slash_02=true +minecraft\:entity.strider.death=true +minecraft\:ambient.underwater.exit=true +creeperoverhaul\:entity.ocean.creeper.hurt_inflated=true +minecraft\:entity.parrot.imitate.stray=true +minecraft\:entity.slime.jump=true +bettercombat\:mace_slash=true +mythicmounts\:groundlizard_angry=true +mythicmounts\:feather_drops=true +minecraft\:item.brush.brushing.sand=true +adventurez\:whale_hurt=true +deeperdarker\:item.sculk_transmitter.open=true +minecraft\:entity.mule.hurt=true +naturalist\:entity.rubber_ducky.death=true +vc_gliders\:incoming_lightning=true +minecraft\:block.rooted_dirt.step=true +minecraft\:entity.axolotl.hurt=true +minecraft\:entity.villager.no=true +adventurez\:hog_idle=true +aquamirae\:record.forsaken_drownage=true +minecraft\:block.azalea.hit=true +adventurez\:whale_death=true +minecraft\:music.overworld.swamp=true +minecraft\:music.creative=true +minecraft\:entity.villager.work_fletcher=true +minecraft\:entity.villager.work_mason=true +minecraft\:entity.skeleton.converted_to_stray=true +adventurez\:fungus_idle=true +minecells\:shock=true +naturalist\:entity.bear.hurt_baby=true +minecraft\:entity.allay.death=true +minecraft\:block.spore_blossom.step=true +minecraft\:music.overworld.desert=true +wizards\:arcane_missile_impact=true +adventurez\:amethyst_golem_walk=true +minecraft\:block.suspicious_sand.hit=true +minecraft\:block.wooden_door.close=true +graveyard\:entity.nameless_hanged.interact=true +minecraft\:block.nylium.break=true +betternether\:betternether.ambient.swampland=true +deeperdarker\:block.ancient_vase.break=true +minecraft\:item.axe.wax_off=true +friendsandfoes\:entity.iceologer.death=true +naturalist\:entity.rubber_ducky.ambient=true +minecraft\:entity.evoker.cast_spell=true +minecraft\:particle.soul_escape=true +minecraft\:block.chiseled_bookshelf.step=true +minecraft\:block.froglight.fall=true +simplyswords\:dark_sword_block=true +spell_engine\:generic_wind_charging=true +minecraft\:block.honey_block.place=true +minecraft\:entity.mule.chest=true +minecraft\:block.scaffolding.place=true +creeperoverhaul\:entity.sand.creeper.prime=true +minecraft\:block.netherrack.hit=true +minecraft\:entity.wandering_trader.drink_potion=true +betterend\:betterend.music.openspace=true +bosses_of_mass_destruction\:lich_death=true +minecraft\:block.snow.fall=true +naturalist\:entity.firefly.hide=true +minecraft\:entity.tropical_fish.hurt=true +minecraft\:block.cherry_sapling.break=true +minecraft\:entity.polar_bear.death=true +minecraft\:block.pink_petals.fall=true +graveyard\:entity.nightmare.hurt=true +wizards\:arcane_beam_start=true +archon\:gust=true +naturalist\:entity.zebra.hurt=true +dungeonnowloading\:whimper_ambient=true +simplyskills\:spell_slash=true +minecraft\:block.cherry_wood_hanging_sign.hit=true +minecraft\:music.overworld.deep_dark=true +naturalist\:entity.bear.sniff=true +adventurez\:golem_death=true +betterend\:betterend.ambient.sulphur_springs=true +minecraft\:block.chiseled_bookshelf.place=true +minecraft\:block.cherry_wood_door.open=true +minecraft\:item.lodestone_compass.lock=true +minecraft\:block.note_block.imitate.skeleton=true +simplyswords\:magic_bow_charge_short_version=true +bosses_of_mass_destruction\:missile_shoot=true +minecraft\:block.rooted_dirt.fall=true +minecraft\:block.lantern.hit=true +minecraft\:entity.sniffer.idle=true +minecraft\:block.grass.fall=true +simplyswords\:magic_bow_charge_long_version=true +minecraft\:entity.evoker_fangs.attack=true +paladins\:holy_barrier_impact=true +minecraft\:entity.witch.throw=true +archers\:bow_pull=true +minecraft\:block.crop.break=true +mutantmonsters\:entity.endersoul_clone.teleport=true +minecraft\:entity.donkey.chest=true +adventurez\:piglinbeast_walk=true +minecraft\:item.brush.brushing.generic=true +minecraft\:block.cherry_leaves.step=true +minecraft\:block.cherry_wood_hanging_sign.place=true +adventurez\:small_golem_hit=true +mcwwindows\:bars_open=true +minecraft\:entity.zombie.destroy_egg=true +minecraft\:entity.drowned.step=true +minecraft\:block.muddy_mangrove_roots.hit=true +adventurez\:mammoth_idle=true +minecraft\:block.wool.fall=true +minecraft\:entity.endermite.step=true +minecraft\:entity.parrot.imitate.piglin_brute=true +aquamirae\:music.forsaken_drownage=true +bosses_of_mass_destruction\:obsidilith_death=true +simplyswords\:magic_bow_pull_back_short_version_03=true +minecraft\:entity.shulker_bullet.hit=true +adventurez\:dragon_idle=true +simplyskills\:spell_radiant_cast=true +minecraft\:block.note_block.iron_xylophone=true +minecraft\:entity.vindicator.death=true +simplyswords\:magic_bow_pull_back_short_version_02=true +minecraft\:block.nether_bricks.break=true +simplyswords\:magic_bow_pull_back_short_version_01=true +minecraft\:entity.warden.emerge=true +minecraft\:block.small_dripleaf.hit=true +minecraft\:ambient.soul_sand_valley.loop=true +naturalist\:entity.rubber_ducky.hurt=true +minecraft\:item.armor.equip_netherite=true +soulsweapons\:day_stalker_spin_empowered=true +simplyswords\:dark_sword_attack_01=true +minecraft\:item.brush.brushing.sand.complete=true +simplyswords\:dark_sword_attack_03=true +simplyswords\:dark_sword_attack_02=true +naturalist\:item.bucket.empty_snail=true +mcda\:dodge=true +naturalist\:entity.bird.hurt=true +graveyard\:entity.nameless_hanged.ambient=true +adventurez\:mammoth_baby_idle=true +minecraft\:block.barrel.open=true +wizards\:arcane_blast_release=true +minecraft\:entity.phantom.bite=true +minecraft\:entity.sheep.death=true +minecraft\:block.grass.step=true +minecells\:conjunctivius.move=true +convenientdecor\:gnome_plushie_squish=true +minecraft\:entity.dragon_fireball.explode=true +minecraft\:entity.mooshroom.shear=true +graveyard\:entity.revenant.ambient=true +spell_engine\:generic_frost_impact=true +minecraft\:entity.goat.horn_break=true +minecraft\:entity.iron_golem.hurt=true +simplyskills\:gong_warbly=true +minecells\:music.ramparts=true +minecraft\:entity.llama.spit=true +minecraft\:ambient.basalt_deltas.additions=true +minecraft\:entity.goat.milk=true +minecraft\:entity.slime.jump_small=true +adventurez\:soulreaper_hurt=true +deeperdarker\:block.ancient_vase.place=true +minecraft\:entity.frog.lay_spawn=true +friendsandfoes\:entity.wildfire.shoot=true +minecraft\:block.nether_wood_trapdoor.open=true +simplyswords\:magic_sword_attack_04=true +simplyswords\:magic_sword_attack_03=true +minecraft\:block.lantern.place=true +minecraft\:block.moss.place=true +deeperdarker\:entity.stalker.death=true +minecraft\:block.wood.break=true +minecraft\:enchant.thorns.hit=true +mutantmonsters\:entity.creeper_minion.death=true +simplyswords\:magic_sword_attack_02=true +simplyswords\:magic_sword_attack_01=true +bosses_of_mass_destruction\:earthdive_spear_throw=true +graveyard\:entity.ghouling.attack=true +minecells\:concierge.punch.charge=true +minecraft\:block.scaffolding.break=true +minecraft\:block.composter.fill=true +minecraft\:item.book.put=true +friendsandfoes\:entity.wildfire.shield_break=true diff --git a/config/sound_physics_remastered/occlusion.properties b/config/sound_physics_remastered/occlusion.properties new file mode 100644 index 0000000..bc2413f --- /dev/null +++ b/config/sound_physics_remastered/occlusion.properties @@ -0,0 +1,219 @@ +# 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 + +# Mud (Sound Type) +MUD=1.0 +# Lodestone (Sound Type) +LODESTONE=1.0 +# Cherry Wood Hanging Sign (Sound Type) +CHERRY_WOOD_HANGING_SIGN=1.0 +# Medium Amethyst Bud (Sound Type) +MEDIUM_AMETHYST_BUD=0.0 +# Deepslate (Sound Type) +DEEPSLATE=1.0 +# Packed Mud (Sound Type) +PACKED_MUD=1.0 +# Fungus (Sound Type) +FUNGUS=0.0 +# Sculk Sensor (Sound Type) +SCULK_SENSOR=1.0 +# Froglight (Sound Type) +FROGLIGHT=1.0 +# Crop (Sound Type) +CROP=0.0 +# Decorated Pot Cracked (Sound Type) +DECORATED_POT_CRACKED=1.0 +# Pointed Dripstone (Sound Type) +POINTED_DRIPSTONE=0.0 +# Stone (Sound Type) +STONE=1.0 +# Nether Bricks (Sound Type) +NETHER_BRICKS=1.0 +# Scaffolding (Sound Type) +SCAFFOLDING=0.0 +# Nether Wood (Sound Type) +NETHER_WOOD=1.0 +# Grass (Sound Type) +GRASS=1.0 +# Glow Lichen (Sound Type) +GLOW_LICHEN=0.0 +# Nether Wood Hanging Sign (Sound Type) +NETHER_WOOD_HANGING_SIGN=1.0 +# Sculk Catalyst (Sound Type) +SCULK_CATALYST=1.0 +# Gilded Blackstone (Sound Type) +GILDED_BLACKSTONE=1.0 +# Big Dripleaf (Sound Type) +BIG_DRIPLEAF=1.0 +# Decorated Pot (Sound Type) +DECORATED_POT=1.0 +# Nether Ore (Sound Type) +NETHER_ORE=1.0 +# Twisting Vines (Sound Type) +TWISTING_VINES=0.0 +# Tuff (Sound Type) +TUFF=1.0 +# Rooted Dirt (Sound Type) +ROOTED_DIRT=1.0 +# Large Amethyst Bud (Sound Type) +LARGE_AMETHYST_BUD=0.0 +# Polished Deepslate (Sound Type) +POLISHED_DEEPSLATE=1.0 +# Nether Sprouts (Sound Type) +NETHER_SPROUTS=1.0 +# Cherry Wood (Sound Type) +CHERRY_WOOD=1.0 +# Ancient Debris (Sound Type) +ANCIENT_DEBRIS=1.0 +# Soul Soil (Sound Type) +SOUL_SOIL=1.0 +# Copper (Sound Type) +COPPER=1.0 +# Deepslate Bricks (Sound Type) +DEEPSLATE_BRICKS=1.0 +# Wood (Sound Type) +WOOD=1.0 +# Slime Block (Sound Type) +SLIME_BLOCK=1.0 +# Sculk (Sound Type) +SCULK=1.0 +# Glass (Sound Type) +GLASS=0.1 +# Sand (Sound Type) +SAND=1.0 +# Azalea Leaves (Sound Type) +AZALEA_LEAVES=1.0 +# Azalea (Sound Type) +AZALEA=1.0 +# Hanging Sign (Sound Type) +HANGING_SIGN=1.0 +# Suspicious Sand (Sound Type) +SUSPICIOUS_SAND=1.0 +# Nylium (Sound Type) +NYLIUM=1.0 +# Mangrove Roots (Sound Type) +MANGROVE_ROOTS=1.0 +# Bamboo Sapling (Sound Type) +BAMBOO_SAPLING=0.1 +# Amethyst Cluster (Sound Type) +AMETHYST_CLUSTER=1.0 +# Honey Block (Sound Type) +HONEY_BLOCK=0.5 +# Hanging Roots (Sound Type) +HANGING_ROOTS=1.0 +# Lantern (Sound Type) +LANTERN=1.0 +# Muddy Mangrove Roots (Sound Type) +MUDDY_MANGROVE_ROOTS=1.0 +# Bone Block (Sound Type) +BONE_BLOCK=1.0 +# Cherry Leaves (Sound Type) +CHERRY_LEAVES=1.0 +# Chiseled Bookshelf (Sound Type) +CHISELED_BOOKSHELF=1.0 +# Sculk Shrieker (Sound Type) +SCULK_SHRIEKER=1.0 +# Chain (Sound Type) +CHAIN=0.0 +# Soul Sand (Sound Type) +SOUL_SAND=1.0 +# Flowering Azalea (Sound Type) +FLOWERING_AZALEA=1.0 +# Shroomlight (Sound Type) +SHROOMLIGHT=1.0 +# Anvil (Sound Type) +ANVIL=1.0 +# Lily Pad (Sound Type) +LILY_PAD=0.0 +# Ladder (Sound Type) +LADDER=0.0 +# Netherite Block (Sound Type) +NETHERITE_BLOCK=1.0 +# Spore Blossom (Sound Type) +SPORE_BLOSSOM=0.0 +# Calcite (Sound Type) +CALCITE=1.0 +# Cherry Sapling (Sound Type) +CHERRY_SAPLING=1.0 +# Bamboo Wood Hanging Sign (Sound Type) +BAMBOO_WOOD_HANGING_SIGN=1.0 +# Bamboo (Sound Type) +BAMBOO=0.1 +# Suspicious Gravel (Sound Type) +SUSPICIOUS_GRAVEL=1.0 +# Moss (Sound Type) +MOSS=0.75 +# Wet Grass (Sound Type) +WET_GRASS=0.1 +# Cave Vines (Sound Type) +CAVE_VINES=1.0 +# Netherrack (Sound Type) +NETHERRACK=1.0 +# Gravel (Sound Type) +GRAVEL=1.0 +# Mud Bricks (Sound Type) +MUD_BRICKS=1.0 +# Small Dripleaf (Sound Type) +SMALL_DRIPLEAF=0.0 +# Weeping Vines (Sound Type) +WEEPING_VINES=0.0 +# Basalt (Sound Type) +BASALT=1.0 +# Candle (Sound Type) +CANDLE=1.0 +# Frogspawn (Sound Type) +FROGSPAWN=1.0 +# Sculk Vein (Sound Type) +SCULK_VEIN=1.0 +# Metal (Sound Type) +METAL=1.0 +# Snow (Sound Type) +SNOW=0.1 +# Small Amethyst Bud (Sound Type) +SMALL_AMETHYST_BUD=0.0 +# Stem (Sound Type) +STEM=1.0 +# Amethyst (Sound Type) +AMETHYST=1.0 +# Bamboo Wood (Sound Type) +BAMBOO_WOOD=1.0 +# Wart Block (Sound Type) +WART_BLOCK=1.0 +# Vine (Sound Type) +VINE=0.0 +# Nether Wart (Sound Type) +NETHER_WART=1.0 +# Dripstone Block (Sound Type) +DRIPSTONE_BLOCK=1.0 +# Moss Carpet (Sound Type) +MOSS_CARPET=0.1 +# Nether Gold Ore (Sound Type) +NETHER_GOLD_ORE=1.0 +# Coral Block (Sound Type) +CORAL_BLOCK=1.0 +# Deepslate Tiles (Sound Type) +DEEPSLATE_TILES=1.0 +# Powder Snow (Sound Type) +POWDER_SNOW=0.1 +# Roots (Sound Type) +ROOTS=0.0 +# Hard Crop (Sound Type) +HARD_CROP=1.0 +# Wool (Sound Type) +WOOL=1.5 +# Sweet Berry Bush (Sound Type) +SWEET_BERRY_BUSH=0.0 +# Water (Block) +minecraft\:water=0.25 +# Lava (Block) +minecraft\:lava=0.75 +# Jukebox (Block) +minecraft\:jukebox=0.0 diff --git a/config/sound_physics_remastered/reflectivity.properties b/config/sound_physics_remastered/reflectivity.properties new file mode 100644 index 0000000..b3f3f63 --- /dev/null +++ b/config/sound_physics_remastered/reflectivity.properties @@ -0,0 +1,213 @@ +# 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 + +# Mud (Sound Type) +MUD=0.5 +# Lodestone (Sound Type) +LODESTONE=0.5 +# Cherry Wood Hanging Sign (Sound Type) +CHERRY_WOOD_HANGING_SIGN=0.5 +# Medium Amethyst Bud (Sound Type) +MEDIUM_AMETHYST_BUD=0.5 +# Deepslate (Sound Type) +DEEPSLATE=1.5 +# Packed Mud (Sound Type) +PACKED_MUD=0.5 +# Fungus (Sound Type) +FUNGUS=0.5 +# Sculk Sensor (Sound Type) +SCULK_SENSOR=0.5 +# Froglight (Sound Type) +FROGLIGHT=0.5 +# Crop (Sound Type) +CROP=0.5 +# Decorated Pot Cracked (Sound Type) +DECORATED_POT_CRACKED=0.5 +# Pointed Dripstone (Sound Type) +POINTED_DRIPSTONE=0.5 +# Stone (Sound Type) +STONE=1.5 +# Nether Bricks (Sound Type) +NETHER_BRICKS=1.5 +# Scaffolding (Sound Type) +SCAFFOLDING=0.5 +# Nether Wood (Sound Type) +NETHER_WOOD=0.5 +# Grass (Sound Type) +GRASS=0.3 +# Glow Lichen (Sound Type) +GLOW_LICHEN=0.5 +# Nether Wood Hanging Sign (Sound Type) +NETHER_WOOD_HANGING_SIGN=0.5 +# Sculk Catalyst (Sound Type) +SCULK_CATALYST=0.5 +# Gilded Blackstone (Sound Type) +GILDED_BLACKSTONE=0.5 +# Big Dripleaf (Sound Type) +BIG_DRIPLEAF=0.5 +# Decorated Pot (Sound Type) +DECORATED_POT=0.5 +# Nether Ore (Sound Type) +NETHER_ORE=1.1 +# Twisting Vines (Sound Type) +TWISTING_VINES=0.5 +# Tuff (Sound Type) +TUFF=1.5 +# Rooted Dirt (Sound Type) +ROOTED_DIRT=0.5 +# Large Amethyst Bud (Sound Type) +LARGE_AMETHYST_BUD=0.5 +# Polished Deepslate (Sound Type) +POLISHED_DEEPSLATE=1.5 +# Nether Sprouts (Sound Type) +NETHER_SPROUTS=0.5 +# Cherry Wood (Sound Type) +CHERRY_WOOD=0.5 +# Ancient Debris (Sound Type) +ANCIENT_DEBRIS=0.5 +# Soul Soil (Sound Type) +SOUL_SOIL=0.2 +# Copper (Sound Type) +COPPER=1.25 +# Deepslate Bricks (Sound Type) +DEEPSLATE_BRICKS=1.5 +# Wood (Sound Type) +WOOD=0.4 +# Slime Block (Sound Type) +SLIME_BLOCK=0.5 +# Sculk (Sound Type) +SCULK=0.5 +# Glass (Sound Type) +GLASS=0.75 +# Sand (Sound Type) +SAND=0.2 +# Azalea Leaves (Sound Type) +AZALEA_LEAVES=0.5 +# Azalea (Sound Type) +AZALEA=0.5 +# Hanging Sign (Sound Type) +HANGING_SIGN=0.5 +# Suspicious Sand (Sound Type) +SUSPICIOUS_SAND=0.5 +# Nylium (Sound Type) +NYLIUM=0.5 +# Mangrove Roots (Sound Type) +MANGROVE_ROOTS=0.5 +# Bamboo Sapling (Sound Type) +BAMBOO_SAPLING=0.5 +# Amethyst Cluster (Sound Type) +AMETHYST_CLUSTER=0.5 +# Honey Block (Sound Type) +HONEY_BLOCK=0.1 +# Hanging Roots (Sound Type) +HANGING_ROOTS=0.5 +# Lantern (Sound Type) +LANTERN=0.5 +# Muddy Mangrove Roots (Sound Type) +MUDDY_MANGROVE_ROOTS=0.5 +# Bone Block (Sound Type) +BONE_BLOCK=1.5 +# Cherry Leaves (Sound Type) +CHERRY_LEAVES=0.5 +# Chiseled Bookshelf (Sound Type) +CHISELED_BOOKSHELF=0.5 +# Sculk Shrieker (Sound Type) +SCULK_SHRIEKER=0.5 +# Chain (Sound Type) +CHAIN=0.5 +# Soul Sand (Sound Type) +SOUL_SAND=0.2 +# Flowering Azalea (Sound Type) +FLOWERING_AZALEA=0.5 +# Shroomlight (Sound Type) +SHROOMLIGHT=0.5 +# Anvil (Sound Type) +ANVIL=0.5 +# Lily Pad (Sound Type) +LILY_PAD=0.5 +# Ladder (Sound Type) +LADDER=0.5 +# Netherite Block (Sound Type) +NETHERITE_BLOCK=1.5 +# Spore Blossom (Sound Type) +SPORE_BLOSSOM=0.5 +# Calcite (Sound Type) +CALCITE=1.5 +# Cherry Sapling (Sound Type) +CHERRY_SAPLING=0.5 +# Bamboo Wood Hanging Sign (Sound Type) +BAMBOO_WOOD_HANGING_SIGN=0.5 +# Bamboo (Sound Type) +BAMBOO=0.5 +# Suspicious Gravel (Sound Type) +SUSPICIOUS_GRAVEL=0.5 +# Moss (Sound Type) +MOSS=0.1 +# Wet Grass (Sound Type) +WET_GRASS=0.5 +# Cave Vines (Sound Type) +CAVE_VINES=0.5 +# Netherrack (Sound Type) +NETHERRACK=1.1 +# Gravel (Sound Type) +GRAVEL=0.3 +# Mud Bricks (Sound Type) +MUD_BRICKS=0.5 +# Small Dripleaf (Sound Type) +SMALL_DRIPLEAF=0.5 +# Weeping Vines (Sound Type) +WEEPING_VINES=0.5 +# Basalt (Sound Type) +BASALT=1.5 +# Candle (Sound Type) +CANDLE=0.5 +# Frogspawn (Sound Type) +FROGSPAWN=0.5 +# Sculk Vein (Sound Type) +SCULK_VEIN=0.5 +# Metal (Sound Type) +METAL=1.25 +# Snow (Sound Type) +SNOW=0.15 +# Small Amethyst Bud (Sound Type) +SMALL_AMETHYST_BUD=0.5 +# Stem (Sound Type) +STEM=0.4 +# Amethyst (Sound Type) +AMETHYST=1.5 +# Bamboo Wood (Sound Type) +BAMBOO_WOOD=0.5 +# Wart Block (Sound Type) +WART_BLOCK=0.5 +# Vine (Sound Type) +VINE=0.5 +# Nether Wart (Sound Type) +NETHER_WART=0.5 +# Dripstone Block (Sound Type) +DRIPSTONE_BLOCK=0.5 +# Moss Carpet (Sound Type) +MOSS_CARPET=0.5 +# Nether Gold Ore (Sound Type) +NETHER_GOLD_ORE=1.1 +# Coral Block (Sound Type) +CORAL_BLOCK=0.2 +# Deepslate Tiles (Sound Type) +DEEPSLATE_TILES=1.5 +# Powder Snow (Sound Type) +POWDER_SNOW=0.5 +# Roots (Sound Type) +ROOTS=0.5 +# Hard Crop (Sound Type) +HARD_CROP=0.5 +# Wool (Sound Type) +WOOL=0.1 +# Sweet Berry Bush (Sound Type) +SWEET_BERRY_BUSH=0.5 diff --git a/config/sound_physics_remastered/soundphysics.properties b/config/sound_physics_remastered/soundphysics.properties new file mode 100644 index 0000000..e4cb044 --- /dev/null +++ b/config/sound_physics_remastered/soundphysics.properties @@ -0,0 +1,94 @@ +# Enables/Disables all sound effects +enabled=true +# Affects how quiet a sound gets based on distance +# Lower values mean distant sounds are louder +# This setting requires you to be in singleplayer or having the mod installed on the server +# 1.0 is the physically correct value +attenuation_factor=1.0 +# The volume of simulated reverberations +reverb_gain=1.0 +# The brightness of reverberation +# Higher values result in more high frequencies in reverberation +# Lower values give a more muffled sound to the reverb +reverb_brightness=1.0 +# The distance of reverb relative to the sound distance +reverb_distance=1.5 +# The amount of sound that will be absorbed when traveling through blocks +block_absorption=1.0 +# Higher values mean smaller objects won't be considered as occluding +occlusion_variation=0.35 +# The default amount of sound reflectance energy for all blocks +# Lower values result in more conservative reverb simulation with shorter reverb tails +# Higher values result in more generous reverb simulation with higher reverb tails +default_block_reflectivity=0.5 +# The default amount of occlusion for all blocks +# Lower values will result in sounds being less muffled through walls +# Higher values mean sounds will be not audible though thicker walls +default_block_occlusion_factor=1.0 +# Minecraft won't allow sounds to play past a certain distance +# This parameter is a multiplier for how far away a sound source is allowed to be in order for it to actually play +# This setting only takes affect in singleplayer worlds and when installed on the server +sound_distance_allowance=4.0 +# A value controlling the amount that air absorbs high frequencies with distance +# A value of 1.0 is physically correct for air with normal humidity and temperature +# Higher values mean air will absorb more high frequencies with distance +# 0 disables this effect +air_absorption=1.0 +# How much sound is filtered when the player is underwater +# 0.0 means no filter +# 1.0 means fully filtered +underwater_filter=0.25 +# Whether sounds like cave, nether or underwater ambient sounds should have sound physics +evaluate_ambient_sounds=false +# The number of rays to trace to determine reverberation for each sound source +# More rays provides more consistent tracing results but takes more time to calculate +# Decrease this value if you experience lag spikes when sounds play +environment_evaluation_ray_count=32 +# The number of rays bounces to trace to determine reverberation for each sound source +# More bounces provides more echo and sound ducting but takes more time to calculate +# Decrease this value if you experience lag spikes when sounds play +environment_evaluation_ray_bounces=4 +# If sound hits a non-full-square side, block occlusion is multiplied by this +non_full_block_occlusion_factor=0.25 +# The maximum amount of rays to determine occlusion +# Directly correlates to the amount of blocks between walls that are considered +max_occlusion_rays=16 +# The amount at which occlusion is capped +max_occlusion=64.0 +# If enabled, the occlusion calculation only uses one path between the sound source and the listener instead of 9 +strict_occlusion=false +# Whether to try calculating where the sound should come from based on reflections +sound_direction_evaluation=true +# Skip redirecting non-occluded sounds (the ones you can see directly) +redirect_non_occluded_sounds=true +# If music discs or other longer sounds should be frequently reevaluated +update_moving_sounds=false +# The interval in ticks that moving sounds are reevaluated +# Lower values mean more frequent reevaluation but also more lag +# This option only takes effect if update_moving_sounds is enabled +sound_update_interval=5 +# Disable level clone and cache. This will fall back to original main thread access. +# WARNING! Enabling this will cause instability and issues with other mods. +unsafe_level_access=false +# The radius of chunks to clone for level access +level_clone_range=4 +# The maximum number of ticks to retain the cloned level in the cache +level_clone_max_retain_ticks=20 +# The maximum distance a player can move from the cloned origin before invalidation +level_clone_max_retain_block_distance=16 +# Enables debug logging +debug_logging=false +# Provides more information about occlusion in the logs +occlusion_logging=false +# Provides more information about the environment calculation in the logs +environment_logging=false +# Provides more information about how long computations take +performance_logging=false +# If enabled, the path of the sound will be rendered in game +render_sound_bounces=false +# If enabled, occlusion will be visualized in game +render_occlusion=false +# Enables/Disables sound effects for Simple Voice Chat audio +simple_voice_chat_integration=true +# Enables/Disables hearing your own echo with Simple Voice Chat +simple_voice_chat_hear_self=false diff --git a/config/spell_engine/client.json5 b/config/spell_engine/client.json5 new file mode 100644 index 0000000..f4acd64 --- /dev/null +++ b/config/spell_engine/client.json5 @@ -0,0 +1,24 @@ +{ + "holdToCastChannelled": true, + "holdToCastCharged": true, + "autoSwapHands": true, + "spellHotbarShowsOffhand": true, + "spellHotbar_1_defer": "USE_KEY", + "spellHotbar_2_defer": "HOTBAR_KEY_2", + "spellHotbar_3_defer": "HOTBAR_KEY_3", + "spellHotbar_4_defer": "HOTBAR_KEY_4", + "spellHotbar_5_defer": "HOTBAR_KEY_5", + "spellHotbar_6_defer": "HOTBAR_KEY_6", + "spellHotbar_7_defer": "HOTBAR_KEY_7", + "spellHotbar_8_defer": "HOTBAR_KEY_8", + "spellHotbar_9_defer": "HOTBAR_KEY_9", + "sneakingByPassSpellHotbar": false, + "useKeyHighPriority": false, + "highlightTarget": true, + "stickyTarget": true, + "filterInvalidTargets": true, + "alwaysShowFullTooltip": false, + "showSpellBindingTooltip": true, + "showSpellCastErrors": true, + "shoulderSurfingAdaptiveWhileUse": true +} \ No newline at end of file diff --git a/config/spell_engine/enchantments.json b/config/spell_engine/enchantments.json new file mode 100644 index 0000000..85c0863 --- /dev/null +++ b/config/spell_engine/enchantments.json @@ -0,0 +1,9 @@ +{ + "infinity": { + "enabled": true, + "max_level": 1, + "min_cost": 20, + "step_cost": 30, + "bonus_per_level": 1.0 + } +} \ No newline at end of file diff --git a/config/spell_engine/hud_config.json b/config/spell_engine/hud_config.json new file mode 100644 index 0000000..0023e2a --- /dev/null +++ b/config/spell_engine/hud_config.json @@ -0,0 +1,40 @@ +{ + "castbar": { + "base": { + "origin": "BOTTOM", + "offset": { + "field_1343": 0.0, + "field_1342": -27.0 + } + }, + "target": { + "visible": false, + "offset": { + "field_1343": 0.0, + "field_1342": -12.0 + } + }, + "icon": { + "visible": true, + "offset": { + "field_1343": -8.0, + "field_1342": -25.0 + } + }, + "width": 172 + }, + "hotbar": { + "origin": "BOTTOM", + "offset": { + "field_1343": -170.0, + "field_1342": -11.0 + } + }, + "error_message": { + "origin": "BOTTOM", + "offset": { + "field_1343": 0.0, + "field_1342": -80.0 + } + } +} \ No newline at end of file diff --git a/config/spell_engine/server.json5 b/config/spell_engine/server.json5 new file mode 100644 index 0000000..038aace --- /dev/null +++ b/config/spell_engine/server.json5 @@ -0,0 +1,63 @@ +{ + // Applied as multiplier on top of spell.cast.movement_speed. Default value of 1.0 means no change. + "movement_multiplier_speed_while_casting": 1.0, + // Allow spells to bypass invulnerability frames. This is required in order for high attack frequency spells (such as beams) to work. + "bypass_iframes": true, + // Spell haste reduces the cooldown time of abilities + "haste_affects_cooldown": true, + // Spell costs exhausts (hunger) will be multiplied with this value. Set `0` for no exhaust. + "spell_cost_exhaust_multiplier": 1.0, + // Spells should cost items. Set `false` to remove rune (or other item) cost from all spells. + "spell_cost_item_allowed": true, + // Spells should damage items on use. Set `false` to disable. + "spell_cost_durability_allowed": true, + // The time in ticks of global cooldown to apply to all instant cast spells when casted. + "spell_instant_cast_gcd": 0, + // Players cannot unequip a spell book, if one of the spells in it is on cooldown. + "spell_book_cooldown_lock": true, + // If set true, a Fireball doesn't collide with an ally, a healing projectile doesn't collide with an enemy + "projectiles_pass_thru_irrelevant_targets": true, + // Spell book creation level requirement + "spell_book_binding_level_requirement": 1, + // Spell book creation level cost + "spell_book_binding_level_cost": 1, + // Should the player be able to cast spells from the offhand spell book? + "spell_book_offhand": false, + // Auto swap Bow & Spear cooldown ticks to apply for attack and itemUse + "auto_swap_cooldown": 5, + // Apply `Spell Casting from Spell Book` capability to anything that subclasses Sword + "add_spell_casting_to_swords": true, + // Apply `Spell Casting from Spell Book` capability to any item matching this regex. (Not applied of empty) + "add_spell_casting_regex": "", + // Do not apply `Spell Casting from Spell Book` capability to any item matching this regex. (Not applied of empty) + "blacklist_spell_casting_regex": "", + /* Relations determine which cases the effect of a player casted spell can effect a target. + +----------------+-----------+---------------+----------+----------+--------+ + | | FRIENDLY | SEMI_FRIENDLY | NEUTRAL | HOSTILE | MIXED | + +----------------+-----------+---------------+----------+----------+--------+ + | DIRECT DAMAGE | 🚫 | ✅ | ✅ | ✅ | ✅ | + | AREA DAMAGE | 🚫 | 🚫 | 🚫 | ✅ | ✅ | + | DIRECT HEALING | ✅ | ✅ | ✅ | 🚫 | ✅ | + | AREA HEALING | ✅ | ✅ | 🚫 | 🚫 | ✅ | + +----------------+-----------+---------------+----------+----------+--------+ + + The various relation related configs are being checked in the following order: + - `player_relations` + - `player_relation_to_passives` + - `player_relation_to_hostiles` + - `player_relation_to_other` + (The first relation to be found for the target will be applied.) + */ + "player_relations": { + "minecraft:player": "SEMI_FRIENDLY", + "minecraft:villager": "SEMI_FRIENDLY", + "minecraft:iron_golem": "NEUTRAL", + "guardvillagers:guard": "SEMI_FRIENDLY" + }, + // Relation to unspecified entities those are instance of PassiveEntity(Yarn) + "player_relation_to_passives": "HOSTILE", + // Relation to unspecified entities those are instance of HostileEntity(Yarn) + "player_relation_to_hostiles": "HOSTILE", + // Fallback relation + "player_relation_to_other": "HOSTILE" +} \ No newline at end of file diff --git a/config/spell_power/attributes.json b/config/spell_power/attributes.json new file mode 100644 index 0000000..c445a93 --- /dev/null +++ b/config/spell_power/attributes.json @@ -0,0 +1,25 @@ +{ + "attributes_container_injection_scope": "LIVING_ENTITY", + "use_vanilla_magic_damage_type": true, + "base_spell_critical_chance_percentage": 5.0, + "base_spell_critical_damage_percentage": 50.0, + "status_effect_raw_id_starts_at": 730, + "spell_power_effect": { + "uuid": "446cf95e-be63-40d9-ad90-6cc388c08460", + "bonus_per_stack": 0.1 + }, + "secondary_effects": { + "critical_damage": { + "uuid": "0612ed2a-3ce5-11ed-b878-0242ac120002", + "bonus_per_stack": 0.1 + }, + "haste": { + "uuid": "092f4f58-3ce5-11ed-b878-0242ac120002", + "bonus_per_stack": 0.05 + }, + "critical_chance": { + "uuid": "0e0ddd12-0646-42b7-8daf-36b4ccf524df", + "bonus_per_stack": 0.05 + } + } +} \ No newline at end of file diff --git a/config/spell_power/enchantments.json b/config/spell_power/enchantments.json new file mode 100644 index 0000000..30ba744 --- /dev/null +++ b/config/spell_power/enchantments.json @@ -0,0 +1,64 @@ +{ + "allow_stacking": true, + "spell_power": { + "requires_related_attributes": false, + "enabled": true, + "max_level": 5, + "min_cost": 10, + "step_cost": 9, + "bonus_per_level": 0.05 + }, + "soulfrost": { + "requires_related_attributes": true, + "enabled": true, + "max_level": 5, + "min_cost": 10, + "step_cost": 9, + "bonus_per_level": 0.03 + }, + "sunfire": { + "requires_related_attributes": true, + "enabled": true, + "max_level": 5, + "min_cost": 10, + "step_cost": 9, + "bonus_per_level": 0.03 + }, + "energize": { + "requires_related_attributes": true, + "enabled": true, + "max_level": 5, + "min_cost": 10, + "step_cost": 9, + "bonus_per_level": 0.03 + }, + "critical_chance": { + "enabled": true, + "max_level": 5, + "min_cost": 10, + "step_cost": 12, + "bonus_per_level": 0.02 + }, + "critical_damage": { + "enabled": true, + "max_level": 5, + "min_cost": 10, + "step_cost": 12, + "bonus_per_level": 0.05 + }, + "haste": { + "enabled": true, + "max_level": 5, + "min_cost": 15, + "step_cost": 17, + "bonus_per_level": 0.04 + }, + "magic_protection": { + "enabled": true, + "max_level": 4, + "min_cost": 3, + "step_cost": 6, + "bonus_per_level": 2.0 + }, + "schema_version": 4 +} \ No newline at end of file diff --git a/config/starterkit.json5 b/config/starterkit.json5 new file mode 100644 index 0000000..657df5f --- /dev/null +++ b/config/starterkit.json5 @@ -0,0 +1,15 @@ +{ + // When multiple starter kits are added via /starterkit add, there are two ways to distribute them. With this enabled, one is chosen at random. When disabled, players can choose one on first join. + "randomizeMultipleKitsToggle": true, + // Whether items that existed in the inventory, such as books added by other mods, should be added back to the inventory after the kit was set. If disabled, they'll be removed. You can still manually set them via the kit. + "addExistingItemsAfterKitSet": true, + // If potion/mob effect functionality should be enabled. This means that when creating a kit via /sk (add/set), it also saves the active effects the player has. And when handing out the starter kits, it adds the effects to new players. + "usePotionEffectsInStarterKit": true, + // If kit names should be formatted. Each word will be capitalized. + "formatKitNames": true, + "chooseKitText": "%s, you can choose a starter kit!", + // Whether an announcement should be broadcasted to the server whenever a new player makes a kit choice. 'randomizeMultipleKitsToggle' must be disabled, and there must be at least 2 starter kits available. + "announcePlayerKitChoiceInDedicatedServer": true, + // Whether the starter kit should be re-set after the '/ftbteamislands create' command from FTB Team Islands. Does nothing when it's not installed. + "enableFTBIslandCreateCompatibility": true +} \ No newline at end of file diff --git a/config/starterkit/descriptions/Archer.txt b/config/starterkit/descriptions/Archer.txt new file mode 100644 index 0000000..6b9d98f --- /dev/null +++ b/config/starterkit/descriptions/Archer.txt @@ -0,0 +1 @@ +Survive longer by defeating your enemies from a distance. \ No newline at end of file diff --git a/config/starterkit/descriptions/Default.txt b/config/starterkit/descriptions/Default.txt new file mode 100644 index 0000000..cb2fba7 --- /dev/null +++ b/config/starterkit/descriptions/Default.txt @@ -0,0 +1 @@ +Worn by many adventurers over the years. A good pair of boots, the ability to defend yourself and enough food for a few days. \ No newline at end of file diff --git a/config/starterkit/descriptions/Lumberjack.txt b/config/starterkit/descriptions/Lumberjack.txt new file mode 100644 index 0000000..1eeeced --- /dev/null +++ b/config/starterkit/descriptions/Lumberjack.txt @@ -0,0 +1 @@ +There's no need to punch a tree, use an axe instead! \ No newline at end of file diff --git a/config/starterkit/descriptions/Witch.txt b/config/starterkit/descriptions/Witch.txt new file mode 100644 index 0000000..962f001 --- /dev/null +++ b/config/starterkit/descriptions/Witch.txt @@ -0,0 +1 @@ +Has a good mix of potions, useful in many scenarios. \ No newline at end of file diff --git a/config/starterkit/kits/Default.txt b/config/starterkit/kits/Default.txt new file mode 100644 index 0000000..4b0e851 --- /dev/null +++ b/config/starterkit/kits/Default.txt @@ -0,0 +1,42 @@ +'head' : '', +'chest' : '', +'legs' : '', +'feet' : '{Count:1b,id:"minecraft:leather_boots",tag:{Damage:0}}', +'offhand' : '{Count:1b,id:"minecraft:shield",tag:{Damage:0}}', +0 : '{Count:1b,id:"minecraft:wooden_sword",tag:{Damage:0}}', +1 : '{Count:9b,id:"minecraft:bread"}', +2 : '', +3 : '', +4 : '', +5 : '', +6 : '', +7 : '', +8 : '', +9 : '', +10 : '', +11 : '', +12 : '', +13 : '', +14 : '', +15 : '', +16 : '', +17 : '', +18 : '', +19 : '', +20 : '', +21 : '', +22 : '', +23 : '', +24 : '', +25 : '', +26 : '', +27 : '', +28 : '', +29 : '', +30 : '', +31 : '', +32 : '', +33 : '', +34 : '', +35 : '', +'effects' : '', diff --git a/config/starterkit/kits/inactive/Archer.txt b/config/starterkit/kits/inactive/Archer.txt new file mode 100644 index 0000000..08b866b --- /dev/null +++ b/config/starterkit/kits/inactive/Archer.txt @@ -0,0 +1,42 @@ +'head' : '{Count:1b,id:"minecraft:leather_helmet",tag:{Damage:0}}', +'chest' : '', +'legs' : '', +'feet' : '{Count:1b,id:"minecraft:leather_boots",tag:{Damage:0}}', +'offhand' : '', +0 : '{Count:1b,id:"minecraft:bow",tag:{Damage:0,Enchantments:[{id:"minecraft:power",lvl:1s}],RepairCost:1}}', +1 : '', +2 : '', +3 : '', +4 : '', +5 : '', +6 : '', +7 : '{Count:6b,id:"minecraft:baked_potato"}', +8 : '{Count:32b,id:"minecraft:arrow"}', +9 : '', +10 : '', +11 : '', +12 : '', +13 : '', +14 : '', +15 : '', +16 : '', +17 : '', +18 : '', +19 : '', +20 : '', +21 : '', +22 : '', +23 : '', +24 : '', +25 : '', +26 : '', +27 : '', +28 : '', +29 : '', +30 : '', +31 : '', +32 : '', +33 : '', +34 : '', +35 : '', +'effects' : '', diff --git a/config/starterkit/kits/inactive/Lumberjack.txt b/config/starterkit/kits/inactive/Lumberjack.txt new file mode 100644 index 0000000..edd9f3f --- /dev/null +++ b/config/starterkit/kits/inactive/Lumberjack.txt @@ -0,0 +1,42 @@ +'head' : '', +'chest' : '', +'legs' : '', +'feet' : '{Count:1b,id:"minecraft:iron_boots",tag:{Damage:0}}', +'offhand' : '{Count:4b,id:"minecraft:oak_sapling"}', +0 : '{Count:1b,id:"minecraft:iron_axe",tag:{Damage:0,Enchantments:[{id:"minecraft:efficiency",lvl:1s}],RepairCost:1}}', +1 : '', +2 : '', +3 : '', +4 : '', +5 : '', +6 : '', +7 : '', +8 : '{Count:8b,id:"minecraft:cooked_beef"}', +9 : '', +10 : '', +11 : '', +12 : '', +13 : '', +14 : '', +15 : '', +16 : '', +17 : '', +18 : '', +19 : '', +20 : '', +21 : '', +22 : '', +23 : '', +24 : '', +25 : '', +26 : '', +27 : '', +28 : '', +29 : '', +30 : '', +31 : '', +32 : '', +33 : '', +34 : '', +35 : '', +'effects' : '', diff --git a/config/starterkit/kits/inactive/Witch.txt b/config/starterkit/kits/inactive/Witch.txt new file mode 100644 index 0000000..7232493 --- /dev/null +++ b/config/starterkit/kits/inactive/Witch.txt @@ -0,0 +1,42 @@ +'head' : '', +'chest' : '', +'legs' : '', +'feet' : '{Count:1b,id:"minecraft:golden_boots",tag:{Damage:0}}', +'offhand' : '', +0 : '{Count:1b,id:"minecraft:stick"}', +1 : '{Count:16b,id:"minecraft:apple"}', +2 : '', +3 : '{Count:1b,id:"minecraft:splash_potion",tag:{Potion:"minecraft:strong_swiftness"}}', +4 : '{Count:1b,id:"minecraft:splash_potion",tag:{Potion:"minecraft:strong_healing"}}', +5 : '', +6 : '{Count:1b,id:"minecraft:splash_potion",tag:{Potion:"minecraft:strong_poison"}}', +7 : '{Count:1b,id:"minecraft:splash_potion",tag:{Potion:"minecraft:strong_harming"}}', +8 : '{Count:1b,id:"minecraft:splash_potion",tag:{Potion:"minecraft:strong_harming"}}', +9 : '', +10 : '', +11 : '', +12 : '', +13 : '', +14 : '', +15 : '', +16 : '', +17 : '', +18 : '', +19 : '', +20 : '', +21 : '', +22 : '', +23 : '', +24 : '', +25 : '', +26 : '', +27 : '', +28 : '', +29 : '', +30 : '', +31 : '', +32 : '', +33 : '', +34 : '', +35 : '', +'effects' : '', diff --git a/config/tectonic.json b/config/tectonic.json new file mode 100644 index 0000000..40a44bc --- /dev/null +++ b/config/tectonic.json @@ -0,0 +1,26 @@ +{ + "experimental": { + // The increased height setting will change the max Overworld build and generation height to y640. + // The horizontal mountain scale setting will change the thickness of mountain ranges and the spacing between them. + // Lower values = thicker mountain ranges and more space between ranges. 0.15-0.25 is the sweet spot. + // The terrain scale setting will vertically stretch/compress terrain. Higher values = more extreme terrain heights. + "horizontal_mountain_scale": 0.25, + "increased_height": false, + "terrain_scale": 1.125 + }, + "features": { + // Enabling deeper oceans will lower vanilla ocean monuments to compensate for lower depth. + // This DOES NOT apply on Forge 1.18-1.20.1. Ocean monuments will remain at their vanilla levels on those versions. + "deeper_oceans": true, + "desert_dunes": true, + "lava_rivers": true, + "underground_rivers": true + }, + "legacy": { + // Tectonic v1 worlds have old biome data preventing them from being opened in Tectonic v2.1+. + // Enabling legacy mode will add back the biomes and upgrade worlds to the new format upon opening them. + // Once a world is upgraded by opening it, turn off legacy mode. + "enabled": false + }, + "mod_enabled": true +} \ No newline at end of file diff --git a/config/terrablender.toml b/config/terrablender.toml new file mode 100644 index 0000000..2b8b87d --- /dev/null +++ b/config/terrablender.toml @@ -0,0 +1,17 @@ +#General settings +general = {} + +#Generation settings +[generation_settings] + #The size of overworld biome regions from each mod that uses TerraBlender. + #Range: 2-6 + overworld_region_size = 3 + #The weighting of vanilla biome regions in the nether. + #Range: 0-2147483647 + vanilla_nether_region_weight = 10 + #The size of nether biome regions from each mod that uses TerraBlender. + #Range: 2-6 + nether_region_size = 2 + #The weighting of vanilla biome regions in the overworld. + #Range: 0-2147483647 + vanilla_overworld_region_weight = 10 diff --git a/config/things.json5 b/config/things.json5 new file mode 100644 index 0000000..630cdf0 --- /dev/null +++ b/config/things.json5 @@ -0,0 +1,20 @@ +{ + "generateGleamingOre": true, + "appleTrinket": true, + "waxGlandMultiplier": 10.0, + "infernalScepterDurability": 64, + "nerfBeaconsWithMomentum": true, + "renderTrinkets": true, + "renderAppleTrinket": true, + "renderAgglomerationTrinket": true, + "makeLockedContainersUnbreakable": false, + "enableAgglomeration": true, + "enableAgglomerationInvScrollSelection": true, + "displacementTomeFuelConsumption": 1, + "sockPerLevelSpeedAmplifier": 0.019999999552965164, + "effectLevels": { + "mossNecklaceRegen": 2, + "miningGloveMomentum": 2, + "riotGauntletStrength": 1 + } +} \ No newline at end of file diff --git a/config/tierify-client.json5 b/config/tierify-client.json5 new file mode 100644 index 0000000..b1695e9 --- /dev/null +++ b/config/tierify-client.json5 @@ -0,0 +1,10 @@ +{ + // Whether or not to show the reforging tab in the anvil screen. + "showReforgingTab": true, + "xIconPosition": 0, + "yIconPosition": 0, + "tieredTooltip": true, + // Swaps the text with a plate displayed on the item's name. + "showPlatesOnName": true, + "centerName": true +} \ No newline at end of file diff --git a/config/tierify-common.json5 b/config/tierify-common.json5 new file mode 100644 index 0000000..87bd421 --- /dev/null +++ b/config/tierify-common.json5 @@ -0,0 +1,39 @@ +{ + // Items in for example mineshaft chests get modifiers + "lootContainerModifier": true, + // Equipped items on entities get modifiers + "entityItemModifier": true, + // Crafted items get modifiers + "craftingModifier": true, + // Merchant items get modifiers + "merchantModifier": true, + // Decreases the biggest weights by this modifier + "reforgeModifier": 0.9, + // Modify the biggest weights by this modifier per smithing level + "levelzReforgeModifier": 0.01, + // Modify the biggest weights by this modifier per luck + "luckReforgeModifier": 0.02, + // Tier 1 of Reforging (Limestone) + // Qualities here will be able to be reforged onto items while using the Tier 1 reforge material, Limestone by default. Can be changed via the item tag tiered:reforge_tier_1 + "tier_1_qualities": [ + "Common", + "Uncommon", + "Rare" + ], + // Tier 2 of Reforging (Pyrite) + // Qualities here will be able to be reforged onto items while using the Tier 2 reforge material, Pyrite by default. Can be changed via the item tag tiered:reforge_tier_2 + "tier_2_qualities": [ + "Uncommon", + "Rare", + "Epic", + "Legendary" + ], + // Tier 3 of Reforging (Galena) + // Qualities here will be able to be reforged onto items while using the Tier 3 reforge material, Galena by default. Can be changed via the item tag tiered:reforge_tier_3 + "tier_3_qualities": [ + "Rare", + "Epic", + "Legendary", + "Mythic" + ] +} \ No newline at end of file diff --git a/config/tlc.json b/config/tlc.json new file mode 100644 index 0000000..7963813 --- /dev/null +++ b/config/tlc.json @@ -0,0 +1,6 @@ +{ + "common": { + "Generate_Stronghold_Comment": "Enable/Disable the generation of the stronghold", + "GENERATE_STRONGHOLD": false + } +} \ No newline at end of file diff --git a/config/towns_and_towers/structure_enable_or_disable_new.json5 b/config/towns_and_towers/structure_enable_or_disable_new.json5 new file mode 100644 index 0000000..df278cb --- /dev/null +++ b/config/towns_and_towers/structure_enable_or_disable_new.json5 @@ -0,0 +1,88 @@ +/* +This config file makes it possible to switch off any structure from Towns and Towers. Big thanks to Cristelknight for making this all possible. +To disable a structure, simply set the value of that structure to "false". +o change the rarity of a structure category, use the other file in the config. + +LINKS +===== +Curseforge link: https://www.curseforge.com/minecraft/mc-mods/towns-and-towers +Modrinth link: https://modrinth.com/mod/towns-and-towers +PMC link: https://www.planetminecraft.com/data-pack/towns-amp-towers-structure-overhaul/ +GitHub Repository: [NEED TO MAKE ONE] +*/ +{ + // Here you can find all pillager outposts. + "towers": { + "pillager_outpost_badlands": true, + "pillager_outpost_beach": true, + "pillager_outpost_birch_forest": true, + "pillager_outpost_desert": true, + "pillager_outpost_flower_forest": true, + "pillager_outpost_forest": true, + "pillager_outpost_grove": true, + "pillager_outpost_jungle": true, + "pillager_outpost_meadow": true, + "pillager_outpost_mushroom_fields": true, + "pillager_outpost_ocean": true, + "pillager_outpost_old_growth_taiga": true, + "pillager_outpost_savanna": true, + "pillager_outpost_savanna_plateau": true, + "pillager_outpost_snowy_beach": true, + "pillager_outpost_snowy_plains": true, + "pillager_outpost_snowy_slopes": true, + "pillager_outpost_sparse_jungle": true, + "pillager_outpost_sunflower_plains": true, + "pillager_outpost_swamp": true, + "pillager_outpost_taiga": true, + "pillager_outpost_snowy_taiga": true, + "pillager_outpost_wooded_badlands": true, + // Here you can find all pillager outposts which are exclusive to other worldgen mods (ex.: WWOO, Terralith, BoP, BYG, etc.). + "exclusives": { + "pillager_outpost_mediterranean": true, + "pillager_outpost_tudor": true, + "pillager_outpost_classic": true, + "pillager_outpost_oriental": true, + "pillager_outpost_swedish": true, + "pillager_outpost_iberian": true, + "pillager_outpost_rustic": true + } + }, + // Here you can find all structures that aren't villages or outposts. + "other": { + "mimic_desert": true, + "wreckage_ocean": true + }, + // Here you can find all villages. + "towns": { + "village_badlands": true, + "village_beach": true, + "village_birch_forest": true, + "village_flower_forest": true, + "village_forest": true, + "village_snowy_slopes": true, + "village_jungle": true, + "village_meadow": true, + "village_mushroom_fields": true, + "village_ocean": true, + "village_old_growth_taiga": true, + "village_grove": true, + "village_savanna_plateau": true, + "village_sunflower_plains": true, + "village_snowy_taiga": true, + "village_sparse_jungle": true, + "village_swamp": true, + "village_wooded_badlands": true, + // Here you can find all villages which are exclusive to other worldgen mods (ex.: WWOO, Terralith, BoP, BYG, etc.). + "exclusives": { + "village_mediterranean": true, + "village_swedish": true, + "village_tudor": true, + "village_wandering_trader_camp": true, + "village_classic": true, + "village_rustic": true, + "village_iberian": true, + "village_nilotic": true, + "village_piglin": true + } + } +} \ No newline at end of file diff --git a/config/towns_and_towers/structure_rarity_new.json5 b/config/towns_and_towers/structure_rarity_new.json5 new file mode 100644 index 0000000..48dbffc --- /dev/null +++ b/config/towns_and_towers/structure_rarity_new.json5 @@ -0,0 +1,43 @@ +/* +This config file makes it possible to change the spacing, separation, salt (and frequency) of Towns and Towers' structure sets. Big thanks to Cristelknight for making this all possible. + SPACING --- controls how far a structure can be from others of its kind + SEPARATION --- controls how close to each other two structures of the same type can be. +By default, the values should be 48/24 for villages and outposts (spacing/separation respectively) - a hypothetical village is going to appear not further than 48 chunks away (ca. 760 blocks), but not closer than 24 chunks (ca. 380 blocks). + * If you want a structure to spawn more frequently, decrease those values. + * If you want a structure to spawn less frequently, increase those values. +KEEP IN MIND THAT SPACING ALWAYS NEEDS TO BE HIGHER THAN SEPARATION. + +LINKS +===== +Curseforge link: https://www.curseforge.com/minecraft/mc-mods/towns-and-towers +Modrinth link: https://modrinth.com/mod/towns-and-towers +PMC link: https://www.planetminecraft.com/data-pack/towns-amp-towers-structure-overhaul/ +GitHub Repository: [NEED TO MAKE ONE] +*/ +{ + // Here you can find all pillager outposts. + "towers": { + // DEFAULT 48 + "spacing": 48, + // DEFAULT 24 + "separation": 24, + "frequency": 0.2, + "salt": 205745294 + }, + // Here you can find all structures that aren't villages or outposts. + "other": { + // DEFAULT 32 + "spacing": 32, + // DEFAULT 16 + "separation": 16, + "salt": 30084234 + }, + // Here you can find all villages. + "towns": { + // DEFAULT 48 + "spacing": 48, + // DEFAULT 24 + "separation": 24, + "salt": 10587309 + } +} \ No newline at end of file diff --git a/config/travelersbackpack.json5 b/config/travelersbackpack.json5 new file mode 100644 index 0000000..30ac1f0 --- /dev/null +++ b/config/travelersbackpack.json5 @@ -0,0 +1,216 @@ +{ + "backpackSettings": { + "leather": { + // Number of inventory slots for the tier + "inventorySlotCount": 27, + // Number of tool slots for the tier + "toolSlotCount": 2, + // Tank capacity for the tier, 81000 equals 1 Bucket, (Leather default: 3 buckets) + "tankCapacity": 243000 + }, + "iron": { + // Number of inventory slots for the tier + "inventorySlotCount": 36, + // Number of tool slots for the tier + "toolSlotCount": 3, + // Tank capacity for the tier, 81000 equals 1 Bucket, (Iron default: 4 buckets) + "tankCapacity": 324000 + }, + "gold": { + // Number of inventory slots for the tier + "inventorySlotCount": 45, + // Number of tool slots for the tier + "toolSlotCount": 4, + // Tank capacity for the tier, 81000 equals 1 Bucket, (Gold default: 5 buckets) + "tankCapacity": 405000 + }, + "diamond": { + // Number of inventory slots for the tier + "inventorySlotCount": 54, + // Number of tool slots for the tier + "toolSlotCount": 5, + // Tank capacity for the tier, 81000 equals 1 Bucket, (Diamond default: 6 buckets) + "tankCapacity": 486000 + }, + "netherite": { + // Number of inventory slots for the tier + "inventorySlotCount": 63, + // Number of tool slots for the tier + "toolSlotCount": 6, + // Tank capacity for the tier, 81000 equals 1 Bucket, (Netherite default: 7 buckets) + "tankCapacity": 567000 + }, + "enableTierUpgrades": true, + // Unused - keep for compatibility only, will be removed in future versions + "disableCrafting": false, + "enableCraftingUpgrade": true, + // New backpacks will have crafting grid by default + "craftingUpgradeByDefault": false, + "craftingSavesItems": true, + // Enables wearing backpack directly from ground + "enableBackpackBlockQuickEquip": true, + // Enables unequipping the backpack when player clicks with empty hand on the ground + "enableBackpackRightClickUnequip": false, + // Allows to use only equipped backpack + "allowOnlyEquippedBackpack": false, + // Backpack immune to any damage source (lava, fire), can't be destroyed, never disappears as floating item + "invulnerableBackpack": true, + // List of items that can be put in tool slots (Use registry names, for example: minecraft:apple, minecraft:flint) + "toolSlotsAcceptableItems": [], + // List of items that can't be put in backpack inventory (Use registry names, for example: minecraft:apple, minecraft:flint) + "blacklistedItems": [], + // Tool slots accept any item + "toolSlotsAcceptEverything": false, + "allowShulkerBoxes": false, + // Unused - keep for compatibility only, will be removed in future versions + "tanksCapacity": [ + 162000, + 243000, + 324000, + 405000, + 486000 + ], + // Prevents backpack disappearing in void + "voidProtection": true, + // Places backpack at place where player died + "backpackDeathPlace": true, + // Places backpack at place where player died, replacing all blocks that are breakable and do not have inventory (backpackDeathPlace must be true in order to work) + "backpackForceDeathPlace": false, + "enableSleepingBagSpawnPoint": false, + /* If true, backpack can only be worn by placing it in curios 'Back' slot + WARNING - Remember to TAKE OFF BACKPACK BEFORE enabling or disabling this integration!! - if not you'll lose your backpack + */ + "trinketsIntegration": false + }, + "world": { + // Enables backpacks spawning in loot chests + "enableLoot": true, + // Enables chance to spawn Zombie, Skeleton, Wither Skeleton, Piglin or Enderman with random backpack equipped + "spawnEntitiesWithBackpack": true, + // List of overworld entity types that can spawn with equipped backpack. DO NOT ADD anything to this list, because the game will crash, remove entries if mob should not spawn with backpack + "possibleOverworldEntityTypes": [ + "minecraft:zombie", + "minecraft:skeleton", + "minecraft:enderman" + ], + // List of nether entity types that can spawn with equipped backpack. DO NOT ADD anything to this list, because the game will crash, remove entries if mob should not spawn with backpack + "possibleNetherEntityTypes": [ + "minecraft:wither_skeleton", + "minecraft:piglin" + ], + // Defines spawn chance of entity with backpack (1 in [selected value]) + "spawnChance": 500, + // List of backpacks that can spawn on overworld mobs + "overworldBackpacks": [ + "travelersbackpack:standard", + "travelersbackpack:diamond", + "travelersbackpack:gold", + "travelersbackpack:emerald", + "travelersbackpack:iron", + "travelersbackpack:lapis", + "travelersbackpack:redstone", + "travelersbackpack:coal", + "travelersbackpack:bookshelf", + "travelersbackpack:sandstone", + "travelersbackpack:snow", + "travelersbackpack:sponge", + "travelersbackpack:cake", + "travelersbackpack:cactus", + "travelersbackpack:hay", + "travelersbackpack:melon", + "travelersbackpack:pumpkin", + "travelersbackpack:creeper", + "travelersbackpack:enderman", + "travelersbackpack:skeleton", + "travelersbackpack:spider", + "travelersbackpack:bee", + "travelersbackpack:wolf", + "travelersbackpack:fox", + "travelersbackpack:ocelot", + "travelersbackpack:horse", + "travelersbackpack:cow", + "travelersbackpack:pig", + "travelersbackpack:sheep", + "travelersbackpack:chicken", + "travelersbackpack:squid" + ], + // List of backpacks that can spawn on nether mobs + "netherBackpacks": [ + "travelersbackpack:quartz", + "travelersbackpack:nether", + "travelersbackpack:blaze", + "travelersbackpack:ghast", + "travelersbackpack:magma_cube", + "travelersbackpack:wither" + ], + // Enables trade for Villager Backpack in Librarian villager trades + "enableVillagerTrade": true + }, + "backpackAbilities": { + "enableBackpackAbilities": true, + "forceAbilityEnabled": true, + // List of backpacks that are allowed to have an ability. DO NOT ADD anything to this list, because the game will crash, remove entries if backpack should not have ability + "allowedAbilities": [ + "travelersbackpack:netherite", + "travelersbackpack:diamond", + "travelersbackpack:gold", + "travelersbackpack:emerald", + "travelersbackpack:iron", + "travelersbackpack:lapis", + "travelersbackpack:redstone", + "travelersbackpack:bookshelf", + "travelersbackpack:sponge", + "travelersbackpack:cake", + "travelersbackpack:cactus", + "travelersbackpack:melon", + "travelersbackpack:pumpkin", + "travelersbackpack:creeper", + "travelersbackpack:dragon", + "travelersbackpack:enderman", + "travelersbackpack:blaze", + "travelersbackpack:ghast", + "travelersbackpack:magma_cube", + "travelersbackpack:spider", + "travelersbackpack:wither", + "travelersbackpack:bat", + "travelersbackpack:bee", + "travelersbackpack:ocelot", + "travelersbackpack:cow", + "travelersbackpack:chicken", + "travelersbackpack:squid" + ] + }, + "slownessDebuff": { + // Player gets slowness effect, if carries too many backpacks in inventory + "tooManyBackpacksSlowness": false, + // Maximum number of backpacks, which can be carried in inventory, without slowness effect + "maxNumberOfBackpacks": 3, + "slownessPerExcessedBackpack": 1 + }, + "client": { + "overlay": { + // Enables tanks and tool slots overlay, while backpack is worn + "enableOverlay": true, + // Offsets to left side + "offsetX": 20, + // Offsets to up + "offsetY": 30 + }, + // Sends a message to the player on death with backpack coordinates + "sendBackpackCoordinatesMessage": true, + // Enables legacy GUI (Blue slots for storage, brown for crafting and green for tools) + "enableLegacyGui": false, + // Enables tool cycling via keybind (Default Z) + scroll combination, while backpack is worn + "enableToolCycling": true, + // Allows tool cycling using keybinding only (Default Z) + "disableScrollWheel": false, + // Enables tip, how to obtain a backpack, if there's no crafting recipe for it + "obtainTips": true, + // Render tools in tool slots on the backpack, while worn + "renderTools": true, + // Render backpack if elytra is present + "renderBackpackWithElytra": true, + // Disable backpack rendering + "disableBackpackRender": false + } +} \ No newline at end of file diff --git a/config/underground_villages.toml b/config/underground_villages.toml new file mode 100644 index 0000000..832fff8 --- /dev/null +++ b/config/underground_villages.toml @@ -0,0 +1,2 @@ +[generation] +yLevel = -20 diff --git a/config/veinmining-client.toml b/config/veinmining-client.toml new file mode 100644 index 0000000..b7f804a --- /dev/null +++ b/config/veinmining-client.toml @@ -0,0 +1,14 @@ +#If maxBlocksBase from veinmining-server.toml is 0, determines how to activate vein mining. +#IMPORTANT: When using the "HOLD_KEY_DOWN" setting, remember to set a keybinding by going to Options > Controls > Key Binds. +#Allowed Values: STANDING, CROUCHING, HOLD_KEY_DOWN +activationState = "STANDING" +#If maxBlocksBase from veinmining-server.toml is greater than 0, determines how to activate vein mining. +#IMPORTANT: When using the "HOLD_KEY_DOWN" setting, remember to set a keybinding by going to Options > Controls > Key Binds. +#Allowed Values: STANDING, CROUCHING, HOLD_KEY_DOWN +activationStateWithoutEnchantment = "HOLD_KEY_DOWN" +#If enabled, users will be sent warnings about improper enchantment usage. +enableEnchantmentWarnings = true +#If enabled, instructions on how to vein mine will appear in the tooltip of enchanted items. +enableEnchantmentTooltips = true +#If enabled, instructions on how to vein mine will appear above the hotbar when switching to enchanted items. +enableEnchantmentNotifications = false diff --git a/config/veinmining-common.toml b/config/veinmining-common.toml new file mode 100644 index 0000000..1c54667 --- /dev/null +++ b/config/veinmining-common.toml @@ -0,0 +1,26 @@ +#The rarity of the enchantment. +#Allowed Values: COMMON, UNCOMMON, RARE, VERY_RARE +rarity = "RARE" +#The number of levels of the enchantment. +#Range: 1 ~ 5 +levels = 1 +#If enabled, the enchantment is considered a treasure enchantment. +isTreasure = false +#If enabled, the enchantment can be offered by villagers for trade. +isVillagerTrade = true +#If enabled, the enchantment can generate in loot. +isLootable = true +#If enabled, the enchantment can be applied at the enchantment table. +canApplyAtEnchantingTable = true +#If enabled, the enchantment can be applied on books. +canApplyOnBooks = true +#The minimum enchantability required for the first enchantment level. +#Range: 1 ~ 100 +minEnchantabilityBase = 15 +#The additional enchantability required for each enchantment level after the first. +#Range: 1 ~ 100 +minEnchantabilityPerLevel = 5 +#Enchantments that cannot be applied together with the enchantment. +incompatibleEnchantments = [] +#Items that the enchantment can be applied on. +itemsList = ["#c:axes", "#c:pickaxes", "#c:shovels", "#c:hoes"] diff --git a/config/veinmining-server.toml b/config/veinmining-server.toml new file mode 100644 index 0000000..1bb540c --- /dev/null +++ b/config/veinmining-server.toml @@ -0,0 +1,39 @@ +#The minimum destroy speed the used tool needs on the block to vein mine. +#Range: 0.0 ~ 100.0 +requiredDestroySpeed = 1.0 +#If enabled, vein mining will not activate if the used tool cannot harvest drops from the source block. +requireCorrectTool = false +#The maximum number of blocks to vein mine without the enchantment. +#Range: 0 ~ 1000 +maxBlocksBase = 0 +#The maximum number of blocks to vein mine per level of the enchantment. +#Range: 1 ~ 1000 +maxBlocksPerLevel = 50 +#If enabled, vein mining can mine diagonally. +diagonalMining = true +#If enabled, vein mining will stop when the tool can no longer be used. +limitedByDurability = true +#If enabled, vein mining will move drops from blocks to the source location. +relocateDrops = true +#If enabled, vein mining will never break tools. +preventToolDestruction = true +#If enabled, vein mining will damage the tool for each block mined. +addToolDamage = true +#The multiplier to tool damage from blocks that are vein mined. +#Range: 0 ~ 1000 +toolDamageMultiplier = 1 +#If enabled, vein mining will cause player exhaustion for each block mined. +addExhaustion = true +#The multiplier to player exhaustion from blocks that are vein mined. +#Range: 0.0 ~ 1000.0 +exhaustionMultiplier = 1.0 +#Determines the vein mineable blocks based on a preset option or a configured list. +#Allowed Values: CONFIG_LIST, ALL, ORES, ORES_LOGS, ORES_STONE, ORES_STONE_LOGS, NO_BLOCK_ENTITIES +blocks = "CONFIG_LIST" +#The blocks or block tags for vein mining if blocks is set to "CONFIG_LIST". +blocksList = ["#c:ores", "#forge:ores", "#minecraft:logs"] +#Determines if blocksList contains allowed blocks or denied blocks. +#Allowed Values: ALLOW, DENY +blocksListType = "ALLOW" +#The groups of blocks or block tags that are vein mined together. +groupsList = ["#c:adamantite_ores", "#c:aetherium_ores", "#c:aluminum_ores", "#c:amethyst_ores", "#c:antimony_ores", "#c:aquarium_ores", "#c:asterite_ores", "#c:banglum_ores", "#c:bauxite_ores", "#c:carmot_ores", "#c:certus_quartz_ores", "#c:cinnabar_ores", "#c:coal_ores", "#c:cobalt_ores", "#c:copper_ores", "#c:diamond_ores", "#c:emerald_ores", "#c:galaxium_ores", "#c:galena_ores", "#c:gold_ores,#minecraft:gold_ores", "#c:iridium_ores", "#c:iron_ores", "#c:kyber_ores", "#c:lapis_ores", "#c:lead_ores", "#c:lunum_ores", "#c:lutetium_ores", "#c:manganese_ores", "#c:metite_ores", "#c:mythril_ores", "#c:nickel_ores", "#c:orichalcum_ores", "#c:osmium_ores", "#c:palladium_ores", "#c:peridot_ores", "#c:platinum_ores", "#c:prometheum_ores", "#c:pyrite_ores", "#c:quadrillum_ores", "#c:quartz_ores", "#c:redstone_ores", "#c:ruby_ores", "#c:runite_ores", "#c:salt_ores", "#c:sapphire_ores", "#c:sheldonite_ores", "#c:silver_ores", "#c:sodalite_ores", "#c:sphalerite_ores", "#c:starrite_ores", "#c:stellum_ores", "#c:stormyx_ores", "#c:sulfur_ores", "#c:tantalite_ores", "#c:tin_ores", "#c:titanium_ores", "#c:topaz_ores", "#c:truesilver_ores", "#c:tungsten_ores", "#c:unobtainium_ores", "#c:ur_ores", "#c:uranium_ores", "#c:vermiculite_ores", "#c:zinc_ores"] diff --git a/config/villagersplus/villagersplus-3.0-config.json5 b/config/villagersplus/villagersplus-3.0-config.json5 new file mode 100644 index 0000000..dabe587 --- /dev/null +++ b/config/villagersplus/villagersplus-3.0-config.json5 @@ -0,0 +1,60 @@ +{ + //Amount of new trades per level a villager can have at max. (Default: 2) + "trade_offers_per_level": 2, + //Amount of trades the wandering trader can have at max. (Default: 5) + "trade_offers_wandering_trader": 5, + //Max amount of experience storable in the enchanted basin. (Default: 500) + "max_exp_amount": 500, + //Amount of experience taken or given to the enchanted basin per interaction. (Default: 50) + "exp_amount": 50, + //Enable explosion potential of the alchemist workstation. (Default: true) + "can_explode": true, + //Chance of the alchemist workstation NOT exploding (1 in ?). Must be greater than 0! (Default: 3) + "explosion_chance": 3, + //Weight of the house in the village structure pool. Higher values increase the chance of generating. + "plains_alchemist_weight": 10, + "plains_occultist_weight": 10, + "plains_horticulturist_weight": 7, + "plains_oceanographer_weight": 15, + //Weight of the house in a village. Higher values increase the chance of generating. + "taiga_alchemist_weight": 10, + "taiga_occultist_weight": 10, + "taiga_horticulturist_weight": 7, + "taiga_oceanographer_weight": 15, + //Weight of the house in a village. Higher values increase the chance of generating. + "savanna_alchemist_weight": 10, + "savanna_occultist_weight": 10, + "savanna_horticulturist_weight": 7, + "savanna_oceanographer_weight": 15, + //Weight of the house in a village. Higher values increase the chance of generating. + "snowy_alchemist_weight": 10, + "snowy_occultist_weight": 10, + "snowy_horticulturist_weight": 7, + "snowy_oceanographer_weight": 15, + //Weight of the house in a village. Higher values increase the chance of generating. + "desert_alchemist_weight": 10, + "desert_occultist_weight": 10, + "desert_horticulturist_weight": 7, + "desert_oceanographer_weight": 15, + //Two flower offsets in flower tub for small flowers. Each offset is added to the following offsets. + "first_flower_in_two_X_offset": 0.15, + "first_flower_in_two_Z_offset": 0.15, + "second_flower_in_two_X_offset": -0.3, + "second_flower_in_two_Z_offset": -0.35, + //Three flower offsets in flower tub for small flowers. Each offset is added to the following offsets. + "first_flower_in_three_X_offset": 0.15, + "first_flower_in_three_Z_offset": 0.0, + "second_flower_in_three_X_offset": -0.3, + "second_flower_in_three_Z_offset": -0.15, + "third_flower_in_three_X_offset": -0.05, + "third_flower_in_three_Z_offset": 0.3, + //Four flower offsets in flower tub for small flowers. Each offset is added to the following offsets. + "first_flower_in_four_X_offset": 0.15, + "first_flower_in_four_Z_offset": 0.15, + "second_flower_in_four_X_offset": 0.0, + "second_flower_in_four_Z_offset": -0.35, + "third_flower_in_four_X_offset": -0.3, + "third_flower_in_four_Z_offset": 0.0, + "forth_flower_in_four_X_offset": -0.05, + "forth_flower_in_four_Z_offset": 0.37 +} diff --git a/config/vivecraft-server-config.toml b/config/vivecraft-server-config.toml new file mode 100644 index 0000000..924ad04 --- /dev/null +++ b/config/vivecraft-server-config.toml @@ -0,0 +1,129 @@ +[general] + #will print clients that connect with vivecraft, and what version they are using, to the log. + debug = false + #will check for a newer version and alert any OP when they login to the server. + checkForUpdate = true + #What updates to check for. + # r: Release, b: Beta, a: Alpha + checkForUpdateType = "r" + #Set to true to only allow VR players to play. + # If enabled, VR hotswitching will be automatically disabled. + vr_only = false + #Set to true to only allow vivecraft players to play. + vive_only = false + #If true, will allow server ops to be in any mode. No effect if vive-only/vr-only is false. + allow_op = true + #Seconds to wait before kicking a player or sending welcome messages. The player's client must send a Vivecraft VERSION info in that time. + # default: 10.00, min: 0.00, max: 100.00 + messageAndKickDelay = 10.0 + #Gives VR Players fun cakes and drinks at random, when they respawn. + vrFun = true +[messages] + #Enable or disable all messages. + enabled = false + #set message to nothing to not send. ex: leaveMessage = "" + # put '%s' in any message for the player name + welcomeVR = "%s has joined with standing VR!" + welcomeNonVR = "%s has joined with Non-VR companion!" + welcomeSeated = "%s has joined with seated VR!" + leaveMessage = "%s has disconnected from the server!" + welcomeVanilla = "%s has joined as a Muggle!" + deathVR = "%s died in standing VR!" + deathNonVR = "%s died in Non-VR companion!" + deathSeated = "%s died in seated VR!" + deathVanilla = "%s died as a Muggle!" + #death by mob messages use '%1$s' for the player name and '%2$s' for the mob name + deathByMobVR = "%1$s was slain by %2$s in standing VR!" + deathByMobNonVR = "%1$s was slain by %2$s in Non-VR companion!" + deathByMobSeated = "%1$s was slain by %2$s in seated VR!" + deathByMobVanilla = "%1$s was slain by %2$s as a Muggle!" + #The message to show kicked non vivecraft players. + KickViveOnly = "This server is configured for Vivecraft players only." + #The message to show kicked non VR players. + KickVROnly = "This server is configured for VR players only." +#Vanilla modifications for VR players +[vrChanges] + #Distance at which creepers swell and explode for VR players. Vanilla: 3 + # default: 1.75, min: 0.10, max: 10.00 + creeperSwellDistance = 1.75 + + #Bow damage adjustments + [vrChanges.bow] + #Archery damage multiplier for Vivecraft (standing) users. Set to 1.0 to disable + # default: 2.00, min: 1.00, max: 10.00 + standingMultiplier = 2.0 + #Archery damage multiplier for Vivecraft (seated) users. Set to 1.0 to disable + # default: 1.00, min: 1.00, max: 10.00 + seatedMultiplier = 1.0 + #Headshot damage multiplier for Vivecraft (standing) users. Set to 1.0 to disable + # default: 3.00, min: 1.00, max: 10.00 + standingHeadshotMultiplier = 3.0 + #Headshot damage multiplier for Vivecraft (seated) users. Set to 1.0 to disable + # default: 2.00, min: 1.00, max: 10.00 + seatedHeadshotMultiplier = 2.0 + #Headshot damage multiplier for Vanilla/NonVR users. Set to 1.0 to disable + # default: 1.00, min: 1.00, max: 10.00 + vanillaHeadshotMultiplier = 1.0 +#VR vs. non-VR vs. seated player PVP settings +[pvp] + #Notifies the player that would cause damage, that it was blocked. + notifyBlockedDamage = false + #Allows Standing VR players to damage each other. + VRvsVR = true + #Allows Seated VR players to damage each other. + SEATEDVRvsSEATEDVR = true + #Allows Standing VR players and Non VR players to damage each other. + VRvsNONVR = true + #Allows Seated VR players and Non VR players to damage each other. + SEATEDVRvsNONVR = true + #Allows Standing VR players and Seated VR Players to damage each other. + VRvsSEATEDVR = true +#Climbey motion settings +[climbey] + #Allows use of jump_boots and climb_claws. + enabled = true + #Sets which blocks are climb-able. Options are: + # "DISABLED" = List ignored. All blocks are climbable. + # "WHITELIST" = Only blocks on the list are climbable. + # "BLACKLIST" = All blocks are climbable except those on the list + blockmode = "DISABLED" + #The list of block names for use with include/exclude block mode. + blocklist = ["white_wool", "dirt", "grass_block"] +#Roomscale crawling settings +[crawling] + #Allows use of roomscale crawling. Disabling does not prevent vanilla crawling. + enabled = true +#Teleport settings +[teleport] + #Whether direct teleport is enabled. It is recommended to leave this enabled for players prone to VR sickness. + enabled = true + #Enforce limited teleport range and frequency in survival. + limitedSurvival = false + #Maximum blocks players can teleport up. Set to 0 to disable. + # default: 4, min: 1, max: 16 + upLimit = 4 + #Maximum blocks players can teleport down. Set to 0 to disable. + # default: 4, min: 1, max: 16 + downLimit = 4 + #Maximum blocks players can teleport horizontally. Set to 0 to disable. + # default: 16, min: 1, max: 32 + horizontalLimit = 16 +#World scale settings +[worldScale] + #Limit the range of world scale players can use + limitRange = false + #Lower limit of range + # default: 0.50, min: 0.10, max: 100.00 + min = 0.5 + #Upper limit of range + # default: 2.00, min: 0.10, max: 100.00 + max = 2.0 +#Other client settings to override +[settingOverrides] + #Forces players to use the raw item position setting + thirdPersonItems = false +#VR hotswitch settings +[vrSwitching] + #Allows players to switch between VR and NONVR on the fly. + # If disabled, they will be locked to the mode they joined with. + enabled = true diff --git a/config/voicechat/translations.properties b/config/voicechat/translations.properties new file mode 100644 index 0000000..f1e97d1 --- /dev/null +++ b/config/voicechat/translations.properties @@ -0,0 +1,14 @@ +# Simple Voice Chat translations +# This file contains all server-side translations for the Simple Voice Chat mod + +# The message a player gets when kicked for not having voice chat installed and the server has force_voicechat enabled +# The first parameter is the mod/plugin name and the second parameter is the mod/plugin version +force_voicechat_kick_message=You need %s %s to play on this server +# The message a player gets when joining a server with an incompatible voice chat version +# The first parameter is the mod/plugin version and the second parameter is the mod/plugin name +voicechat_not_compatible_message=Your voice chat version is not compatible with the servers version.\\nPlease install version %s of %s. +# The message a player gets when trying to execute a command that requires voice chat +# The first parameter is the mod/plugin name +voicechat_needed_for_command_message=You need to have %s installed on your client to use this command +# The message a player gets when trying to execute a command that can only be executed as a player +player_command_message=This command can only be executed as a player diff --git a/config/voicechat/username-cache.json b/config/voicechat/username-cache.json new file mode 100644 index 0000000..7f46213 --- /dev/null +++ b/config/voicechat/username-cache.json @@ -0,0 +1 @@ +{"ee8e9e4a-bbe6-4b6b-9b4a-d7856bc02b34":"hiiina","7c262ec9-cb1f-4063-b903-8b2f6a75c07d":"Sneed"} \ No newline at end of file diff --git a/config/voicechat/voicechat-client.properties b/config/voicechat/voicechat-client.properties new file mode 100644 index 0000000..4b14533 --- /dev/null +++ b/config/voicechat/voicechat-client.properties @@ -0,0 +1,90 @@ +# Simple Voice Chat client config v1.20.1-2.5.19 + +# If the voice chat onboarding process has been finished +onboarding_finished=true +# The voice chat volume +voice_chat_volume=1.0 +# The threshold for voice activation in dB +voice_activation_threshold=-50.0 +# The voice chat microphone amplification +microphone_amplification=1.0 +# Microphone activation type +# Possible values are 'PTT' and 'VOICE' +microphone_activation_type=VOICE +# The size of the audio output buffer in packets +# Higher values mean a higher latency, but less crackles +# Increase this value if you have an unstable internet connection +output_buffer_size=5 +# The maximum amount of audio packets that are held back if a packet arrives out of order or gets dropped +# This prevents discarding audio packets that are slightly out of order +# Set this to 0 to disable +audio_packet_threshold=3 +# The time it takes for the microphone to deactivate when using voice activation +# A value of 1 means 20 milliseconds, 2=40 ms, 3=60 ms, ... +voice_deactivation_delay=25 +# The microphone used by the voice chat +# Empty for default device +microphone= +# The speaker used by the voice chat +# Empty for default device +speaker= +# If the microphone is muted (only when using voice activation) +muted=false +# If the voice chat is disabled (sound and microphone off) +disabled=true +# If the voice chat icons should be hidden +hide_icons=false +# If the group HUD should be visible +show_group_hud=true +# If the own icon should be shown when in a group +show_own_group_icon=true +# The scale of the group HUD +group_hud_icon_scale=2.0 +# The orientation of the player icons in the group HUD +# Possible values are 'VERTICAL' and 'HORIZONTAL' +group_player_icon_orientation=VERTICAL +# The X position of the player icons in the group HUD +# Negative values mean anchoring to the right +group_player_icon_pos_x=4 +# The Y position of the player icons in the group HUD +# Negative values mean anchoring to the bottom +group_player_icon_pos_y=4 +# The X position of the HUD icons +# Negative values mean anchoring to the right +hud_icon_pos_x=16 +# The Y position of the HUD icons +# Negative values mean anchoring to the bottom +hud_icon_pos_y=-16 +# The scale of the HUD icons +hud_icon_scale=1.0 +# The location where recordings should be saved +# Leave empty for default location +recording_destination= +# The quality of the recorded audio +# 0 = highest quality, 9 = lowest quality +recording_quality=2 +# If noise cancellation should be enabled +denoiser=false +# If voice chat should work in singleplayer/LAN worlds +run_local_server=true +# Whether to use the Java implementation of microphone capturing instead of OpenAL +java_microphone_implementation=false +# If the mod should check for microphone permissions (MacOS only) +macos_check_microphone_permission=true +# If fake players should have the disconnected icon above their head +show_fake_players_disconnected=false +# If the volume adjustment GUI should also show offline players +offline_player_volume_adjustment=false +# The 3D audio type +# Possible values are 'NORMAL', 'REDUCED' and 'OFF' +audio_type=NORMAL +# If the mod should load native libraries +# If set to false, the Java Opus implementation will be used, the denoiser won't be available and you won't be able to record audio. +use_natives=true +# How listening to other players should work when using freecam mods +# Possible values are 'CAMERA' and 'PLAYER' +# CAMERA: You will hear voice chat audio around your camera. Whether you hear distant audio depends on the voice chat broadcast range of the server +# PLAYER: You will hear voice chat audio around your player no matter where your camera is +freecam_mode=CAMERA +# If enabled, you will be automatically muted when joining a world +mute_on_join=false diff --git a/config/voicechat/voicechat-server.properties b/config/voicechat/voicechat-server.properties new file mode 100644 index 0000000..4b1c863 --- /dev/null +++ b/config/voicechat/voicechat-server.properties @@ -0,0 +1,45 @@ +# Simple Voice Chat server config v1.20.1-2.5.19 + +# The port of the voice chat server +# Setting this to "-1" sets the port to the Minecraft servers port (Not recommended) +port=24454 +# The IP address to bind the voice chat server on +# Leave empty to use 'server-ip' of server.properties +# To bind to the wildcard address, use '*' +bind_address= +# The distance to where the voice can be heard +max_voice_distance=48.0 +# The multiplier of the voice distance when crouching +crouch_distance_multiplier=1.0 +# The multiplier of the voice distance when whispering +whisper_distance_multiplier=0.5 +# The opus codec +# Possible values are 'VOIP', 'AUDIO' and 'RESTRICTED_LOWDELAY' +codec=VOIP +# The maximum size in bytes that voice packets are allowed to have +mtu_size=1024 +# The frequency at which keep alive packets are sent +# Setting this to a higher value may result in timeouts +keep_alive=1000 +# If group chats are allowed +enable_groups=true +# The host name that clients should use to connect to the voice chat +# This may also include a port, e.g. 'example.com:24454' +# Don't change this value if you don't know what you are doing +voice_host= +# If players are allowed to record the voice chat +allow_recording=true +# If spectators are allowed to talk to other players +spectator_interaction=false +# If spectators can talk to players they are spectating +spectator_player_possession=false +# If players without the mod should get kicked from the server +force_voice_chat=false +# The amount of milliseconds, the server should wait to check if the player has the mod installed +# Only active when force_voice_chat is set to true +login_timeout=10000 +# The range where the voice chat should broadcast audio to +# A value <0 means 'max_voice_distance' +broadcast_range=-1.0 +# If the voice chat server should reply to pings +allow_pings=true diff --git a/config/voicechat/voicechat-volumes.properties b/config/voicechat/voicechat-volumes.properties new file mode 100644 index 0000000..85cd369 --- /dev/null +++ b/config/voicechat/voicechat-volumes.properties @@ -0,0 +1,2 @@ +# Simple Voice Chat volume config + diff --git a/config/vr-combat.json b/config/vr-combat.json new file mode 100644 index 0000000..37c8cef --- /dev/null +++ b/config/vr-combat.json @@ -0,0 +1,3 @@ +{ + "enabled": true +} \ No newline at end of file diff --git a/config/walljump.json b/config/walljump.json new file mode 100644 index 0000000..4263366 --- /dev/null +++ b/config/walljump.json @@ -0,0 +1,21 @@ +{ + "allowReClinging": true, + "autoRotation": false, + "onFallDoubleJump": true, + "exhaustionWallJump": 0.8, + "minFallDistance": 3.0, + "elytraSpeedBoost": 0.0, + "sprintSpeedBoost": 0.0, + "stepAssist": true, + "useDoubleJump": true, + "useWallJump": true, + "wallJumpHeight": 0.55, + "wallSlideDelay": 15, + "stopWallSlideDelay": 72000, + "playFallSound": true, + "enableEnchantments": true, + "enableWallJump": true, + "enableDoubleJump": true, + "enableSpeedBoost": true, + "speedBoostMultiplier": 0.5 +} \ No newline at end of file diff --git a/config/waystones-common.toml b/config/waystones-common.toml new file mode 100644 index 0000000..6150f60 --- /dev/null +++ b/config/waystones-common.toml @@ -0,0 +1,152 @@ +[client] + +# If enabled, the text overlay on waystones will no longer always render at full brightness. +disableTextGlow = false + +[compatibility] + +# If enabled, JourneyMap waypoints will be created for each activated waystone. +displayWaystonesOnJourneyMap = true + +# If enabled, JourneyMap waypoints will only be created if the mod 'JourneyMap Integration' is not installed +preferJourneyMapIntegration = true + +[cooldowns] + +# The multiplier applied to the cooldown when teleporting to a global waystone via inventory button or warp stone. +globalWaystoneCooldownMultiplier = 1.0 + +# The cooldown between usages of the inventory button in seconds. +inventoryButtonCooldown = 300 + +# The time in ticks it takes to use a scroll. This is the charge-up time when holding right-click. +scrollUseTime = 32 + +# The time in ticks that it takes to use a warp plate. This is the time the player has to stand on top for. +warpPlateUseTime = 20 + +# The cooldown between usages of the warp stone in seconds. This is bound to the player, not the item, so multiple warp stones share the same cooldown. +warpStoneCooldown = 30 + +# The time in ticks that it takes to use a warp stone. This is the charge-up time when holding right-click. +warpStoneUseTime = 32 + +[inventoryButton] + +# The y position of the warp button in the creative menu. +creativeWarpButtonX = 88 + +# The y position of the warp button in the creative menu. +creativeWarpButtonY = 33 + +# Set to 'NONE' for no inventory button. Set to 'NEAREST' for an inventory button that teleports to the nearest waystone. Set to 'ANY' for an inventory button that opens the waystone selection menu. Set to a waystone name for an inventory button that teleports to a specifically named waystone. +inventoryButton = "" + +# The x position of the warp button in the inventory. +warpButtonX = 58 + +# The y position of the warp button in the inventory. +warpButtonY = 60 + +[restrictions] + +# Set to true if players should be able to teleport between waystones by simply right-clicking a waystone. +allowWaystoneToWaystoneTeleport = true + +# Set to 'ALLOW' to allow dimensional warp in general. Set to 'GLOBAL_ONLY' to restrict dimensional warp to global waystones. Set to 'DENY' to disallow all dimensional warps. +dimensionalWarp = "ALLOW" + +# List of dimensions that players are allowed to warp cross-dimension from and to. If left empty, all dimensions except those in dimensionalWarpDenyList are allowed. +dimensionalWarpAllowList = [ ] + +# List of dimensions that players are not allowed to warp cross-dimension from and to. Only used if dimensionalWarpAllowList is empty. +dimensionalWarpDenyList = [ ] + +# If enabled, waystones generated in worldgen are unbreakable. +generatedWaystonesUnbreakable = false + +# Set to false to allow non-creative players to make waystones globally activated for all players. +globalWaystoneSetupRequiresCreativeMode = true + +# List of leashed mobs that cannot be taken with you when teleporting +leashedDenyList = [ "minecraft:wither" ] + +# If enabled, only the owner of a waystone (the one who placed it) can rename it. +restrictRenameToOwner = false + +# If enabled, only creative players can place, edit or break waystones. This does NOT disable the crafting recipe. +restrictToCreative = false + +# If enabled, leashed mobs will be teleported with you +transportLeashed = true + +# Whether to take leashed mobs with you when teleporting between dimensions +transportLeashedDimensional = true + +[worldGen] + +# These names will be used for the PRESET name generation mode. See the nameGenerationMode option for more info. +customWaystoneNames = [ ] + +# List of dimensions that waystones are allowed to spawn in through world gen. If left empty, all dimensions except those in worldGenDimensionDenyList are used. +dimensionAllowList = [ "minecraft:overworld", "minecraft:the_nether", "minecraft:the_end" ] + +# List of dimensions that waystones are not allowed to spawn in through world gen. Only used if worldGenDimensionAllowList is empty. +dimensionDenyList = [ ] + +# Ensures that pretty much every village will have a waystone, by spawning it as early as possible. In addition, this means waystones will generally be located in the center of the village. +forceSpawnInVillages = false + +# Approximate chunk distance between waystones generated freely in world generation. Set to 0 to disable generation. +frequency = 25 + +# Set to 'PRESET_FIRST' to first use names from the custom names list. Set to 'PRESET_ONLY' to use only those custom names. Set to 'MIXED' to have some waystones use custom names, and others random names. +nameGenerationMode = "PRESET_FIRST" + +# Set to true if waystones should be added to the generation of villages. Some villages may still spawn without a waystone. +spawnInVillages = true + +# Set to 'DEFAULT' to only generate the normally textured waystones. Set to 'MOSSY' or 'SANDY' to generate all as that variant. Set to 'BIOME' to make the style depend on the biome it is generated in. +worldGenStyle = "BIOME" + +[xpCost] + +# The amount of blocks per xp level requirement. If set to 500, the base xp cost for travelling 1000 blocks will be 2 levels. +blocksPerXpLevel = 1000 + +# The base xp level cost when travelling between dimensions. Ignores block distance. +dimensionalWarpXpCost = 3 + +# The multiplier applied to the base xp cost when teleporting to a global waystone through any method. +globalWaystoneXpCostMultiplier = 0.0 + +# The multiplier applied to the base xp cost when teleporting via the inventory button. +inventoryButtonXpCostMultiplier = 0.0 + +# Set to true if experience cost should be inverted, meaning the shorter the distance, the more expensive. Can be used to encourage other methods for short-distance travel. +inverseXpCost = false + +# The maximum base xp cost (may be exceeded by multipliers defined below), set to 0 to disable all distance-based XP costs +maximumBaseXpCost = 3.0 + +# The minimum base xp cost (may be subceeded by multipliers defined below) +minimumBaseXpCost = 0.0 + +# The multiplier applied to the base xp cost when teleporting from a portstone. +portstoneXpCostMultiplier = 0.0 + +# The multiplier applied to the base xp cost when teleporting from one sharestone to another. +sharestoneXpCostMultiplier = 0.0 + +# The multiplier applied to the base xp cost when teleporting from one warp plate to another. +warpPlateXpCostMultiplier = 0.0 + +# The multiplier applied to the base xp cost when teleporting using a Warp Stone item (not the Waystone block, Konstantin) +warpStoneXpCostMultiplier = 0.0 + +# The multiplier applied to the base xp cost when teleporting from one waystone to another. +waystoneXpCostMultiplier = 0.0 + +# How much xp is needed per leashed animal to travel with you +xpCostPerLeashed = 0 + diff --git a/config/wizards/items_v4.json b/config/wizards/items_v4.json new file mode 100644 index 0000000..3a3bdc8 --- /dev/null +++ b/config/wizards/items_v4.json @@ -0,0 +1,479 @@ +{ + "weapons": { + "staff_netherite_fire": { + "attack_damage": 4.0, + "attack_speed": -3.0, + "attributes": [ + { + "id": "spell_power:fire", + "value": 5.0, + "operation": "ADDITION" + } + ] + }, + "staff_netherite_frost": { + "attack_damage": 4.0, + "attack_speed": -3.0, + "attributes": [ + { + "id": "spell_power:frost", + "value": 5.0, + "operation": "ADDITION" + } + ] + }, + "staff_netherite_arcane": { + "attack_damage": 4.0, + "attack_speed": -3.0, + "attributes": [ + { + "id": "spell_power:arcane", + "value": 5.0, + "operation": "ADDITION" + } + ] + }, + "wand_fire": { + "attack_damage": 2.0, + "attack_speed": -2.4, + "attributes": [ + { + "id": "spell_power:fire", + "value": 2.0, + "operation": "ADDITION" + } + ] + }, + "staff_arcane": { + "attack_damage": 4.0, + "attack_speed": -3.0, + "attributes": [ + { + "id": "spell_power:arcane", + "value": 4.0, + "operation": "ADDITION" + } + ] + }, + "wand_novice": { + "attack_damage": 2.0, + "attack_speed": -2.4, + "attributes": [ + { + "id": "spell_power:fire", + "value": 1.0, + "operation": "ADDITION" + } + ] + }, + "wand_arcane": { + "attack_damage": 2.0, + "attack_speed": -2.4, + "attributes": [ + { + "id": "spell_power:arcane", + "value": 2.0, + "operation": "ADDITION" + } + ] + }, + "staff_frost": { + "attack_damage": 4.0, + "attack_speed": -3.0, + "attributes": [ + { + "id": "spell_power:frost", + "value": 4.0, + "operation": "ADDITION" + } + ] + }, + "wand_netherite_arcane": { + "attack_damage": 2.0, + "attack_speed": -2.4, + "attributes": [ + { + "id": "spell_power:arcane", + "value": 3.0, + "operation": "ADDITION" + } + ] + }, + "staff_fire": { + "attack_damage": 4.0, + "attack_speed": -3.0, + "attributes": [ + { + "id": "spell_power:fire", + "value": 4.0, + "operation": "ADDITION" + } + ] + }, + "wand_frost": { + "attack_damage": 2.0, + "attack_speed": -2.4, + "attributes": [ + { + "id": "spell_power:frost", + "value": 2.0, + "operation": "ADDITION" + } + ] + }, + "staff_wizard": { + "attack_damage": 4.0, + "attack_speed": -3.0, + "attributes": [ + { + "id": "spell_power:arcane", + "value": 3.0, + "operation": "ADDITION" + }, + { + "id": "spell_power:fire", + "value": 3.0, + "operation": "ADDITION" + }, + { + "id": "spell_power:frost", + "value": 3.0, + "operation": "ADDITION" + } + ] + }, + "wand_netherite_fire": { + "attack_damage": 2.0, + "attack_speed": -2.4, + "attributes": [ + { + "id": "spell_power:fire", + "value": 3.0, + "operation": "ADDITION" + } + ] + }, + "wand_netherite_frost": { + "attack_damage": 2.0, + "attack_speed": -2.4, + "attributes": [ + { + "id": "spell_power:frost", + "value": 3.0, + "operation": "ADDITION" + } + ] + }, + "staff_ruby_fire": { + "attack_damage": 4.0, + "attack_speed": -3.0, + "attributes": [ + { + "id": "spell_power:fire", + "value": 6.0, + "operation": "ADDITION" + } + ] + }, + "staff_crystal_arcane": { + "attack_damage": 4.0, + "attack_speed": -3.0, + "attributes": [ + { + "id": "spell_power:arcane", + "value": 6.0, + "operation": "ADDITION" + } + ] + }, + "staff_smaragdant_frost": { + "attack_damage": 4.0, + "attack_speed": -3.0, + "attributes": [ + { + "id": "spell_power:frost", + "value": 6.0, + "operation": "ADDITION" + } + ] + } + }, + "armor_sets": { + "arcane_robe": { + "armor_toughness": 0.0, + "knockback_resistance": 0.0, + "head": { + "armor": 1, + "attributes": [ + { + "id": "spell_power:arcane", + "value": 0.25, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:haste", + "value": 0.03, + "operation": "MULTIPLY_BASE" + } + ] + }, + "chest": { + "armor": 3, + "attributes": [ + { + "id": "spell_power:arcane", + "value": 0.25, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:haste", + "value": 0.03, + "operation": "MULTIPLY_BASE" + } + ] + }, + "legs": { + "armor": 2, + "attributes": [ + { + "id": "spell_power:arcane", + "value": 0.25, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:haste", + "value": 0.03, + "operation": "MULTIPLY_BASE" + } + ] + }, + "feet": { + "armor": 1, + "attributes": [ + { + "id": "spell_power:arcane", + "value": 0.25, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:haste", + "value": 0.03, + "operation": "MULTIPLY_BASE" + } + ] + } + }, + "fire_robe": { + "armor_toughness": 0.0, + "knockback_resistance": 0.0, + "head": { + "armor": 1, + "attributes": [ + { + "id": "spell_power:fire", + "value": 0.25, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:critical_chance", + "value": 0.02, + "operation": "MULTIPLY_BASE" + } + ] + }, + "chest": { + "armor": 3, + "attributes": [ + { + "id": "spell_power:fire", + "value": 0.25, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:critical_chance", + "value": 0.02, + "operation": "MULTIPLY_BASE" + } + ] + }, + "legs": { + "armor": 2, + "attributes": [ + { + "id": "spell_power:fire", + "value": 0.25, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:critical_chance", + "value": 0.02, + "operation": "MULTIPLY_BASE" + } + ] + }, + "feet": { + "armor": 1, + "attributes": [ + { + "id": "spell_power:fire", + "value": 0.25, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:critical_chance", + "value": 0.02, + "operation": "MULTIPLY_BASE" + } + ] + } + }, + "frost_robe": { + "armor_toughness": 0.0, + "knockback_resistance": 0.0, + "head": { + "armor": 1, + "attributes": [ + { + "id": "spell_power:frost", + "value": 0.25, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:critical_damage", + "value": 0.1, + "operation": "MULTIPLY_BASE" + } + ] + }, + "chest": { + "armor": 3, + "attributes": [ + { + "id": "spell_power:frost", + "value": 0.25, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:critical_damage", + "value": 0.1, + "operation": "MULTIPLY_BASE" + } + ] + }, + "legs": { + "armor": 2, + "attributes": [ + { + "id": "spell_power:frost", + "value": 0.25, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:critical_damage", + "value": 0.1, + "operation": "MULTIPLY_BASE" + } + ] + }, + "feet": { + "armor": 1, + "attributes": [ + { + "id": "spell_power:frost", + "value": 0.25, + "operation": "MULTIPLY_BASE" + }, + { + "id": "spell_power:critical_damage", + "value": 0.1, + "operation": "MULTIPLY_BASE" + } + ] + } + }, + "wizard_robe": { + "armor_toughness": 0.0, + "knockback_resistance": 0.0, + "head": { + "armor": 1, + "attributes": [ + { + "id": "spell_power:arcane", + "value": 1.0, + "operation": "ADDITION" + }, + { + "id": "spell_power:fire", + "value": 1.0, + "operation": "ADDITION" + }, + { + "id": "spell_power:frost", + "value": 1.0, + "operation": "ADDITION" + } + ] + }, + "chest": { + "armor": 3, + "attributes": [ + { + "id": "spell_power:arcane", + "value": 1.0, + "operation": "ADDITION" + }, + { + "id": "spell_power:fire", + "value": 1.0, + "operation": "ADDITION" + }, + { + "id": "spell_power:frost", + "value": 1.0, + "operation": "ADDITION" + } + ] + }, + "legs": { + "armor": 2, + "attributes": [ + { + "id": "spell_power:arcane", + "value": 1.0, + "operation": "ADDITION" + }, + { + "id": "spell_power:fire", + "value": 1.0, + "operation": "ADDITION" + }, + { + "id": "spell_power:frost", + "value": 1.0, + "operation": "ADDITION" + } + ] + }, + "feet": { + "armor": 1, + "attributes": [ + { + "id": "spell_power:arcane", + "value": 1.0, + "operation": "ADDITION" + }, + { + "id": "spell_power:fire", + "value": 1.0, + "operation": "ADDITION" + }, + { + "id": "spell_power:frost", + "value": 1.0, + "operation": "ADDITION" + } + ] + } + } + } +} \ No newline at end of file diff --git a/config/wizards/tweaks.json b/config/wizards/tweaks.json new file mode 100644 index 0000000..ece5579 --- /dev/null +++ b/config/wizards/tweaks.json @@ -0,0 +1,4 @@ +{ + "ignore_items_required_mods": false, + "arcane_charge_damage_per_stack": 0.15 +} \ No newline at end of file diff --git a/config/wizards/villages.json b/config/wizards/villages.json new file mode 100644 index 0000000..b360e33 --- /dev/null +++ b/config/wizards/villages.json @@ -0,0 +1,64 @@ +{ + "entries": [ + { + "pool": "minecraft:village/desert/houses", + "structures": [ + { + "id": "wizards:village/desert/wizard_tower", + "weight": 1, + "limit": 1 + }, + { + "id": "wizards:village/desert/wizard_tower_2", + "weight": 3, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/savanna/houses", + "structures": [ + { + "id": "wizards:village/savanna/wizard_tower", + "weight": 3, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/plains/houses", + "structures": [ + { + "id": "wizards:village/plains/wizard_tower", + "weight": 3, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/taiga/houses", + "structures": [ + { + "id": "wizards:village/taiga/wizard_tower", + "weight": 3, + "limit": 1 + } + ] + }, + { + "pool": "minecraft:village/snowy/houses", + "structures": [ + { + "id": "wizards:village/snowy/wizard_tower", + "weight": 1, + "limit": 1 + }, + { + "id": "wizards:village/snowy/wizard_tower_2", + "weight": 3, + "limit": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/config/xaerominimap-common.txt b/config/xaerominimap-common.txt new file mode 100644 index 0000000..489a92e --- /dev/null +++ b/config/xaerominimap-common.txt @@ -0,0 +1,4 @@ +allowCaveModeOnServer:true +allowNetherCaveModeOnServer:true +allowRadarOnServer:true +registerStatusEffects:true diff --git a/config/xaerominimap.txt b/config/xaerominimap.txt new file mode 100644 index 0000000..c383fc4 --- /dev/null +++ b/config/xaerominimap.txt @@ -0,0 +1,129 @@ +#CONFIG ONLY OPTIONS +ignoreUpdate:0 +settingsButton:false +allowWrongWorldTeleportation:false +differentiateByServerAddress:true +debugEntityIcons:false +debugEntityVariantIds:false +radarHideInvisibleEntities:true +allowInternetAccess:true +#INGAME SETTINGS (DO NOT EDIT!) +updateNotification:true +minimap:true +caveMaps:2 +caveZoom:1 +showWaypoints:true +showIngameWaypoints:true +displayRedstone:true +deathpoints:true +oldDeathpoints:true +distance:1 +lockNorth:false +zoom:0 +minimapSize:0 +chunkGrid:-1 +slimeChunks:false +mapSafeMode:false +minimapOpacity:100.0 +waypointsIngameIconScale:0 +waypointsIngameDistanceScale:0 +waypointsIngameNameScale:0 +waypointsIngameCloseScale:1.0 +antiAliasing:true +blockColours:0 +lighting:true +dotsStyle:0 +dotNameScale:1.0 +compassOverEverything:true +showFlowers:true +keepWaypointNames:true +waypointsDistanceExp:0 +waypointsDistanceMin:0.0 +defaultWaypointTPCommandFormat:/tp @s {x} {y} {z} +defaultWaypointTPCommandRotationFormat:/tp @s {x} {y} {z} {yaw} ~ +arrowScale:1.5 +arrowColour:0 +smoothDots:true +worldMap:true +terrainDepth:true +terrainSlopes:2 +mainEntityAs:0 +blockTransparency:true +waypointOpacityIngame:80 +waypointOpacityMap:90 +hideWorldNames:1 +openSlimeSettings:true +alwaysShowDistance:false +renderLayerIndex:1 +crossDimensionalTp:true +biomeColorsVanillaMode:false +lookingAtAngle:10 +lookingAtAngleVertical:180 +centeredEnlarged:false +zoomOnEnlarged:0 +minimapTextAlign:0 +waypointsMutualEdit:true +compassLocation:1 +compassDirectionScale:0 +caveMapsDepth:30 +hideWaypointCoordinates:false +renderAllSets:false +playerArrowOpacity:100 +waypointsBottom:false +minimapShape:0 +lightOverlayType:0 +lightOverlayMaxLight:7 +lightOverlayMinLight:0 +lightOverlayColor:13 +uiScale:0 +bossHealthPushBox:1 +potionEffectPushBox:1 +minimapFrame:0 +minimapFrameColor:9 +compassColor:9 +northCompassColor:-1 +displayMultipleWaypointInfo:1 +entityRadar:true +adjustHeightForCarpetLikeBlocks:true +autoConvertWaypointDistanceToKmThreshold:10000 +waypointDistancePrecision:1 +mainDotSize:2 +partialYTeleportation:true +deleteReachedDeathpoints:true +hideMinimapUnderScreen:true +hideMinimapUnderF3:true +manualCaveModeStartAuto:true +manualCaveModeStart:-1 +chunkGridLineWidth:1 +temporaryWaypointsGlobal:true +keepUnlockedWhenEnlarged:false +enlargedMinimapAToggle:false +displayStainedGlass:true +waypointOnMapScale:0 +switchToAutoOnDeath:true +infoDisplayBackgroundOpacity:40 +caveModeToggleTimer:1000 +legibleCaveMaps:false +biomeBlending:true +displayTrackedPlayers:true +dimensionScaledMaxWaypointDistance:true +displayClaims:true +displayCurrentClaim:true +claimsFillOpacity:46 +claimsBorderOpacity:80 +infoDisplayOrder:coords:overworld_coords:chunk_coords:angles:dimension:biome:weather:light_level:time:real_time:highlights:light_overlay_indicator:manual_cave_mode_indicator:custom_sub_world +infoDisplay:coords:true:15:-1 +infoDisplay:overworld_coords:false:15:-1 +infoDisplay:chunk_coords:false:15:-1 +infoDisplay:angles:false:15:-1 +infoDisplay:dimension:false:15:-1 +infoDisplay:biome:false:15:-1 +infoDisplay:weather:false:15:-1 +infoDisplay:light_level:0:15:-1 +infoDisplay:time:0:15:-1 +infoDisplay:real_time:0:15:-1 +infoDisplay:highlights:true:15:-1 +infoDisplay:light_overlay_indicator:true:15:-1 +infoDisplay:manual_cave_mode_indicator:true:15:-1 +infoDisplay:custom_sub_world:true:15:-1 +module;id=xaerominimap:minimap;active=true;x=0;y=0;centered=false;fromRight=false;fromBottom=false;flippedVer=false;flippedHor=false; diff --git a/config/xaerominimap_entities.json b/config/xaerominimap_entities.json new file mode 100644 index 0000000..46474f8 --- /dev/null +++ b/config/xaerominimap_entities.json @@ -0,0 +1,191 @@ +{ + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [ + "minecraft:glow_item_frame", + "minecraft:item_frame" + ], + "name": "gui.xaero_entity_category_root", + "protection": true, + "settingOverrides": { + "displayHeight": 0.0, + "displayed": true, + "heightBasedFade": true, + "renderOrder": 0.0, + "color": 13.0, + "displayNameWhenIconFails": true, + "entityNumber": 1000.0, + "alwaysDisplayNametags": false, + "dotSize": 2.0, + "startFadingAt": 0.0, + "renderOverMinimapFrame": 1.0, + "icons": 1.0, + "heightLimit": 20.0, + "names": 0.0, + "iconScale": 1.0 + }, + "subCategories": [ + { + "hardInclude": "living", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [ + "minecraft:armor_stand" + ], + "name": "gui.xaero_entity_category_living", + "protection": true, + "settingOverrides": { + "renderOrder": 2.0, + "color": 14.0 + }, + "subCategories": [ + { + "hardInclude": "players", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_players", + "protection": true, + "settingOverrides": { + "renderOrder": 6.0, + "heightLimit": 2050.0, + "color": 15.0 + }, + "subCategories": [ + { + "hardInclude": "nothing", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_friend", + "protection": true, + "settingOverrides": {}, + "subCategories": [] + }, + { + "hardInclude": "tracked", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_tracked", + "protection": true, + "settingOverrides": { + "icons": 2.0 + }, + "subCategories": [] + }, + { + "hardInclude": "same-team", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_same_team", + "protection": true, + "settingOverrides": {}, + "subCategories": [] + }, + { + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_other_teams", + "protection": true, + "settingOverrides": { + "renderOrder": 7.0 + }, + "subCategories": [] + } + ] + }, + { + "hardInclude": "hostile", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_hostile", + "protection": true, + "settingOverrides": { + "renderOrder": 3.0 + }, + "subCategories": [ + { + "hardInclude": "tamed", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_hostile_tamed", + "protection": true, + "settingOverrides": { + "renderOrder": 5.0 + }, + "subCategories": [] + } + ] + }, + { + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_friendly", + "protection": true, + "settingOverrides": {}, + "subCategories": [ + { + "hardInclude": "tamed", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_friendly_tamed", + "protection": true, + "settingOverrides": { + "renderOrder": 4.0 + }, + "subCategories": [] + } + ] + } + ] + }, + { + "hardInclude": "items", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_items", + "protection": true, + "settingOverrides": { + "renderOrder": 1.0, + "color": 12.0 + }, + "subCategories": [] + }, + { + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_other_entities", + "protection": true, + "settingOverrides": { + "color": 5.0 + }, + "subCategories": [] + } + ] +} \ No newline at end of file diff --git a/config/xaeropatreon.txt b/config/xaeropatreon.txt new file mode 100644 index 0000000..e69de29 diff --git a/config/xaeroworldmap-common.txt b/config/xaeroworldmap-common.txt new file mode 100644 index 0000000..45db935 --- /dev/null +++ b/config/xaeroworldmap-common.txt @@ -0,0 +1,3 @@ +allowCaveModeOnServer:true +allowNetherCaveModeOnServer:true +registerStatusEffects:true diff --git a/config/xaeroworldmap.txt b/config/xaeroworldmap.txt new file mode 100644 index 0000000..9f37d81 --- /dev/null +++ b/config/xaeroworldmap.txt @@ -0,0 +1,55 @@ +ignoreUpdate:0 +updateNotification:true +allowInternetAccess:true +differentiateByServerAddress:true +caveMapsAllowed:true +debug:false +lighting:true +colours:0 +loadChunks:true +updateChunks:true +terrainSlopes:2 +terrainDepth:true +footsteps:true +flowers:true +coordinates:true +hoveredBiome:true +biomeColorsVanillaMode:false +waypoints:true +renderArrow:true +displayZoom:true +worldmapWaypointsScale:1.0 +openMapAnimation:true +reloadVersion:0 +reloadEverything:false +zoomButtons:true +waypointBackgrounds:true +detectAmbiguousY:true +showDisabledWaypoints:false +closeWaypointsWhenHopping:true +adjustHeightForCarpetLikeBlocks:true +onlyCurrentMapWaypoints:false +minZoomForLocalWaypoints:0.0 +arrowColour:-2 +minimapRadar:true +renderWaypoints:true +partialYTeleportation:true +displayStainedGlass:true +caveModeDepth:30 +caveModeStart:2147483647 +autoCaveMode:-1 +legibleCaveMaps:false +displayCaveModeStart:true +caveModeToggleTimer:1000 +defaultCaveModeType:1 +biomeBlending:true +trackedPlayers:true +multipleImagesExport:false +nightExport:false +highlightsExport:false +exportScaleDownSquare:20 +mapWritingDistance:-1 +displayClaims:true +claimsFillOpacity:46 +claimsBorderOpacity:80 +globalVersion:1 diff --git a/config/yacl.json5 b/config/yacl.json5 new file mode 100644 index 0000000..2c8b942 --- /dev/null +++ b/config/yacl.json5 @@ -0,0 +1,3 @@ +{ + showColorPickerIndicator: true +} \ No newline at end of file diff --git a/config/yigd.json b/config/yigd.json new file mode 100644 index 0000000..fc062ed --- /dev/null +++ b/config/yigd.json @@ -0,0 +1,205 @@ +{ + "inventoryConfig": { + "dropPlayerHead": false, + "itemLoss": { + "enabled": false, + "affectStacks": false, + "usePercentRange": true, + "lossRangeFrom": 0, + "lossRangeTo": 100, + "percentChanceOfLoss": 50, + "canLoseSoulbound": false + }, + "vanishingEnchantments": [ + "minecraft:vanishing_curse" + ], + "soulboundEnchantments": [ + "yigd:soulbound" + ], + "loseSoulboundLevelOnDeath": false, + "vanishingSlots": [], + "soulboundSlots": [], + "dropOnGroundSlots": [] + }, + "expConfig": { + "dropBehaviour": "BEST_OF_BOTH", + "dropPercentage": 0, + "keepPercentage": 0 + }, + "graveConfig": { + "enabled": true, + "storeItems": true, + "storeXp": true, + "informGraveLocation": true, + "requireItem": false, + "requiredItem": "yigd:grave", + "requireShovelToLoot": false, + "retrieveMethods": { + "onClick": true, + "onBreak": false, + "onSneak": false, + "onStand": false + }, + "mergeStacksOnRetrieve": true, + "dropOnRetrieve": "IN_INVENTORY", + "dropGraveBlock": false, + "generateEmptyGraves": false, + "overrideSpawnProtection": true, + "claimPriority": "GRAVE", + "graveRobbing": { + "enabled": true, + "onlyMurderer": false, + "afterTime": 1, + "timeUnit": "HOURS", + "robPriority": "INVENTORY", + "notifyWhenRobbed": true, + "tellWhoRobbed": true + }, + "graveTimeout": { + "enabled": false, + "afterTime": 5, + "timeUnit": "HOURS", + "dropContentsOnTimeout": true + }, + "treatBindingCurse": true, + "generateGraveInVoid": true, + "lowestGraveY": 3, + "generateOnlyWithinBorder": true, + "ignoredDeathTypes": [], + "unlockable": true, + "randomSpawn": { + "percentSpawnChance": 0, + "spawnEntity": "minecraft:zombie", + "spawnNbt": "{ArmorItems:[{},{},{},{id:\"minecraft:player_head\",tag:{SkullOwner:{Name:\"${owner.name}\",Id:\"${owner.uuid}\"}},Count:1b}]}" + }, + "generateOnLastGroundPos": false, + "generationMaxDistance": { + "x": 5, + "y": 5, + "z": 5 + }, + "useSoftBlockWhitelist": false, + "useStrictBlockBlacklist": true, + "replaceOldWhenClaimed": true, + "dropItemsIfDestroyed": false, + "notifyOwnerIfDestroyed": true, + "persistentGraves": { + "enabled": false, + "showDeathDay": true, + "showDeathIrlTime": true, + "useAmPm": true + }, + "dimensionBlacklist": [], + "blockUnderGrave": { + "enabled": true, + "blockInDimensions": [ + { + "key": "minecraft:overworld", + "value": "minecraft:cobblestone" + }, + { + "key": "minecraft:the_nether", + "value": "minecraft:soul_soil" + }, + { + "key": "minecraft:the_end", + "value": "minecraft:end_stone" + }, + { + "key": "misc", + "value": "minecraft:dirt" + } + ], + "generateOnProtectedLand": false + }, + "sellOutOfflinePeople": false, + "maxBackupsPerPerson": 50, + "dropFromOldestWhenDeleted": true + }, + "respawnConfig": { + "respawnEffects": [], + "respawnHealth": -1, + "resetHunger": true, + "respawnHunger": -1, + "resetSaturation": true, + "respawnSaturation": -1.0, + "extraItemDrops": [] + }, + "compatConfig": { + "standardDropRuleInClaim": "PUT_IN_GRAVE", + "enableInventorioCompat": true, + "defaultInventorioDropRule": "PUT_IN_GRAVE", + "enableLevelzCompat": true, + "defaultLevelzDropRule": "PUT_IN_GRAVE", + "enableNumismaticOverhaulCompat": true, + "defaultNumismaticDropRule": "PUT_IN_GRAVE", + "enableOriginsInventoryCompat": true, + "defaultOriginsDropRule": "PUT_IN_GRAVE", + "enableTravelersBackpackCompat": true, + "defaultTravelersBackpackDropRule": "PUT_IN_GRAVE", + "enableTrinketsCompat": true, + "defaultTrinketsDropRule": "PUT_IN_GRAVE", + "enableBeansBackpacksCompat": true, + "defaultBeansBackpacksDropRule": "PUT_IN_GRAVE", + "enableRespawnObelisksCompat": true + }, + "commandConfig": { + "mainCommand": "yigd", + "basePermissionLevel": 0, + "viewLatestPermissionLevel": 0, + "viewSelfPermissionLevel": 0, + "viewUserPermissionLevel": 2, + "viewAllPermissionLevel": 2, + "restorePermissionLevel": 2, + "robPermissionLevel": 2, + "whitelistPermissionLevel": 3, + "deletePermissionLevel": 3, + "unlockPermissionLevel": 0 + }, + "graveRendering": { + "useCustomFeatureRenderer": true, + "useSkullRenderer": true, + "useTextRenderer": true, + "adaptRenderer": false, + "useGlowingEffect": true, + "glowingDistance": 15 + }, + "extraFeatures": { + "soulboundEnchant": { + "enabled": true, + "isTreasure": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": false + }, + "deathSightEnchant": { + "enabled": false, + "isTreasure": true, + "isAvailableForEnchantedBookOffer": true, + "isAvailableForRandomSelection": false, + "range": 64.0, + "targets": "PLAYER_GRAVES" + }, + "graveKeys": { + "enabled": false, + "rebindable": true, + "required": true, + "receiveOnRespawn": true, + "obtainableFromGui": false, + "targeting": "PLAYER_GRAVE" + }, + "deathScroll": { + "enabled": false, + "rebindable": false, + "receiveOnRespawn": false, + "clickFunction": "VIEW_CONTENTS", + "consumeOnUse": false + }, + "graveCompass": { + "receiveOnRespawn": false, + "consumeOnUse": true, + "deleteWhenUnlinked": true, + "cloneRecoveryCompassWithGUI": false, + "pointToClosest": "DISABLED" + } + } +} \ No newline at end of file diff --git a/config/yungsmenutweaks-fabric-1_20_1.toml b/config/yungsmenutweaks-fabric-1_20_1.toml new file mode 100644 index 0000000..d5e22f8 --- /dev/null +++ b/config/yungsmenutweaks-fabric-1_20_1.toml @@ -0,0 +1,5 @@ +[yungsMenuTweaks] +enableRightClickCycleButton = true +enableMouseScrollOnSliders = true +enableBackgroundTexture = false +backgroundTexture = "minecraft:textures/block/dirt.png" diff --git a/config/zenith/adventure.cfg b/config/zenith/adventure.cfg new file mode 100644 index 0000000..8cae72d --- /dev/null +++ b/config/zenith/adventure.cfg @@ -0,0 +1,145 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Zenith Adventure Module Config + +affixes { + # A list of type overrides for the affix loot system. Format is |chance|. + # Valid types are: none, sword, trident, shield, heavy_weapon, pickaxe, shovel, crossbow, bow + # Default: [minecraft:iron_sword|sword], [minecraft:shulker_shell|none] + S:"Equipment Type Overrides" < + minecraft:iron_sword|sword + minecraft:shulker_shell|none + > + + # The chance that a naturally spawned mob will be granted an affix item. 0 = 0%, 1 = 100% + # Default: 0.075; Range: [0.0 ~ 1.0] + S:"Random Affix Chance"=0.075 + + # The chance that a mob will drop a gem. 0 = 0%, 1 = 100% + # Default: 0.045; Range: [0.0 ~ 1.0] + S:"Gem Drop Chance"=0.045 + + # The flat bonus chance that bosses have to drop a gem, added to Gem Drop Chance. 0 = 0%, 1 = 100% + # Default: 0.33; Range: [0.0 ~ 1.0] + S:"Gem Boss Bonus"=0.33 + + # If affixes that cleave can hit players (excluding the user). + # Default: false + B:"Cleave Players"=false + + # Loot Rules, in the form of Loot Table Matchers, permitting affix items to spawn in loot tables. + # The format for these is domain:pattern|chance and domain is optional. Domain is a modid, pattern is a regex string, and chance is a float 0..1 chance for the item to spawn in any matched tables. + # If you omit the domain, the format is pattern|chance, and the matcher will run for all domains. + # The pattern MUST be a valid regex string, and should match the paths of desired loot tables under the specified domain. Note: "Match Any Character" is ".*" (dot star) and not "*" (star). + # If there is a match, an item has a chance to spawn in that loot table. + # Default: [minecraft:chests.*|0.35], [.*chests.*|0.3], [twilightforest:structures.*|0.3] + S:"Affix Item Loot Rules" < + minecraft:chests.*|0.35 + .*chests.*|0.3 + twilightforest:structures.*|0.3 + > + + # Loot Rules, in the form of Loot Table Matchers, permitting affixes to be added to any valid item. Here, the chance refers to the chance an item receives affixes. See comment on "Affix Item Loot Rules" for description. + # Default: [.*blocks.*|0], [.*|0.35] + S:"Affix Convert Loot Rules" < + .*blocks.*|0 + .*|0.35 + > + + # Dimensional rarities for affix conversion (see "Affix Convert Loot Rules"), in the form of dimension|min|max. A dimension not listed uses all rarities. + # Default: [overworld|common|rare], [the_nether|uncommon|epic], [the_end|rare|mythic], [twilightforest:twilight_forest|uncommon|epic] + S:"Affix Convert Rarities" < + overworld|common|rare + the_nether|uncommon|epic + the_end|rare|mythic + twilightforest:twilight_forest|uncommon|epic + > + + # The item that will be used when attempting to place torches with the torch placer affix. Must be a valid item that places a block on right click. + # Default: minecraft:torch + S:"Torch Placement Item"=minecraft:torch +} + + +gems { + # If gems will be grouped in collapsable entries in REI. + # Default: true + B:"Collapse REI gem entries"=true + + # Loot Rules, in the form of Loot Table Matchers, permitting gems to spawn in loot tables. See comment on "Affix Item Loot Rules" for description. + # Default: [minecraft:chests.*|0.25], [.*chests.*|0.20], [twilightforest:structures.*|0.20] + S:"Gem Loot Rules" < + minecraft:chests.*|0.25 + .*chests.*|0.20 + twilightforest:structures.*|0.20 + > + + # Dimensional rarities for gem drops, in the form of dimension|min|max. A dimension not listed uses all rarities. + # Default: [overworld|common|mythic], [the_nether|uncommon|mythic], [the_end|rare|mythic], [twilightforest:twilight_forest|uncommon|mythic] + S:"Gem Dimensional Rarities" < + overworld|common|mythic + the_nether|uncommon|mythic + the_end|rare|mythic + twilightforest:twilight_forest|uncommon|mythic + > +} + + +bosses { + # If boss items are always cursed. Enable this if you want bosses to be less overpowered by always giving them a negative effect. + # Default: false + B:"Curse Boss Items"=false + + # The range at which boss spawns will be announced. If you are closer than this number of blocks (ignoring y-level), you will receive the announcement. + # Default: 96.0; Range: [0.0 ~ 1024.0] + S:"Boss Announce Range"=96.0 + + # The volume of the boss announcement sound. 0 to disable. This control is clientside. + # Default: 0.75; Range: [0.0 ~ 1.0] + S:"Boss Announce Volume"=0.75 + + # If the boss announcement range ignores y-level. + # Default: false + B:"Boss Announce Ignore Y"=false + + # The time, in ticks, that must pass between any two natural boss spawns in a single dimension. + # Default: 3600; Range: [0 ~ 720000] + I:"Boss Spawn Cooldown"=3600 + + # If true, invading bosses will automatically target the closest player. + # Default: false + B:"Boss Auto-Aggro"=false + + # If true, bosses will glow when they spawn. + # Default: true + B:"Boss Glowing On Spawn"=true + + # Dimensions where bosses can spawn naturally, spawn chance, and spawn rules. + # Format is dimname|chance|rule, chance is a float from 0..1. + # Valid rules are visible here https://github.com/Shadows-of-Fire/Apotheosis/blob/1.19/src/main/java/shadows/apotheosis/adventure/boss/BossEvents.java#L174C27-L174C27 + # Default: [minecraft:overworld|0.018|NEEDS_SKY], [minecraft:the_nether|0.025|ANY], [minecraft:the_end|0.018|SURFACE_OUTER_END], [twilightforest:twilight_forest|0.05|NEEDS_SURFACE] + S:"Boss Spawn Dimensions" < + minecraft:overworld|0.018|NEEDS_SKY + minecraft:the_nether|0.025|ANY + minecraft:the_end|0.018|SURFACE_OUTER_END + twilightforest:twilight_forest|0.05|NEEDS_SURFACE + > +} + + +worldgen { + # The dimensions that the deadly module will generate in. + # Default: [overworld] + S:"Generation Dimension Whitelist" < + overworld + > +} + + +spawners { + # The chance that a Rogue Spawner has a "valuable" chest instead of a standard one. 0 = 0%, 1 = 100% + # Default: 0.11; Range: [0.0 ~ 1.0] + S:"Spawner Value Chance"=0.11 +} + + diff --git a/config/zenith/ench.cfg b/config/zenith/ench.cfg new file mode 100644 index 0000000..5bea981 --- /dev/null +++ b/config/zenith/ench.cfg @@ -0,0 +1,15 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Zenith Enchantment Module Config + +client { + # If enchanted book metadata (treasure, tradeable, etc) are shown in the tooltip. + # Default: true + B:"Show Enchanted Book Metadata"=true + + # The 1/n chance that a sculkshelf plays a sound, per client tick. Set to 0 to disable. + # Default: 200; Range: [0 ~ 32767] + I:"Sculkshelf Noise Chance"=200 +} + + diff --git a/config/zenith/enchantments.cfg b/config/zenith/enchantments.cfg new file mode 100644 index 0000000..0f2ca3f --- /dev/null +++ b/config/zenith/enchantments.cfg @@ -0,0 +1,7490 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Zenith Enchantment Information + +# This file contains configurable data for each enchantment. +# The names of each category correspond to the registry names of every loaded enchantment. + + +"minecraft:protection" { + # The max level of this enchantment - originally 4. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 12 * x + S:"Max Power Function"=12 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"minecraft:fire_protection" { + # The max level of this enchantment - originally 4. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 11 * x + S:"Max Power Function"=11 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:feather_falling" { + # The max level of this enchantment - originally 4. + # Default: 11; Range: [1 ~ 127] + I:"Max Level"=11 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 9 * x + S:"Max Power Function"=9 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:blast_protection" { + # The max level of this enchantment - originally 4. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 11 * x + S:"Max Power Function"=11 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:projectile_protection" { + # The max level of this enchantment - originally 4. + # Default: 11; Range: [1 ~ 127] + I:"Max Level"=11 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 9 * x + S:"Max Power Function"=9 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:respiration" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:aqua_affinity" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:thorns" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 20 * x + S:"Max Power Function"=20 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:depth_strider" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:frost_walker" { + # The max level of this enchantment - originally 2. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:binding_curse" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:soul_speed" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:swift_sneak" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 20 * x + S:"Max Power Function"=20 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:sharpness" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 11 * x + S:"Max Power Function"=11 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"minecraft:smite" { + # The max level of this enchantment - originally 5. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 10 * x + S:"Max Power Function"=10 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:bane_of_arthropods" { + # The max level of this enchantment - originally 5. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 10 * x + S:"Max Power Function"=10 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:knockback" { + # The max level of this enchantment - originally 2. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 20 * x + S:"Max Power Function"=20 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:fire_aspect" { + # The max level of this enchantment - originally 2. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 20 * x + S:"Max Power Function"=20 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:looting" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 12 * x + S:"Max Power Function"=12 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:sweeping" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 12 * x + S:"Max Power Function"=12 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:efficiency" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 11 * x + S:"Max Power Function"=11 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"minecraft:silk_touch" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:unbreaking" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 12 * x + S:"Max Power Function"=12 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:fortune" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 12 * x + S:"Max Power Function"=12 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:power" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 11 * x + S:"Max Power Function"=11 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"minecraft:punch" { + # The max level of this enchantment - originally 2. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 20 * x + S:"Max Power Function"=20 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:flame" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:infinity" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:luck_of_the_sea" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 12 * x + S:"Max Power Function"=12 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:lure" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 12 * x + S:"Max Power Function"=12 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:loyalty" { + # The max level of this enchantment - originally 3. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 11 * x + S:"Max Power Function"=11 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:impaling" { + # The max level of this enchantment - originally 5. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 10 * x + S:"Max Power Function"=10 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:riptide" { + # The max level of this enchantment - originally 3. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 11 * x + S:"Max Power Function"=11 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:channeling" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"minecraft:multishot" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:quick_charge" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 20 * x + S:"Max Power Function"=20 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"minecraft:piercing" { + # The max level of this enchantment - originally 4. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 12 * x + S:"Max Power Function"=12 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"minecraft:mending" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"minecraft:vanishing_curse" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"combatroll:longfooted" { + # The max level of this enchantment - originally 5. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 12 * x + S:"Max Power Function"=12 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"combatroll:acrobat" { + # The max level of this enchantment - originally 10. + # Default: 11; Range: [1 ~ 127] + I:"Max Level"=11 + + # The max level of this enchantment available from loot sources. + # Default: 10; Range: [1 ~ 127] + I:"Max Loot Level"=10 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 9 * x + S:"Max Power Function"=9 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"combatroll:multi_roll" { + # The max level of this enchantment - originally 4. + # Default: 6; Range: [1 ~ 127] + I:"Max Level"=6 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 16 * x + S:"Max Power Function"=16 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"spell_engine:spell_infinity" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"spell_power:haste" { + # The max level of this enchantment - originally 5. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"spell_power:critical_chance" { + # The max level of this enchantment - originally 5. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 12 * x + S:"Max Power Function"=12 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"spell_power:critical_damage" { + # The max level of this enchantment - originally 5. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 12 * x + S:"Max Power Function"=12 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"spell_power:magic_protection" { + # The max level of this enchantment - originally 4. + # Default: 11; Range: [1 ~ 127] + I:"Max Level"=11 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 9 * x + S:"Max Power Function"=9 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"spell_power:sunfire" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 11 * x + S:"Max Power Function"=11 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"spell_power:energize" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 11 * x + S:"Max Power Function"=11 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"spell_power:spell_power" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 11 * x + S:"Max Power Function"=11 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"spell_power:soulfrost" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 11 * x + S:"Max Power Function"=11 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"walljump:wall_jump" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"walljump:double_jump" { + # The max level of this enchantment - originally 2. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 20 * x + S:"Max Power Function"=20 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"walljump:speed_boost" { + # The max level of this enchantment - originally 3. + # Default: 6; Range: [1 ~ 127] + I:"Max Level"=6 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 16 * x + S:"Max Power Function"=16 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"zenith:capturing" { + # The max level of this enchantment - originally 5. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"zenith:berserkers_fury" { + # The max level of this enchantment - originally 3. + # Default: 3; Range: [1 ~ 127] + I:"Max Level"=3 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 33 * x + S:"Max Power Function"=33 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"zenith:chainsaw" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"zenith:chromatic" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"zenith:crescendo" { + # The max level of this enchantment - originally 5. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 20 * x + S:"Max Power Function"=20 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"zenith:earths_boon" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 20 * x + S:"Max Power Function"=20 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"zenith:endless_quiver" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"zenith:exploitation" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"zenith:growth_serum" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"zenith:icy_thorns" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 20 * x + S:"Max Power Function"=20 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"zenith:infusion" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"zenith:knowledge" { + # The max level of this enchantment - originally 3. + # Default: 3; Range: [1 ~ 127] + I:"Max Level"=3 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 33 * x + S:"Max Power Function"=33 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"zenith:life_mending" { + # The max level of this enchantment - originally 3. + # Default: 3; Range: [1 ~ 127] + I:"Max Level"=3 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 33 * x + S:"Max Power Function"=33 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"zenith:miners_fervor" { + # The max level of this enchantment - originally 5. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 20 * x + S:"Max Power Function"=20 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"zenith:natures_blessing" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"zenith:obliteration" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"zenith:rebounding" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 20 * x + S:"Max Power Function"=20 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"zenith:reflective" { + # The max level of this enchantment - originally 5. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"zenith:scavenger" { + # The max level of this enchantment - originally 3. + # Default: 3; Range: [1 ~ 127] + I:"Max Level"=3 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 33 * x + S:"Max Power Function"=33 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"zenith:shield_bash" { + # The max level of this enchantment - originally 4. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 4; Range: [1 ~ 127] + I:"Max Loot Level"=4 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"zenith:spearfishing" { + # The max level of this enchantment - originally 5. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"zenith:splitting" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"zenith:stable_footing" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"zenith:tempting" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"zenith:bane_of_illagers" { + # The max level of this enchantment - originally 5. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 10 * x + S:"Max Power Function"=10 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"betternether:obsidian_breaker" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"betternether:ruby_fire" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"obscure_api:distance" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"obscure_api:mirror" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"obscure_api:fast_spin" { + # The max level of this enchantment - originally 5. + # Default: 9; Range: [1 ~ 127] + I:"Max Level"=9 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 11 * x + S:"Max Power Function"=11 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: COMMON + S:Rarity=COMMON +} + + +"archon:arcane" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 20 * x + S:"Max Power Function"=20 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"azurelib:incendiaryenchantment" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"betterarcheology:penetrating_strike" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"betterarcheology:soaring_winds" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"betterarcheology:tunneling" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"betterend:end_veil" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"deeperdarker:catalysis" { + # The max level of this enchantment - originally 3. + # Default: 5; Range: [1 ~ 127] + I:"Max Level"=5 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 20 * x + S:"Max Power Function"=20 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"deeperdarker:sculk_smite" { + # The max level of this enchantment - originally 5. + # Default: 10; Range: [1 ~ 127] + I:"Max Level"=10 + + # The max level of this enchantment available from loot sources. + # Default: 5; Range: [1 ~ 127] + I:"Max Loot Level"=5 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 10 * x + S:"Max Power Function"=10 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"grapplemod:doublejumpenchantment" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"grapplemod:wallrunenchantment" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"grapplemod:slidingenchantment" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcda:bag_of_souls" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcda:burning" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcda:chilling" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcda:cowardice" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcda:death_barter" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcda:deflect" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcda:fire_focus" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcda:fire_trail" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcda:food_reserves" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcda:frenzied" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcda:heal_allies" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcda:lucky_explorer" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcda:poison_focus" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcda:potion_barrier" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcda:reckless" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcda:recycler" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcda:snowball" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcda:surprise_gift" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcda:swiftfooted" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"mcdw:accelerate" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:ambush" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:anima_conduit" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:bonus_shot" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:burst_bowstring" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:busy_bee" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:chain_reaction" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:chains" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:charge" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:cobweb_shot" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:committed" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:critical_hit" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:dipping_poison" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:dynamo" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:echo" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:enigma_resonator" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:exploding" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:freezing" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:fuse_shot" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:gravity" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:growing" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:guarding_strike" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:illagers_bane" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:jungle_poison" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:leeching" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:levitation_shot" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:multi_shot" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:overcharge" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:pain_cycle" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:phantoms_mark" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:poison_cloud" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:prospector" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:radiance" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:rampaging" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:replenish" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:refreshment" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:ricochet" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:rushdown" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:shadow_barb" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:shadow_shot" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:shared_pain" { + # The max level of this enchantment - originally 3. + # Default: 8; Range: [1 ~ 127] + I:"Max Level"=8 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 12 * x + S:"Max Power Function"=12 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:shockwave" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:smiting" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:soul_devourer" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:soul_siphon" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:stunning" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:swirling" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:tempo_theft" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:thundering" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:void_shot" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:void_strike" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:weakening" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"mcdw:wild_rage" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: false + B:Tradeable=false + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: false + B:Scrappable=false + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + +"netherdepthsupgrade:hell_strider" { + # The max level of this enchantment - originally 2. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 2; Range: [1 ~ 127] + I:"Max Loot Level"=2 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"soulsweapons:fast_hands" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"soulsweapons:visceral" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"soulsweapons:stagger" { + # The max level of this enchantment - originally 3. + # Default: 7; Range: [1 ~ 127] + I:"Max Level"=7 + + # The max level of this enchantment available from loot sources. + # Default: 3; Range: [1 ~ 127] + I:"Max Loot Level"=3 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 14 * x + S:"Max Power Function"=14 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"things:retribution" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: UNCOMMON + S:Rarity=UNCOMMON +} + + +"veinmining:vein_mining" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: false + B:Treasure=false + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: true + B:Discoverable=true + + # If enchanted books of this enchantment are available via loot sources. + # Default: true + B:Lootable=true + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: RARE + S:Rarity=RARE +} + + +"yigd:soulbound" { + # The max level of this enchantment - originally 1. + # Default: 1; Range: [1 ~ 127] + I:"Max Level"=1 + + # The max level of this enchantment available from loot sources. + # Default: 1; Range: [1 ~ 127] + I:"Max Loot Level"=1 + + # A function to determine the max enchanting power. The variable "x" is level. See: https://github.com/uklimaschewski/EvalEx#usage-examples + # Default: 100 * x + S:"Max Power Function"=100 * x + + # A function to determine the min enchanting power. + # Default: 1 + S:"Min Power Function"=1 + + # If this enchantment is only available by loot sources. + # Default: true + B:Treasure=true + + # If this enchantment is obtainable via enchanting and enchanted loot items. + # Default: false + B:Discoverable=false + + # If enchanted books of this enchantment are available via loot sources. + # Default: false + B:Lootable=false + + # If enchanted books of this enchantment are available via villager trades. + # Default: true + B:Tradeable=true + + # If enchanted books of this enchantment are available to be scrapped via the tome of scrapping. + # Default: true + B:Scrappable=true + + # The rarity of this enchantment. Valid values are COMMON, UNCOMMON, RARE, and VERY_RARE. + # Default: VERY_RARE + S:Rarity=VERY_RARE +} + + diff --git a/config/zenith/garden.cfg b/config/zenith/garden.cfg new file mode 100644 index 0000000..f016aa0 --- /dev/null +++ b/config/zenith/garden.cfg @@ -0,0 +1,22 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Zenith Garden Module Configuration + +general { + # The max height a stack of cacti may grow to. Vanilla is 3. Values greater than 32 are uncapped growth. + # Server-authoritative. + # Default: 5; Range: [1 ~ 512] + I:"Cactus Height"=5 + + # The max height a stack of reeds may grow to. Vanilla is 3. Values greater than 32 are uncapped growth. + # Server-authoritative. + # Default: 255; Range: [1 ~ 512] + I:"Reed Height"=255 + + # The max height a stack of bamboo may grow to. Vanilla is 16. + # Server-authoritative. + # Default: 32; Range: [1 ~ 64] + I:"Bamboo Height"=32 +} + + diff --git a/config/zenith/names.cfg b/config/zenith/names.cfg new file mode 100644 index 0000000..322048d --- /dev/null +++ b/config/zenith/names.cfg @@ -0,0 +1,2882 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# + +entity { + # A list of full names, which are used in the generation of boss names. May be empty only if name parts is not empty. + # Default: [Prim], [Tyrael], [Bajorno], [Michael Morbius], [Morbius], [Arun], [Panez], [Doomsday], [Vanamar], [WhatTheDrunk], [Bagel], [Lothrazar], [Chelly], [Chelicia], [Darsh], [Dariush], [Cheese E Piloza], [Bing], [Royal], [NoWayHere], [SwankyStella], [Isosahedron], [Chorb], [Asfalis], [Biz], [Icicle], [Darko], [Shadows], [Katarina], [Faellynna], [Diliviel], [Jank], [Albert], [Andrew], [Anderson], [Andy], [Allan], [Arthur], [Aaron], [Allison], [Arielle], [Amanda], [Anne], [Annie], [Amy], [Alana], [Brandon], [Brady], [Bernard], [Ben], [Benjamin], [Bob], [Bobette], [Brooke], [Brandy], [Beatrice], [Bea], [Bella], [Becky], [Carlton], [Carl], [Calvin], [Cameron], [Carson], [Chase], [Cassandra], [Cassie], [Cas], [Carol], [Carly], [Cherise], [Charlotte], [Cheryl], [Chasity], [Danny], [Drake], [Daniel], [Derrel], [David], [Dave], [Donovan], [Don], [Donald], [Drew], [Derrick], [Darla], [Donna], [Dora], [Danielle], [Edward], [Elliot], [Ed], [Edson], [Elton], [Eddison], [Earl], [Eric], [Ericson], [Eddie], [Ediovany], [Emma], [Elizabeth], [Eliza], [Esperanza], [Esper], [Esmeralda], [Emi], [Emily], [Elaine], [Fernando], [Ferdinand], [Fred], [Feddie], [Fredward], [Frank], [Franklin], [Felix], [Felicia], [Fran], [Greg], [Gregory], [George], [Gerald], [Gina], [Geraldine], [Gabby], [Hendrix], [Henry], [Hobbes], [Herbert], [Heath], [Henderson], [Helga], [Hera], [Helen], [Helena], [Hannah], [Ike], [Issac], [Israel], [Ismael], [Irlanda], [Isabelle], [Irene], [Irenia], [Jimmy], [Jim], [Justin], [Jacob], [Jake], [Jon], [Johnson], [Jonny], [Jonathan], [Josh], [Joshua], [Julian], [Jesus], [Jericho], [Jeb], [Jess], [Joan], [Jill], [Jillian], [Jessica], [Jennifer], [Jenny], [Jen], [Judy], [Kenneth], [Kenny], [Ken], [Keith], [Kevin], [Karen], [Kassandra], [Kassie], [Leonard], [Leo], [Leroy], [Lee], [Lenny], [Luke], [Lucas], [Liam], [Lorraine], [Latasha], [Lauren], [Laquisha], [Livia], [Lydia], [Lila], [Lilly], [Lillian], [Lilith], [Lana], [Mason], [Mike], [Mickey], [Mario], [Manny], [Mark], [Marcus], [Martin], [Marty], [Matthew], [Matt], [Max], [Maximillian], [Marth], [Mia], [Marriah], [Maddison], [Maddie], [Marissa], [Miranda], [Mary], [Martha], [Melonie], [Melody], [Mel], [Minnie], [Nathan], [Nathaniel], [Nate], [Ned], [Nick], [Norman], [Nicholas], [Natasha], [Nicki], [Nora], [Nelly], [Nina], [Orville], [Oliver], [Orlando], [Owen], [Olsen], [Odin], [Olaf], [Ortega], [Olivia], [Patrick], [Pat], [Paul], [Perry], [Pinnochio], [Patrice], [Patricia], [Pennie], [Petunia], [Patti], [Pernelle], [Quade], [Quincy], [Quentin], [Quinn], [Roberto], [Robbie], [Rob], [Robert], [Roy], [Roland], [Ronald], [Richard], [Rick], [Ricky], [Rose], [Rosa], [Rhonda], [Rebecca], [Roberta], [Sparky], [Shiloh], [Stephen], [Steve], [Saul], [Sheen], [Shane], [Sean], [Sampson], [Samuel], [Sammy], [Stefan], [Sasha], [Sam], [Susan], [Suzy], [Shelby], [Samantha], [Sheila], [Sharon], [Sally], [Stephanie], [Sandra], [Sandy], [Sage], [Tim], [Thomas], [Thompson], [Tyson], [Tyler], [Tom], [Tyrone], [Timmothy], [Tamara], [Tabby], [Tabitha], [Tessa], [Tiara], [Tyra], [Uriel], [Ursala], [Uma], [Victor], [Vincent], [Vince], [Vance], [Vinny], [Velma], [Victoria], [Veronica], [Wilson], [Wally], [Wallace], [Will], [Wilard], [William], [Wilhelm], [Xavier], [Xandra], [Young], [Yvonne], [Yolanda], [Zach], [Zachary] + S:Names < + Prim + Tyrael + Bajorno + Michael Morbius + Morbius + Arun + Panez + Doomsday + Vanamar + WhatTheDrunk + Bagel + Lothrazar + Chelly + Chelicia + Darsh + Dariush + Cheese E Piloza + Bing + Royal + NoWayHere + SwankyStella + Isosahedron + Chorb + Asfalis + Biz + Icicle + Darko + Shadows + Katarina + Faellynna + Diliviel + Jank + Albert + Andrew + Anderson + Andy + Allan + Arthur + Aaron + Allison + Arielle + Amanda + Anne + Annie + Amy + Alana + Brandon + Brady + Bernard + Ben + Benjamin + Bob + Bobette + Brooke + Brandy + Beatrice + Bea + Bella + Becky + Carlton + Carl + Calvin + Cameron + Carson + Chase + Cassandra + Cassie + Cas + Carol + Carly + Cherise + Charlotte + Cheryl + Chasity + Danny + Drake + Daniel + Derrel + David + Dave + Donovan + Don + Donald + Drew + Derrick + Darla + Donna + Dora + Danielle + Edward + Elliot + Ed + Edson + Elton + Eddison + Earl + Eric + Ericson + Eddie + Ediovany + Emma + Elizabeth + Eliza + Esperanza + Esper + Esmeralda + Emi + Emily + Elaine + Fernando + Ferdinand + Fred + Feddie + Fredward + Frank + Franklin + Felix + Felicia + Fran + Greg + Gregory + George + Gerald + Gina + Geraldine + Gabby + Hendrix + Henry + Hobbes + Herbert + Heath + Henderson + Helga + Hera + Helen + Helena + Hannah + Ike + Issac + Israel + Ismael + Irlanda + Isabelle + Irene + Irenia + Jimmy + Jim + Justin + Jacob + Jake + Jon + Johnson + Jonny + Jonathan + Josh + Joshua + Julian + Jesus + Jericho + Jeb + Jess + Joan + Jill + Jillian + Jessica + Jennifer + Jenny + Jen + Judy + Kenneth + Kenny + Ken + Keith + Kevin + Karen + Kassandra + Kassie + Leonard + Leo + Leroy + Lee + Lenny + Luke + Lucas + Liam + Lorraine + Latasha + Lauren + Laquisha + Livia + Lydia + Lila + Lilly + Lillian + Lilith + Lana + Mason + Mike + Mickey + Mario + Manny + Mark + Marcus + Martin + Marty + Matthew + Matt + Max + Maximillian + Marth + Mia + Marriah + Maddison + Maddie + Marissa + Miranda + Mary + Martha + Melonie + Melody + Mel + Minnie + Nathan + Nathaniel + Nate + Ned + Nick + Norman + Nicholas + Natasha + Nicki + Nora + Nelly + Nina + Orville + Oliver + Orlando + Owen + Olsen + Odin + Olaf + Ortega + Olivia + Patrick + Pat + Paul + Perry + Pinnochio + Patrice + Patricia + Pennie + Petunia + Patti + Pernelle + Quade + Quincy + Quentin + Quinn + Roberto + Robbie + Rob + Robert + Roy + Roland + Ronald + Richard + Rick + Ricky + Rose + Rosa + Rhonda + Rebecca + Roberta + Sparky + Shiloh + Stephen + Steve + Saul + Sheen + Shane + Sean + Sampson + Samuel + Sammy + Stefan + Sasha + Sam + Susan + Suzy + Shelby + Samantha + Sheila + Sharon + Sally + Stephanie + Sandra + Sandy + Sage + Tim + Thomas + Thompson + Tyson + Tyler + Tom + Tyrone + Timmothy + Tamara + Tabby + Tabitha + Tessa + Tiara + Tyra + Uriel + Ursala + Uma + Victor + Vincent + Vince + Vance + Vinny + Velma + Victoria + Veronica + Wilson + Wally + Wallace + Will + Wilard + William + Wilhelm + Xavier + Xandra + Young + Yvonne + Yolanda + Zach + Zachary + > + + # A list of name pieces, which can be spliced together to create full names. May be empty only if names is not empty. + # Default: [Prim], [Morb], [Ius], [Kat], [Chel], [Bing], [Darsh], [Jank], [Dark], [Osto], [Grab], [Thar], [Ger], [Ald], [Mas], [On], [O], [Din], [Thor], [Jon], [Ath], [Burb], [En], [A], [E], [I], [U], [Hab], [Bloo], [Ena], [Dit], [Aph], [Ern], [Bor], [Dav], [Id], [Toast], [Son], [For], [Wen], [Lob], [Van], [Zap], [Ear], [Ben], [Don], [Bran], [Gro], [Jen], [Bob], [Ette], [Ere], [Man], [Qua], [Bro], [Cree], [Per], [Skel], [Ton], [Zom], [Bie], [Wolf], [End], [Er], [Pig], [Sil], [Ver], [Fish], [Cow], [Chic], [Ken], [Sheep], [Squid], [Hell] + S:"Name Parts" < + Prim + Morb + Ius + Kat + Chel + Bing + Darsh + Jank + Dark + Osto + Grab + Thar + Ger + Ald + Mas + On + O + Din + Thor + Jon + Ath + Burb + En + A + E + I + U + Hab + Bloo + Ena + Dit + Aph + Ern + Bor + Dav + Id + Toast + Son + For + Wen + Lob + Van + Zap + Ear + Ben + Don + Bran + Gro + Jen + Bob + Ette + Ere + Man + Qua + Bro + Cree + Per + Skel + Ton + Zom + Bie + Wolf + End + Er + Pig + Sil + Ver + Fish + Cow + Chic + Ken + Sheep + Squid + Hell + > + + # A list of prefixes, which are used in the generation of boss names. May be empty. + # Default: [Dr. Michael], [Sir], [Mister], [Madam], [Doctor], [Father], [Mother], [Poppa], [Lord], [Lady], [Overseer], [Professor], [Mr.], [Mr. President], [Duke], [Duchess], [Dame], [The Honorable], [Chancellor], [Vice-Chancellor], [His Holiness], [Reverend], [Count], [Viscount], [Earl], [Captain], [Major], [General], [Senpai] + S:Prefixes < + Dr. Michael + Sir + Mister + Madam + Doctor + Father + Mother + Poppa + Lord + Lady + Overseer + Professor + Mr. + Mr. President + Duke + Duchess + Dame + The Honorable + Chancellor + Vice-Chancellor + His Holiness + Reverend + Count + Viscount + Earl + Captain + Major + General + Senpai + > + + # A list of suffixes, which are used in the generation of boss names. A suffix is always preceeded by "The". May be empty. + # Default: [Morbius], [Dragonborn], [Rejected], [Mighty], [Supreme], [Superior], [Ultimate], [Lame], [Wimpy], [Curious], [Sneaky], [Pathetic], [Crying], [Eagle], [Errant], [Unholy], [Questionable], [Mean], [Hungry], [Thirsty], [Feeble], [Wise], [Sage], [Magical], [Mythical], [Legendary], [Not Very Nice], [Jerk], [Doctor], [Misunderstood], [Angry], [Knight], [Bishop], [Godly], [Special], [Toasty], [Shiny], [Shimmering], [Light], [Dark], [Odd-Smelling], [Funky], [Rock Smasher], [Son of Herobrine], [Cracked], [Sticky], [§kAlien§r], [Baby], [Manly], [Rough], [Scary], [Undoubtable], [Honest], [Non-Suspicious], [Boring], [Odd], [Lazy], [Super], [Nifty], [Ogre Slayer], [Pig Thief], [Dirt Digger], [Really Cool], [Doominator], [... Something], [Extra-Fishy], [Gorilla Slaughterer], [Marbles Winner], [AC Rizzlord], [President], [Burger Chef], [Professional Animator], [Cheese Sprayer], [Happiness Advocate], [Ghost Hunter], [Head of Potatoes], [Ninja], [Warrior], [Pyromancer] + S:Suffixes < + Morbius + Dragonborn + Rejected + Mighty + Supreme + Superior + Ultimate + Lame + Wimpy + Curious + Sneaky + Pathetic + Crying + Eagle + Errant + Unholy + Questionable + Mean + Hungry + Thirsty + Feeble + Wise + Sage + Magical + Mythical + Legendary + Not Very Nice + Jerk + Doctor + Misunderstood + Angry + Knight + Bishop + Godly + Special + Toasty + Shiny + Shimmering + Light + Dark + Odd-Smelling + Funky + Rock Smasher + Son of Herobrine + Cracked + Sticky + §kAlien§r + Baby + Manly + Rough + Scary + Undoubtable + Honest + Non-Suspicious + Boring + Odd + Lazy + Super + Nifty + Ogre Slayer + Pig Thief + Dirt Digger + Really Cool + Doominator + ... Something + Extra-Fishy + Gorilla Slaughterer + Marbles Winner + AC Rizzlord + President + Burger Chef + Professional Animator + Cheese Sprayer + Happiness Advocate + Ghost Hunter + Head of Potatoes + Ninja + Warrior + Pyromancer + > +} + + +items { + # A list of root names for helms, used in the generation of item names. May not be empty. + # Default: [Helmet], [Cap], [Crown], [Great Helm], [Bassinet], [Sallet], [Close Helm], [Barbute] + S:Helms < + Helmet + Cap + Crown + Great Helm + Bassinet + Sallet + Close Helm + Barbute + > + + # A list of root names for chestplates, used in the generation of item names. May not be empty. + # Default: [Chestplate], [Tunic], [Brigandine], [Hauberk], [Cuirass] + S:chestplates < + Chestplate + Tunic + Brigandine + Hauberk + Cuirass + > + + # A list of root names for leggings, used in the generation of item names. May not be empty. + # Default: [Leggings], [Pants], [Tassets], [Cuisses], [Schynbalds] + S:leggings < + Leggings + Pants + Tassets + Cuisses + Schynbalds + > + + # A list of root names for boots, used in the generation of item names. May not be empty. + # Default: [Boots], [Shoes], [Greaves], [Sabatons], [Sollerets] + S:boots < + Boots + Shoes + Greaves + Sabatons + Sollerets + > + + # A list of root names for swords, used in the generation of item names. May not be empty. + # Default: [Sword], [Cutter], [Slicer], [Dicer], [Knife], [Blade], [Machete], [Brand], [Claymore], [Cutlass], [Foil], [Dagger], [Glaive], [Rapier], [Saber], [Scimitar], [Shortsword], [Longsword], [Broadsword], [Calibur] + S:swords < + Sword + Cutter + Slicer + Dicer + Knife + Blade + Machete + Brand + Claymore + Cutlass + Foil + Dagger + Glaive + Rapier + Saber + Scimitar + Shortsword + Longsword + Broadsword + Calibur + > + + # A list of root names for axes, used in the generation of item names. May not be empty. + # Default: [Axe], [Chopper], [Hatchet], [Tomahawk], [Cleaver], [Hacker], [Tree-Cutter], [Truncator] + S:axes < + Axe + Chopper + Hatchet + Tomahawk + Cleaver + Hacker + Tree-Cutter + Truncator + > + + # A list of root names for pickaxes, used in the generation of item names. May not be empty. + # Default: [Pickaxe], [Pick], [Mattock], [Rock-Smasher], [Miner] + S:pickaxes < + Pickaxe + Pick + Mattock + Rock-Smasher + Miner + > + + # A list of root names for shovels, used in the generation of item names. May not be empty. + # Default: [Shovel], [Spade], [Digger], [Excavator], [Trowel], [Scoop] + S:shovels < + Shovel + Spade + Digger + Excavator + Trowel + Scoop + > + + # A list of root names for bows, used in the generation of item names. May not be empty. + # Default: [Bow], [Shortbow], [Longbow], [Flatbow], [Recurve Bow], [Reflex Bow], [Self Bow], [Composite Bow], [Arrow-Flinger] + S:bows < + Bow + Shortbow + Longbow + Flatbow + Recurve Bow + Reflex Bow + Self Bow + Composite Bow + Arrow-Flinger + > + + # A list of root names for shields, used in the generation of item names. May not be empty. + # Default: [Shield], [Buckler], [Targe], [Greatshield], [Blockade], [Bulwark], [Tower Shield], [Protector], [Aegis] + S:shields < + Shield + Buckler + Targe + Greatshield + Blockade + Bulwark + Tower Shield + Protector + Aegis + > +} + + +tools { + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:staff_netherite_arcane + # + # Default: [ + S:wizards_staff_netherite_arcane < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:golden_sword, minecraft:golden_shovel, minecraft:golden_pickaxe, minecraft:golden_axe, minecraft:golden_hoe, basicweapons:golden_dagger, basicweapons:golden_hammer, basicweapons:golden_club, basicweapons:golden_spear, basicweapons:golden_quarterstaff, betterend:golden_hammer, justhammers:gold_hammer, justhammers:gold_impact_hammer, justhammers:gold_reinforced_hammer, justhammers:gold_reinforced_impact_hammer, justhammers:gold_destructor_hammer, simplyswords:gold_longsword, simplyswords:gold_twinblade, simplyswords:gold_rapier, simplyswords:gold_katana, simplyswords:gold_sai, simplyswords:gold_spear, simplyswords:gold_glaive, simplyswords:gold_warglaive, simplyswords:gold_cutlass, simplyswords:gold_claymore, simplyswords:gold_greathammer, simplyswords:gold_greataxe, simplyswords:gold_chakram, simplyswords:gold_scythe, simplyswords:gold_halberd + # + # Default: [ + S:GOLD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:netherite_mace + # + # Default: [ + S:paladins_netherite_mace < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:stone_sword, minecraft:stone_shovel, minecraft:stone_pickaxe, minecraft:stone_axe, minecraft:stone_hoe, archon:rocky_harvester, archon:flaming_harvester, archon:warping_harvester, archon:breezy_harvester, archon:soaking_harvester, basicweapons:stone_dagger, basicweapons:stone_hammer, basicweapons:stone_club, basicweapons:stone_spear, basicweapons:stone_quarterstaff, justhammers:stone_hammer, justhammers:stone_impact_hammer, justhammers:stone_reinforced_hammer, justhammers:stone_reinforced_impact_hammer, justhammers:stone_destructor_hammer + # + # Default: [ + S:STONE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:diamond_sickle + # + # Default: [ + S:rogues_diamond_sickle < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:staff_frost + # + # Default: [ + S:wizards_staff_frost < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:golden_great_hammer + # + # Default: [ + S:paladins_golden_great_hammer < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:diamond_dagger + # + # Default: [ + S:rogues_diamond_dagger < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:staff_netherite_fire + # + # Default: [ + S:wizards_staff_netherite_fire < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:golden_glaive + # + # Default: [ + S:rogues_golden_glaive < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:wand_novice + # + # Default: [ + S:wizards_wand_novice < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:iron_mace + # + # Default: [ + S:paladins_iron_mace < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:staff_arcane + # + # Default: [ + S:wizards_staff_arcane < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:iron_sickle + # + # Default: [ + S:rogues_iron_sickle < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:golden_claymore + # + # Default: [ + S:paladins_golden_claymore < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:diamond_holy_staff + # + # Default: [ + S:paladins_diamond_holy_staff < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:golden_sickle + # + # Default: [ + S:rogues_golden_sickle < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:staff_netherite_frost + # + # Default: [ + S:wizards_staff_netherite_frost < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:wooden_great_hammer + # + # Default: [ + S:paladins_wooden_great_hammer < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:stone_great_hammer + # + # Default: [ + S:paladins_stone_great_hammer < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:netherite_sickle + # + # Default: [ + S:rogues_netherite_sickle < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: archers:diamond_spear + # + # Default: [ + S:archers_diamond_spear < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:wand_netherite_arcane + # + # Default: [ + S:wizards_wand_netherite_arcane < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:iron_dagger + # + # Default: [ + S:rogues_iron_dagger < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:netherite_holy_wand + # + # Default: [ + S:paladins_netherite_holy_wand < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: archers:golden_spear + # + # Default: [ + S:archers_golden_spear < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:golden_double_axe + # + # Default: [ + S:rogues_golden_double_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:golden_dagger + # + # Default: [ + S:rogues_golden_dagger < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:netherite_great_hammer + # + # Default: [ + S:paladins_netherite_great_hammer < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:iron_glaive + # + # Default: [ + S:rogues_iron_glaive < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:staff_fire + # + # Default: [ + S:wizards_staff_fire < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:iron_claymore + # + # Default: [ + S:paladins_iron_claymore < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:wand_arcane + # + # Default: [ + S:wizards_wand_arcane < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:wand_frost + # + # Default: [ + S:wizards_wand_frost < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:diamond_double_axe + # + # Default: [ + S:rogues_diamond_double_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:staff_wizard + # + # Default: [ + S:wizards_staff_wizard < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: archers:netherite_spear + # + # Default: [ + S:archers_netherite_spear < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:diamond_mace + # + # Default: [ + S:paladins_diamond_mace < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:stone_double_axe + # + # Default: [ + S:rogues_stone_double_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: archers:iron_spear + # + # Default: [ + S:archers_iron_spear < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:wooden_sword, minecraft:wooden_shovel, minecraft:wooden_pickaxe, minecraft:wooden_axe, minecraft:wooden_hoe, basicweapons:wooden_dagger, basicweapons:wooden_hammer, basicweapons:wooden_club, basicweapons:wooden_spear, basicweapons:wooden_quarterstaff, mcdw:staff_battlestaff, simplyswords:sword_on_a_stick + # + # Default: [ + S:WOOD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:iron_double_axe + # + # Default: [ + S:rogues_iron_double_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:diamond_glaive + # + # Default: [ + S:rogues_diamond_glaive < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:wand_netherite_frost + # + # Default: [ + S:wizards_wand_netherite_frost < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:holy_wand + # + # Default: [ + S:paladins_holy_wand < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:holy_staff + # + # Default: [ + S:paladins_holy_staff < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:golden_mace + # + # Default: [ + S:paladins_golden_mace < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:diamond_great_hammer + # + # Default: [ + S:paladins_diamond_great_hammer < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:netherite_double_axe + # + # Default: [ + S:rogues_netherite_double_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:acolyte_wand + # + # Default: [ + S:paladins_acolyte_wand < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:wand_netherite_fire + # + # Default: [ + S:wizards_wand_netherite_fire < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:netherite_claymore + # + # Default: [ + S:paladins_netherite_claymore < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:netherite_holy_staff + # + # Default: [ + S:paladins_netherite_holy_staff < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:netherite_glaive + # + # Default: [ + S:rogues_netherite_glaive < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:netherite_dagger + # + # Default: [ + S:rogues_netherite_dagger < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:diamond_holy_wand + # + # Default: [ + S:paladins_diamond_holy_wand < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: archers:flint_spear + # + # Default: [ + S:archers_flint_spear < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:flint_dagger + # + # Default: [ + S:rogues_flint_dagger < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:diamond_claymore + # + # Default: [ + S:paladins_diamond_claymore < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:iron_great_hammer + # + # Default: [ + S:paladins_iron_great_hammer < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:iron_sword, minecraft:iron_shovel, minecraft:iron_pickaxe, minecraft:iron_axe, minecraft:iron_hoe, archon:terrain_mace, archon:storm_cleaver, archon:fist_of_fury, archon:terranean_axe, basicweapons:iron_dagger, basicweapons:iron_hammer, basicweapons:iron_club, basicweapons:iron_spear, basicweapons:iron_quarterstaff, betterend:iron_hammer, justhammers:iron_hammer, justhammers:iron_impact_hammer, justhammers:iron_reinforced_hammer, justhammers:iron_reinforced_impact_hammer, justhammers:iron_destructor_hammer, mcdw:axe_anchor, mcdw:axe_axe, mcdw:axe_highland, mcdw:dagger_dagger, mcdw:dagger_fangs_of_frost, mcdw:dagger_moon, mcdw:dagger_resolute_tempest_knife, mcdw:dagger_shear_dagger, mcdw:dagger_tempest_knife, mcdw:double_axe_cursed, mcdw:double_axe_double, mcdw:double_axe_whirlwind, mcdw:gauntlet_gauntlet, mcdw:glaive_cackling_broom, mcdw:glaive_glaive, mcdw:glaive_grave_bane, mcdw:glaive_venom_glaive, mcdw:hammer_boneclub, mcdw:hammer_flail, mcdw:hammer_great_hammer, mcdw:hammer_mace, mcdw:pick_howling_pick, mcdw:pick_mountaineer_pick, mcdw:scythe_jailors_scythe, mcdw:sickle_last_laugh_gold, mcdw:sickle_last_laugh_silver, mcdw:sickle_nightmares_bite, mcdw:sickle_sickle, mcdw:soul_dagger_soul_knife, mcdw:spear_spear, mcdw:spear_whispering_spear, mcdw:spear_fortune, mcdw:staff_battlestaff_of_terror, mcdw:staff_growing_staff, mcdw:sword_beestinger, mcdw:sword_broadsword, mcdw:sword_broken_sawblade, mcdw:sword_claymore, mcdw:sword_coral_blade, mcdw:sword_cutlass, mcdw:sword_dancers_sword, mcdw:sword_freezing_foil, mcdw:sword_great_axeblade, mcdw:sword_hawkbrand, mcdw:sword_iron_sword_var, mcdw:sword_katana, mcdw:sword_nameless_blade, mcdw:sword_rapier, mcdw:sword_sinister, mcdw:whip_vine_whip, mcdw:whip_whip, mobs_of_mythology:kobold_spear, simplyswords:iron_longsword, simplyswords:iron_twinblade, simplyswords:iron_rapier, simplyswords:iron_katana, simplyswords:iron_sai, simplyswords:iron_spear, simplyswords:iron_glaive, simplyswords:iron_warglaive, simplyswords:iron_cutlass, simplyswords:iron_claymore, simplyswords:iron_greathammer, simplyswords:iron_greataxe, simplyswords:iron_chakram, simplyswords:iron_scythe, simplyswords:iron_halberd + # + # Default: [ + S:IRON < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:diamond_sword, minecraft:diamond_shovel, minecraft:diamond_pickaxe, minecraft:diamond_axe, minecraft:diamond_hoe, archon:ender_blade, archon:frost_sword, basicweapons:diamond_dagger, basicweapons:diamond_hammer, basicweapons:diamond_club, basicweapons:diamond_spear, basicweapons:diamond_quarterstaff, betterend:diamond_hammer, dungeonnowloading:life_stealer, dungeonnowloading:spawner_sword, justhammers:diamond_hammer, justhammers:diamond_impact_hammer, justhammers:diamond_reinforced_hammer, justhammers:diamond_reinforced_impact_hammer, justhammers:diamond_destructor_hammer, mcdw:axe_encrusted_anchor, mcdw:axe_firebrand, mcdw:dagger_backstabber, mcdw:dagger_chill_gale_knife, mcdw:dagger_void_touched_blade, mcdw:gauntlet_maulers, mcdw:hammer_gravity, mcdw:hammer_stormlander, mcdw:hammer_suns_grace, mcdw:pick_diamond_pickaxe_var, mcdw:pick_hailing_pinnacle, mcdw:scythe_frost_scythe, mcdw:scythe_skull_scythe, mcdw:scythe_soul_scythe, mcdw:sword_diamond_sword_var, mcdw:sword_frost_slayer, mcdw:sword_heartstealer, mcdw:sword_masters_katana, mcdw:sword_mechanized_sawblade, mcdw:sword_sponge_striker, simplyswords:diamond_longsword, simplyswords:diamond_twinblade, simplyswords:diamond_rapier, simplyswords:diamond_katana, simplyswords:diamond_sai, simplyswords:diamond_spear, simplyswords:diamond_glaive, simplyswords:diamond_warglaive, simplyswords:diamond_cutlass, simplyswords:diamond_claymore, simplyswords:diamond_greathammer, simplyswords:diamond_greataxe, simplyswords:diamond_chakram, simplyswords:diamond_scythe, simplyswords:diamond_halberd + # + # Default: [ + S:DIAMOND < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:netherite_sword, minecraft:netherite_shovel, minecraft:netherite_pickaxe, minecraft:netherite_axe, minecraft:netherite_hoe, archon:soul_crusher, archon:soul_scythe, basicweapons:netherite_dagger, basicweapons:netherite_hammer, basicweapons:netherite_club, basicweapons:netherite_spear, basicweapons:netherite_quarterstaff, betterend:netherite_hammer, justhammers:netherite_hammer, justhammers:netherite_impact_hammer, justhammers:netherite_reinforced_hammer, justhammers:netherite_reinforced_impact_hammer, justhammers:netherite_destructor_hammer, mcdw:dagger_swift_striker, mcdw:dagger_the_beginning, mcdw:dagger_the_end, mcdw:gauntlet_soul_fists, mcdw:hammer_bone_cudgel, mcdw:soul_dagger_eternal_knife, mcdw:soul_dagger_truthseeker, mcdw:sword_dark_katana, mcdw:sword_obsidian_claymore, mcdw:sword_the_starless_night, simplyswords:netherite_longsword, simplyswords:netherite_twinblade, simplyswords:netherite_rapier, simplyswords:netherite_katana, simplyswords:netherite_sai, simplyswords:netherite_spear, simplyswords:netherite_glaive, simplyswords:netherite_warglaive, simplyswords:netherite_cutlass, simplyswords:netherite_claymore, simplyswords:netherite_greathammer, simplyswords:netherite_greataxe, simplyswords:netherite_chakram, simplyswords:netherite_scythe, simplyswords:netherite_halberd + # + # Default: [ + S:NETHERITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:stone_claymore + # + # Default: [ + S:paladins_stone_claymore < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:wand_fire + # + # Default: [ + S:wizards_wand_fire < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:ruby_claymore + # + # Default: [ + S:paladins_ruby_claymore < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:ruby_sickle + # + # Default: [ + S:rogues_ruby_sickle < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: betterend:thallasium_shovel, betterend:thallasium_sword, betterend:thallasium_pickaxe, betterend:thallasium_axe, betterend:thallasium_hoe, betterend:thallasium_hammer + # + # Default: [ + S:THALLASIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:whisper_of_the_abyss + # + # Default: [ + S:aquamirae_whisper_of_the_abyss < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:ruby_double_axe + # + # Default: [ + S:rogues_ruby_double_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:ruby_great_hammer + # + # Default: [ + S:paladins_ruby_great_hammer < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:aeternium_mace + # + # Default: [ + S:paladins_aeternium_mace < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:staff_ruby_fire + # + # Default: [ + S:wizards_staff_ruby_fire < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:fin_cutter + # + # Default: [ + S:aquamirae_fin_cutter < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: betterend:terminite_shovel, betterend:terminite_sword, betterend:terminite_pickaxe, betterend:terminite_axe, betterend:terminite_hoe, betterend:terminite_hammer + # + # Default: [ + S:TERMINITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:aeternium_great_hammer + # + # Default: [ + S:paladins_aeternium_great_hammer < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:staff_crystal_arcane + # + # Default: [ + S:wizards_staff_crystal_arcane < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: deeperdarker:warden_shovel, deeperdarker:warden_pickaxe, deeperdarker:warden_axe, deeperdarker:warden_hoe, deeperdarker:warden_sword + # + # Default: [ + S:WARDEN < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:aeternium_dagger + # + # Default: [ + S:rogues_aeternium_dagger < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: betternether:cincinnasite_sword, betternether:cincinnasite_pickaxe, betternether:cincinnasite_axe, betternether:cincinnasite_shovel, betternether:cincinnasite_hoe + # + # Default: [ + S:CINCINNASITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:poisoned_chakra + # + # Default: [ + S:aquamirae_poisoned_chakra < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:aeternium_sickle + # + # Default: [ + S:rogues_aeternium_sickle < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:poisoned_blade + # + # Default: [ + S:aquamirae_poisoned_blade < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:terrible_sword + # + # Default: [ + S:aquamirae_terrible_sword < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: archers:aeternium_spear + # + # Default: [ + S:archers_aeternium_spear < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:remnants_saber + # + # Default: [ + S:aquamirae_remnants_saber < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:ruby_glaive + # + # Default: [ + S:rogues_ruby_glaive < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:staff_smaragdant_frost + # + # Default: [ + S:wizards_staff_smaragdant_frost < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: archers:ruby_spear + # + # Default: [ + S:archers_ruby_spear < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: betternether:nether_ruby_sword, betternether:nether_ruby_pickaxe, betternether:nether_ruby_axe, betternether:nether_ruby_shovel, betternether:nether_ruby_hoe + # + # Default: [ + S:NETHER_RUBY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:aeternium_glaive + # + # Default: [ + S:rogues_aeternium_glaive < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: betternether:cincinnasite_sword_diamond, betternether:cincinnasite_pickaxe_diamond, betternether:cincinnasite_axe_diamond, betternether:cincinnasite_shovel_diamond, betternether:cincinnasite_hoe_diamond + # + # Default: [ + S:CINCINNASITE_DIAMOND < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:ruby_dagger + # + # Default: [ + S:rogues_ruby_dagger < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:ruby_holy_staff + # + # Default: [ + S:paladins_ruby_holy_staff < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:maze_rose + # + # Default: [ + S:aquamirae_maze_rose < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:aeternium_double_axe + # + # Default: [ + S:rogues_aeternium_double_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:aeternium_claymore + # + # Default: [ + S:paladins_aeternium_claymore < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: betterend:aeternium_shovel, betterend:aeternium_sword, betterend:aeternium_pickaxe, betterend:aeternium_axe, betterend:aeternium_hoe, betterend:aeternium_hammer + # + # Default: [ + S:AETERNIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:sweet_lance + # + # Default: [ + S:aquamirae_sweet_lance < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:dagger_of_greed + # + # Default: [ + S:aquamirae_dagger_of_greed < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:divider + # + # Default: [ + S:aquamirae_divider < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:ruby_mace + # + # Default: [ + S:paladins_ruby_mace < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:coral_lance + # + # Default: [ + S:aquamirae_coral_lance < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: betternether:flaming_ruby_sword, betternether:flaming_ruby_pickaxe, betternether:flaming_ruby_axe, betternether:flaming_ruby_shovel, betternether:flaming_ruby_hoe + # + # Default: [ + S:FLAMING_RUBY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mythicupgrades:topaz_shovel, mythicupgrades:topaz_pickaxe, mythicupgrades:topaz_axe, mythicupgrades:topaz_hoe, mythicupgrades:topaz_sword + # + # Default: [ + S:TOPAZ < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:whirligig_sawblade, soulsweapons:guts_sword, soulsweapons:nightfall, soulsweapons:kirkhammer, soulsweapons:silver_sword, soulsweapons:holy_greatsword + # + # Default: [ + S:IRON_BLOCK < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:bloodthirster, soulsweapons:darkin_blade + # + # Default: [ + S:CRIMSON_INGOT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecells:assassins_dagger, minecells:blood_sword, minecells:cursed_sword, minecells:tentacle, minecells:hattoris_katana, minecells:broadsword, minecells:balanced_blade, minecells:crowbar, minecells:nutcracker, minecells:flint, minecells:spite_sword, minecells:cudgel, minecells:rampart, minecells:assault_shield, minecells:bloodthirsty_shield, minecells:greed_shield, minecells:ice_shield + # + # Default: [ + S:minecells_assassins_dagger < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mythicupgrades:ametrine_shovel, mythicupgrades:ametrine_pickaxe, mythicupgrades:ametrine_axe, mythicupgrades:ametrine_hoe, mythicupgrades:ametrine_sword + # + # Default: [ + S:AMETRINE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mythicupgrades:sapphire_axe, mythicupgrades:sapphire_shovel, mythicupgrades:sapphire_pickaxe, mythicupgrades:sapphire_hoe, mythicupgrades:sapphire_sword + # + # Default: [ + S:SAPPHIRE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:translucent_sword, soulsweapons:translucent_glaive, soulsweapons:translucent_double_greatsword, soulsweapons:forlorn_scythe + # + # Default: [ + S:LOST_SOUL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mythicupgrades:peridot_axe, mythicupgrades:peridot_shovel, mythicupgrades:peridot_pickaxe, mythicupgrades:peridot_hoe, mythicupgrades:peridot_sword + # + # Default: [ + S:PERIDOT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mythicupgrades:ruby_shovel, mythicupgrades:ruby_axe, mythicupgrades:ruby_pickaxe, mythicupgrades:ruby_hoe, mythicupgrades:ruby_sword + # + # Default: [ + S:RUBY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mythicupgrades:aquamarine_axe, mythicupgrades:aquamarine_shovel, mythicupgrades:aquamarine_pickaxe, mythicupgrades:aquamarine_hoe, mythicupgrades:aquamarine_sword + # + # Default: [ + S:AQUAMARINE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:moonstone_shovel, soulsweapons:moonstone_pickaxe, soulsweapons:moonstone_axe, soulsweapons:moonstone_hoe + # + # Default: [ + S:MOONSTONE_TOOL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mythicupgrades:jade_shovel, mythicupgrades:jade_pickaxe, mythicupgrades:jade_axe, mythicupgrades:jade_hoe, mythicupgrades:jade_sword + # + # Default: [ + S:JADE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:bluemoon_shortsword, soulsweapons:bluemoon_greatsword, soulsweapons:moonlight_shortsword, soulsweapons:moonlight_greatsword, soulsweapons:pure_moonlight_greatsword, soulsweapons:dragon_staff, soulsweapons:withered_wabbajack, soulsweapons:dragonslayer_swordspear, soulsweapons:rageblade, soulsweapons:comet_spear, soulsweapons:lich_bane, soulsweapons:draugr, soulsweapons:dawnbreaker, soulsweapons:soul_reaper, soulsweapons:leviathan_axe, soulsweapons:skofnung, soulsweapons:mjolnir, soulsweapons:freyr_sword, soulsweapons:sting, soulsweapons:featherlight, soulsweapons:crucible_sword, soulsweapons:darkin_scythe_pre, soulsweapons:darkin_scythe, soulsweapons:shadow_assassin_scythe, soulsweapons:draupnir_spear, soulsweapons:holy_moonlight_greatsword, soulsweapons:holy_moonlight_sword, soulsweapons:frostmourne, soulsweapons:master_sword, soulsweapons:nights_edge_item, soulsweapons:empowered_dawnbreaker + # + # Default: [ + S:MOONSTONE_OR_VERGLAS < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: oxidized:rose_gold_axe, oxidized:rose_gold_hoe, oxidized:rose_gold_pickaxe, oxidized:rose_gold_shovel, oxidized:rose_gold_sword + # + # Default: [ + S:oxidized_rose_gold_axe < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: simplyswords:brimstone_claymore, simplyswords:watcher_claymore, simplyswords:storms_edge, simplyswords:stormbringer, simplyswords:bramblethorn, simplyswords:watching_warglaive, simplyswords:toxic_longsword, simplyswords:emberblade, simplyswords:hearthflame, simplyswords:soulkeeper, simplyswords:twisted_blade, simplyswords:soulstealer, simplyswords:soulrender, simplyswords:soulpyre, simplyswords:frostfall, simplyswords:molten_edge, simplyswords:livyatan, simplyswords:icewhisper, simplyswords:arcanethyst, simplyswords:thunderbrand, simplyswords:mjolnir, simplyswords:slumbering_lichblade, simplyswords:waking_lichblade, simplyswords:awakened_lichblade, simplyswords:shadowsting, simplyswords:dormant_relic, simplyswords:righteous_relic, simplyswords:tainted_relic, simplyswords:sunfire, simplyswords:harbinger, simplyswords:whisperwind, simplyswords:emberlash, simplyswords:waxweaver, simplyswords:hiveheart, simplyswords:stars_edge, simplyswords:wickpiercer, simplyswords:tempest, simplyswords:flamewind, simplyswords:ribboncleaver, simplyswords:decaying_relic, simplyswords:magiscythe, simplyswords:enigma, simplyswords:magispear, simplyswords:magiblade + # + # Default: [ + S:UNIQUE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: simplyswords:runic_longsword, simplyswords:runic_twinblade, simplyswords:runic_rapier, simplyswords:runic_katana, simplyswords:runic_sai, simplyswords:runic_spear, simplyswords:runic_glaive, simplyswords:runic_cutlass, simplyswords:runic_claymore, simplyswords:runic_chakram, simplyswords:runic_greataxe, simplyswords:runic_greathammer, simplyswords:runic_warglaive, simplyswords:runic_scythe, simplyswords:runic_halberd + # + # Default: [ + S:RUNIC < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:copper_stylet, magistuarmory:copper_shortsword, magistuarmory:copper_katzbalger, magistuarmory:copper_pike, magistuarmory:copper_ranseur, magistuarmory:copper_ahlspiess, magistuarmory:copper_chivalrylance, magistuarmory:copper_bastardsword, magistuarmory:copper_estoc, magistuarmory:copper_claymore, magistuarmory:copper_zweihander, magistuarmory:copper_flamebladedsword, magistuarmory:copper_lochaberaxe, magistuarmory:copper_concavehalberd, magistuarmory:copper_heavymace, magistuarmory:copper_heavywarhammer, magistuarmory:copper_lucernhammer, magistuarmory:copper_morgenstern, magistuarmory:copper_chainmorgenstern, magistuarmory:copper_guisarme + # + # Default: [ + S:magistuarmory_copper_stylet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:iron_stylet, magistuarmory:iron_shortsword, magistuarmory:iron_katzbalger, magistuarmory:iron_pike, magistuarmory:iron_ranseur, magistuarmory:iron_ahlspiess, magistuarmory:iron_chivalrylance, magistuarmory:iron_bastardsword, magistuarmory:iron_estoc, magistuarmory:iron_claymore, magistuarmory:iron_zweihander, magistuarmory:iron_flamebladedsword, magistuarmory:iron_lochaberaxe, magistuarmory:iron_concavehalberd, magistuarmory:iron_heavymace, magistuarmory:iron_heavywarhammer, magistuarmory:iron_lucernhammer, magistuarmory:iron_morgenstern, magistuarmory:iron_chainmorgenstern, magistuarmory:iron_guisarme, magistuarmory:barbedclub, magistuarmory:pitchfork, magistuarmory:noble_sword, magistuarmory:rusted_bastardsword, magistuarmory:rusted_heavymace, magistuarmory:messer_sword + # + # Default: [ + S:magistuarmory_iron_stylet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:bronze_stylet, magistuarmory:bronze_shortsword, magistuarmory:bronze_katzbalger, magistuarmory:bronze_pike, magistuarmory:bronze_ranseur, magistuarmory:bronze_ahlspiess, magistuarmory:bronze_chivalrylance, magistuarmory:bronze_bastardsword, magistuarmory:bronze_estoc, magistuarmory:bronze_claymore, magistuarmory:bronze_zweihander, magistuarmory:bronze_flamebladedsword, magistuarmory:bronze_lochaberaxe, magistuarmory:bronze_concavehalberd, magistuarmory:bronze_heavymace, magistuarmory:bronze_heavywarhammer, magistuarmory:bronze_lucernhammer, magistuarmory:bronze_morgenstern, magistuarmory:bronze_chainmorgenstern, magistuarmory:bronze_guisarme + # + # Default: [ + S:magistuarmory_bronze_stylet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:silver_stylet, magistuarmory:silver_shortsword, magistuarmory:silver_katzbalger, magistuarmory:silver_pike, magistuarmory:silver_ranseur, magistuarmory:silver_ahlspiess, magistuarmory:silver_chivalrylance, magistuarmory:silver_bastardsword, magistuarmory:silver_estoc, magistuarmory:silver_claymore, magistuarmory:silver_zweihander, magistuarmory:silver_flamebladedsword, magistuarmory:silver_lochaberaxe, magistuarmory:silver_concavehalberd, magistuarmory:silver_heavymace, magistuarmory:silver_heavywarhammer, magistuarmory:silver_lucernhammer, magistuarmory:silver_morgenstern, magistuarmory:silver_chainmorgenstern, magistuarmory:silver_guisarme + # + # Default: [ + S:magistuarmory_silver_stylet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:tin_stylet, magistuarmory:tin_shortsword, magistuarmory:tin_katzbalger, magistuarmory:tin_pike, magistuarmory:tin_ranseur, magistuarmory:tin_ahlspiess, magistuarmory:tin_chivalrylance, magistuarmory:tin_bastardsword, magistuarmory:tin_estoc, magistuarmory:tin_claymore, magistuarmory:tin_zweihander, magistuarmory:tin_flamebladedsword, magistuarmory:tin_lochaberaxe, magistuarmory:tin_concavehalberd, magistuarmory:tin_heavymace, magistuarmory:tin_heavywarhammer, magistuarmory:tin_lucernhammer, magistuarmory:tin_morgenstern, magistuarmory:tin_chainmorgenstern, magistuarmory:tin_guisarme + # + # Default: [ + S:magistuarmory_tin_stylet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:netherite_stylet, magistuarmory:netherite_shortsword, magistuarmory:netherite_katzbalger, magistuarmory:netherite_pike, magistuarmory:netherite_ranseur, magistuarmory:netherite_ahlspiess, magistuarmory:netherite_chivalrylance, magistuarmory:netherite_bastardsword, magistuarmory:netherite_estoc, magistuarmory:netherite_claymore, magistuarmory:netherite_zweihander, magistuarmory:netherite_flamebladedsword, magistuarmory:netherite_lochaberaxe, magistuarmory:netherite_concavehalberd, magistuarmory:netherite_heavymace, magistuarmory:netherite_heavywarhammer, magistuarmory:netherite_lucernhammer, magistuarmory:netherite_morgenstern, magistuarmory:netherite_chainmorgenstern, magistuarmory:netherite_guisarme + # + # Default: [ + S:magistuarmory_netherite_stylet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:gold_stylet, magistuarmory:gold_shortsword, magistuarmory:gold_katzbalger, magistuarmory:gold_pike, magistuarmory:gold_ranseur, magistuarmory:gold_ahlspiess, magistuarmory:gold_chivalrylance, magistuarmory:gold_bastardsword, magistuarmory:gold_estoc, magistuarmory:gold_claymore, magistuarmory:gold_zweihander, magistuarmory:gold_flamebladedsword, magistuarmory:gold_lochaberaxe, magistuarmory:gold_concavehalberd, magistuarmory:gold_heavymace, magistuarmory:gold_heavywarhammer, magistuarmory:gold_lucernhammer, magistuarmory:gold_morgenstern, magistuarmory:gold_chainmorgenstern, magistuarmory:gold_guisarme + # + # Default: [ + S:magistuarmory_gold_stylet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:stone_stylet, magistuarmory:stone_shortsword, magistuarmory:stone_katzbalger, magistuarmory:stone_pike, magistuarmory:stone_ranseur, magistuarmory:stone_ahlspiess, magistuarmory:stone_chivalrylance, magistuarmory:stone_bastardsword, magistuarmory:stone_estoc, magistuarmory:stone_claymore, magistuarmory:stone_zweihander, magistuarmory:stone_flamebladedsword, magistuarmory:stone_lochaberaxe, magistuarmory:stone_concavehalberd, magistuarmory:stone_heavymace, magistuarmory:stone_heavywarhammer, magistuarmory:stone_lucernhammer, magistuarmory:stone_morgenstern, magistuarmory:stone_chainmorgenstern, magistuarmory:stone_guisarme + # + # Default: [ + S:magistuarmory_stone_stylet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:diamond_stylet, magistuarmory:diamond_shortsword, magistuarmory:diamond_katzbalger, magistuarmory:diamond_pike, magistuarmory:diamond_ranseur, magistuarmory:diamond_ahlspiess, magistuarmory:diamond_chivalrylance, magistuarmory:diamond_bastardsword, magistuarmory:diamond_estoc, magistuarmory:diamond_claymore, magistuarmory:diamond_zweihander, magistuarmory:diamond_flamebladedsword, magistuarmory:diamond_lochaberaxe, magistuarmory:diamond_concavehalberd, magistuarmory:diamond_heavymace, magistuarmory:diamond_heavywarhammer, magistuarmory:diamond_lucernhammer, magistuarmory:diamond_morgenstern, magistuarmory:diamond_chainmorgenstern, magistuarmory:diamond_guisarme + # + # Default: [ + S:magistuarmory_diamond_stylet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:wood_stylet, magistuarmory:wood_shortsword, magistuarmory:wood_katzbalger, magistuarmory:wood_pike, magistuarmory:wood_ranseur, magistuarmory:wood_ahlspiess, magistuarmory:wood_chivalrylance, magistuarmory:wood_bastardsword, magistuarmory:wood_estoc, magistuarmory:wood_claymore, magistuarmory:wood_zweihander, magistuarmory:wood_flamebladedsword, magistuarmory:wood_lochaberaxe, magistuarmory:wood_concavehalberd, magistuarmory:wood_heavymace, magistuarmory:wood_heavywarhammer, magistuarmory:wood_lucernhammer, magistuarmory:wood_morgenstern, magistuarmory:wood_chainmorgenstern, magistuarmory:wood_guisarme, magistuarmory:club + # + # Default: [ + S:magistuarmory_wood_stylet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:steel_stylet, magistuarmory:steel_shortsword, magistuarmory:steel_katzbalger, magistuarmory:steel_pike, magistuarmory:steel_ranseur, magistuarmory:steel_ahlspiess, magistuarmory:steel_chivalrylance, magistuarmory:steel_bastardsword, magistuarmory:steel_estoc, magistuarmory:steel_claymore, magistuarmory:steel_zweihander, magistuarmory:steel_flamebladedsword, magistuarmory:steel_lochaberaxe, magistuarmory:steel_concavehalberd, magistuarmory:steel_heavymace, magistuarmory:steel_heavywarhammer, magistuarmory:steel_lucernhammer, magistuarmory:steel_morgenstern, magistuarmory:steel_chainmorgenstern, magistuarmory:steel_guisarme, magistuarmory:blacksmith_hammer + # + # Default: [ + S:magistuarmory_steel_stylet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: epicknightsnmages:noble_sword + # + # Default: [ + S:NOBLE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: epicknightsnmages:elite_spell_book + # + # Default: [ + S:SPELLCASTING < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: epicknightsnmages:elite_wand + # + # Default: [ + S:MAGICAL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: epicknightsnmages:dark_sword + # + # Default: [ + S:DARK < + > +} + + +armors { + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:crusader_armor_head, paladins:crusader_armor_chest, paladins:crusader_armor_legs, paladins:crusader_armor_feet + # + # Default: [ + S:paladins_crusader_armor_head < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:rogue_armor_head, rogues:rogue_armor_chest, rogues:rogue_armor_legs, rogues:rogue_armor_feet + # + # Default: [ + S:rogues_rogue_armor_head < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:leather_helmet, minecraft:leather_chestplate, minecraft:leather_leggings, minecraft:leather_boots + # + # Default: [ + S:LEATHER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:frost_robe_head, wizards:frost_robe_chest, wizards:frost_robe_legs, wizards:frost_robe_feet + # + # Default: [ + S:wizards_frost_robe_head < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: archers:archer_armor_head, archers:archer_armor_chest, archers:archer_armor_legs, archers:archer_armor_feet + # + # Default: [ + S:archers_archer_armor_head < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: adventurez:gilded_netherite_helmet, adventurez:gilded_netherite_chestplate, adventurez:gilded_netherite_leggings, adventurez:gilded_netherite_boots + # + # Default: [ + S:adventurez_gilded_netherite_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:turtle_helmet + # + # Default: [ + S:TURTLE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:arcane_robe_head, wizards:arcane_robe_chest, wizards:arcane_robe_legs, wizards:arcane_robe_feet + # + # Default: [ + S:wizards_arcane_robe_head < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:paladin_armor_head, paladins:paladin_armor_chest, paladins:paladin_armor_legs, paladins:paladin_armor_feet + # + # Default: [ + S:paladins_paladin_armor_head < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:iron_helmet, minecraft:iron_chestplate, minecraft:iron_leggings, minecraft:iron_boots + # + # Default: [ + S:IRON < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:golden_helmet, minecraft:golden_chestplate, minecraft:golden_leggings, minecraft:golden_boots + # + # Default: [ + S:GOLD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:warrior_armor_head, rogues:warrior_armor_chest, rogues:warrior_armor_legs, rogues:warrior_armor_feet + # + # Default: [ + S:rogues_warrior_armor_head < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:berserker_armor_head, rogues:berserker_armor_chest, rogues:berserker_armor_legs, rogues:berserker_armor_feet + # + # Default: [ + S:rogues_berserker_armor_head < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:chainmail_helmet, minecraft:chainmail_chestplate, minecraft:chainmail_leggings, minecraft:chainmail_boots + # + # Default: [ + S:CHAIN < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:diamond_helmet, minecraft:diamond_chestplate, minecraft:diamond_leggings, minecraft:diamond_boots, grapplemod:longfallboots + # + # Default: [ + S:DIAMOND < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:fire_robe_head, wizards:fire_robe_chest, wizards:fire_robe_legs, wizards:fire_robe_feet + # + # Default: [ + S:wizards_fire_robe_head < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:priest_robe_head, paladins:priest_robe_chest, paladins:priest_robe_legs, paladins:priest_robe_feet + # + # Default: [ + S:paladins_priest_robe_head < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: friendsandfoes:wildfire_crown + # + # Default: [ + S:WILDFIRE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: wizards:wizard_robe_head, wizards:wizard_robe_chest, wizards:wizard_robe_legs, wizards:wizard_robe_feet + # + # Default: [ + S:wizards_wizard_robe_head < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: rogues:assassin_armor_head, rogues:assassin_armor_chest, rogues:assassin_armor_legs, rogues:assassin_armor_feet + # + # Default: [ + S:rogues_assassin_armor_head < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:netherite_helmet, minecraft:netherite_chestplate, minecraft:netherite_leggings, minecraft:netherite_boots + # + # Default: [ + S:NETHERITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: paladins:prior_robe_head, paladins:prior_robe_chest, paladins:prior_robe_legs, paladins:prior_robe_feet + # + # Default: [ + S:paladins_prior_robe_head < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: archers:ranger_armor_head, archers:ranger_armor_chest, archers:ranger_armor_legs, archers:ranger_armor_feet + # + # Default: [ + S:archers_ranger_armor_head < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: archon:infernal_coat + # + # Default: [ + S:INFERNAL_COAT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: betternether:cincinnasite_helmet, betternether:cincinnasite_chestplate, betternether:cincinnasite_boots, betternether:cincinnasite_leggings + # + # Default: [ + S:CINCINNASITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:abyssal_tiara + # + # Default: [ + S:aquamirae_abyssal_tiara < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: deeperdarker:warden_helmet, deeperdarker:warden_chestplate, deeperdarker:warden_leggings, deeperdarker:warden_boots + # + # Default: [ + S:WARDEN < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: betternether:nether_ruby_helmet, betternether:nether_ruby_chestplate, betternether:nether_ruby_boots, betternether:nether_ruby_leggings + # + # Default: [ + S:NETHER_RUBY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: archon:mask_of_power + # + # Default: [ + S:MASK_OF_POWER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: betterend:crystalite_helmet, betterend:crystalite_chestplate, betterend:crystalite_leggings, betterend:crystalite_boots, betterend:elytra_crystalite + # + # Default: [ + S:CRYSTALITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: archon:druid_boots + # + # Default: [ + S:DRUID_BOOTS < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: eldritch_end:etyrite_helmet, eldritch_end:etyrite_chestplate, eldritch_end:etyrite_leggings, eldritch_end:etyrite_boots + # + # Default: [ + S:eldritch_end_etyrite_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:terrible_helmet, aquamirae:terrible_chestplate, aquamirae:terrible_leggings, aquamirae:terrible_boots + # + # Default: [ + S:aquamirae_terrible_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: betternether:flaming_ruby_helmet, betternether:flaming_ruby_chestplate, betternether:flaming_ruby_boots, betternether:flaming_ruby_leggings + # + # Default: [ + S:FLAMING_RUBY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:abyssal_heaume, aquamirae:abyssal_brigantine, aquamirae:abyssal_leggings, aquamirae:abyssal_boots + # + # Default: [ + S:aquamirae_abyssal_heaume < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: aquamirae:three_bolt_helmet, aquamirae:three_bolt_suit, aquamirae:three_bolt_leggings, aquamirae:three_bolt_boots + # + # Default: [ + S:aquamirae_three_bolt_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: convenientdecor:orange_raincoat, convenientdecor:brown_raincoat, convenientdecor:lime_raincoat, convenientdecor:gray_raincoat, convenientdecor:purple_raincoat, convenientdecor:pink_raincoat, convenientdecor:yellow_raincoat, convenientdecor:magenta_raincoat, convenientdecor:cyan_raincoat, convenientdecor:light_blue_raincoat, convenientdecor:red_raincoat, convenientdecor:blue_raincoat, convenientdecor:white_raincoat, convenientdecor:black_raincoat, convenientdecor:green_raincoat, convenientdecor:light_gray_raincoat, convenientdecor:orange_rain_boots, convenientdecor:brown_rain_boots, convenientdecor:lime_rain_boots, convenientdecor:gray_rain_boots, convenientdecor:purple_rain_boots, convenientdecor:pink_rain_boots, convenientdecor:yellow_rain_boots, convenientdecor:magenta_rain_boots, convenientdecor:cyan_rain_boots, convenientdecor:light_blue_rain_boots, convenientdecor:red_rain_boots, convenientdecor:blue_rain_boots, convenientdecor:white_rain_boots, convenientdecor:black_rain_boots, convenientdecor:green_rain_boots, convenientdecor:light_gray_rain_boots, convenientdecor:orange_rain_hat, convenientdecor:brown_rain_hat, convenientdecor:lime_rain_hat, convenientdecor:gray_rain_hat, convenientdecor:purple_rain_hat, convenientdecor:pink_rain_hat, convenientdecor:yellow_rain_hat, convenientdecor:magenta_rain_hat, convenientdecor:cyan_rain_hat, convenientdecor:light_blue_rain_hat, convenientdecor:red_rain_hat, convenientdecor:blue_rain_hat, convenientdecor:white_rain_hat, convenientdecor:black_rain_hat, convenientdecor:green_rain_hat, convenientdecor:light_gray_rain_hat + # + # Default: [ + S:RAINCOAT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: betterend:aeternium_helmet, betterend:aeternium_chestplate, betterend:aeternium_leggings, betterend:aeternium_boots, betterend:elytra_armored + # + # Default: [ + S:AETERNIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: betterend:thallasium_helmet, betterend:thallasium_chestplate, betterend:thallasium_leggings, betterend:thallasium_boots + # + # Default: [ + S:THALLASIUM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: betterend:terminite_helmet, betterend:terminite_chestplate, betterend:terminite_leggings, betterend:terminite_boots + # + # Default: [ + S:TERMINITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: immersive_armors:divine_helmet, immersive_armors:divine_chestplate, immersive_armors:divine_leggings, immersive_armors:divine_boots + # + # Default: [ + S:immersive_armors_divine_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: immersive_armors:slime_helmet, immersive_armors:slime_chestplate, immersive_armors:slime_leggings, immersive_armors:slime_boots + # + # Default: [ + S:immersive_armors_slime_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: immersive_armors:prismarine_helmet, immersive_armors:prismarine_chestplate, immersive_armors:prismarine_leggings, immersive_armors:prismarine_boots + # + # Default: [ + S:immersive_armors_prismarine_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: immersive_armors:robe_helmet, immersive_armors:robe_chestplate, immersive_armors:robe_leggings, immersive_armors:robe_boots + # + # Default: [ + S:immersive_armors_robe_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: immersive_armors:heavy_helmet, immersive_armors:heavy_chestplate, immersive_armors:heavy_leggings, immersive_armors:heavy_boots + # + # Default: [ + S:immersive_armors_heavy_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: immersive_armors:warrior_helmet, immersive_armors:warrior_chestplate, immersive_armors:warrior_leggings, immersive_armors:warrior_boots + # + # Default: [ + S:immersive_armors_warrior_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: immersive_armors:wooden_helmet, immersive_armors:wooden_chestplate, immersive_armors:wooden_leggings, immersive_armors:wooden_boots + # + # Default: [ + S:immersive_armors_wooden_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: immersive_armors:bone_helmet, immersive_armors:bone_chestplate, immersive_armors:bone_leggings, immersive_armors:bone_boots + # + # Default: [ + S:immersive_armors_bone_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: immersive_armors:wither_helmet, immersive_armors:wither_chestplate, immersive_armors:wither_leggings, immersive_armors:wither_boots + # + # Default: [ + S:immersive_armors_wither_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: immersive_armors:steampunk_helmet, immersive_armors:steampunk_chestplate, immersive_armors:steampunk_leggings, immersive_armors:steampunk_boots + # + # Default: [ + S:immersive_armors_steampunk_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:souldancer_robe_helmet, mcda:souldancer_robe_chestplate, mcda:souldancer_robe_leggings, mcda:souldancer_robe_boots + # + # Default: [ + S:SOULDANCER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:reinforced_mail_helmet, mcda:reinforced_mail_chestplate, mcda:reinforced_mail_leggings, mcda:reinforced_mail_boots + # + # Default: [ + S:REINFORCED_MAIL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:glow_squid_armor_helmet, mcda:glow_squid_armor_chestplate, mcda:glow_squid_armor_leggings, mcda:glow_squid_armor_boots + # + # Default: [ + S:GLOW_SQUID < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:curious_armor_helmet, mcda:curious_armor_chestplate, mcda:curious_armor_leggings, mcda:curious_armor_boots + # + # Default: [ + S:CURIOUS < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:piglin_armor_helmet, mcda:piglin_armor_chestplate, mcda:piglin_armor_leggings, mcda:piglin_armor_boots + # + # Default: [ + S:PIGLIN < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:snow_armor_helmet, mcda:snow_armor_chestplate, mcda:snow_armor_leggings, mcda:snow_armor_boots + # + # Default: [ + S:SNOW < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:nimble_turtle_armor_helmet, mcda:nimble_turtle_armor_chestplate, mcda:nimble_turtle_armor_leggings, mcda:nimble_turtle_armor_boots + # + # Default: [ + S:NIMBLE_TURTLE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:hunters_chestplate + # + # Default: [ + S:HUNTER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:climbing_gear_helmet, mcda:climbing_gear_chestplate, mcda:climbing_gear_leggings, mcda:climbing_gear_boots + # + # Default: [ + S:CLIMBING_GEAR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:ocelot_armor_helmet, mcda:ocelot_armor_chestplate, mcda:ocelot_armor_leggings, mcda:ocelot_armor_boots + # + # Default: [ + S:OCELOT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:ghostly_armor_helmet, mcda:ghostly_armor_chestplate, mcda:ghostly_armor_leggings, mcda:ghostly_armor_boots + # + # Default: [ + S:GHOSTLY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:beehive_armor_helmet, mcda:beehive_armor_chestplate, mcda:beehive_armor_leggings, mcda:beehive_armor_boots + # + # Default: [ + S:BEEHIVE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:sturdy_shulker_armor_helmet, mcda:sturdy_shulker_armor_chestplate, mcda:sturdy_shulker_armor_leggings, mcda:sturdy_shulker_armor_boots + # + # Default: [ + S:STURDY_SHULKER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:cauldron_armor_helmet, mcda:cauldron_armor_chestplate, mcda:cauldron_armor_leggings, mcda:cauldron_armor_boots + # + # Default: [ + S:CAULDRON < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: netherdepthsupgrade:soul_sucker_boots + # + # Default: [ + S:netherdepthsupgrade_soul_sucker_boots < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:soul_ingot_helmet, soulsweapons:soul_ingot_chestplate, soulsweapons:soul_ingot_leggings, soulsweapons:soul_ingot_boots + # + # Default: [ + S:SOUL_INGOT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: epicknightsnmages:dark_knight_helmet, epicknightsnmages:dark_knight_chestplate, epicknightsnmages:dark_knight_leggings, epicknightsnmages:dark_knight_boots, epicknightsnmages:blue_knight_helmet, epicknightsnmages:blue_knight_chestplate, epicknightsnmages:blue_knight_leggings, epicknightsnmages:blue_knight_boots, epicknightsnmages:elite_mage_helmet, epicknightsnmages:elite_mage_chestplate, epicknightsnmages:elite_mage_leggings, epicknightsnmages:elite_mage_boots, epicknightsnmages:armored_mage_helmet, epicknightsnmages:armored_mage_chestplate, epicknightsnmages:armored_mage_leggings, epicknightsnmages:armored_mage_boots + # + # Default: [ + S:DARK < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mutantmonsters:mutant_skeleton_chestplate, mutantmonsters:mutant_skeleton_leggings, mutantmonsters:mutant_skeleton_boots + # + # Default: [ + S:mutantmonsters_mutant_skeleton_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:golden_piglin_armor_helmet, mcda:golden_piglin_armor_chestplate, mcda:golden_piglin_armor_leggings, mcda:golden_piglin_armor_boots + # + # Default: [ + S:GOLDEN_PIGLIN < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:purple_mystery_armor_helmet, mcda:purple_mystery_armor_chestplate, mcda:purple_mystery_armor_leggings, mcda:purple_mystery_armor_boots + # + # Default: [ + S:PURPLE_MYSTERY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:frost_armor_helmet, mcda:frost_armor_chestplate, mcda:frost_armor_leggings, mcda:frost_armor_boots + # + # Default: [ + S:FROST < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:wolf_armor_helmet, mcda:wolf_armor_chestplate, mcda:wolf_armor_leggings, mcda:wolf_armor_boots + # + # Default: [ + S:WOLF < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:soul_robes_helmet, soulsweapons:soul_robes_chestplate, soulsweapons:soul_robes_leggings, soulsweapons:soul_robes_boots + # + # Default: [ + S:SOUL_ROBES < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:beenest_armor_helmet, mcda:beenest_armor_chestplate, mcda:beenest_armor_leggings, mcda:beenest_armor_boots + # + # Default: [ + S:BEENEST < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:scale_mail_chestplate, mcda:scale_mail_leggings, mcda:scale_mail_boots + # + # Default: [ + S:SCALE_MAIL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:chaos_helmet, soulsweapons:arkenplate, soulsweapons:enhanced_arkenplate, soulsweapons:withered_chest + # + # Default: [ + S:CHAOS_ARMOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:highland_armor_helmet, mcda:highland_armor_chestplate, mcda:highland_armor_leggings, mcda:highland_armor_boots + # + # Default: [ + S:HIGHLAND < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:troubadour_armor_helmet, mcda:troubadour_armor_chestplate, mcda:troubadour_armor_leggings, mcda:troubadour_armor_boots + # + # Default: [ + S:TROUBADOUR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:green_mystery_armor_helmet, mcda:green_mystery_armor_chestplate, mcda:green_mystery_armor_leggings, mcda:green_mystery_armor_boots + # + # Default: [ + S:GREEN_MYSTERY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:titans_shroud_helmet, mcda:titans_shroud_chestplate, mcda:titans_shroud_leggings, mcda:titans_shroud_boots + # + # Default: [ + S:TITAN < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:enhanced_withered_chest + # + # Default: [ + S:WITHERED_ARMOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:grim_armor_helmet, mcda:grim_armor_chestplate, mcda:grim_armor_leggings, mcda:grim_armor_boots + # + # Default: [ + S:GRIM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:white_mystery_armor_helmet, mcda:white_mystery_armor_chestplate, mcda:white_mystery_armor_leggings, mcda:white_mystery_armor_boots + # + # Default: [ + S:MYSTERY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:fox_armor_helmet, mcda:fox_armor_chestplate, mcda:fox_armor_leggings, mcda:fox_armor_boots + # + # Default: [ + S:FOX < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:living_vines_armor_helmet, mcda:living_vines_armor_chestplate, mcda:living_vines_armor_leggings, mcda:living_vines_armor_boots + # + # Default: [ + S:LIVING_VINES < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:sprout_armor_helmet, mcda:sprout_armor_chestplate, mcda:sprout_armor_leggings, mcda:sprout_armor_boots + # + # Default: [ + S:SPROUT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:stalwart_armor_helmet, mcda:stalwart_armor_chestplate, mcda:stalwart_armor_leggings, mcda:stalwart_armor_boots + # + # Default: [ + S:STALWART_MAIL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:splendid_robe_chestplate, mcda:splendid_robe_leggings + # + # Default: [ + S:SPLENDID < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:plate_armor_helmet, mcda:plate_armor_chestplate, mcda:plate_armor_leggings, mcda:plate_armor_boots + # + # Default: [ + S:PLATE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:full_metal_armor_helmet, mcda:full_metal_armor_chestplate, mcda:full_metal_armor_leggings, mcda:full_metal_armor_boots + # + # Default: [ + S:FULL_METAL < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:black_wolf_armor_helmet, mcda:black_wolf_armor_chestplate, mcda:black_wolf_armor_leggings, mcda:black_wolf_armor_boots + # + # Default: [ + S:BLACK_WOLF < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:gourdian_armor_helmet, mcda:gourdian_armor_chestplate, mcda:gourdian_armor_leggings, mcda:gourdian_armor_boots + # + # Default: [ + S:GOURDIAN < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:shadow_walker_armor_helmet, mcda:shadow_walker_armor_chestplate, mcda:shadow_walker_armor_leggings, mcda:shadow_walker_armor_boots + # + # Default: [ + S:SHADOW_WALKER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: bingus:floppa_rizz_helmet + # + # Default: [ + S:bingus_floppa_rizz_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:blue_mystery_armor_helmet, mcda:blue_mystery_armor_chestplate, mcda:blue_mystery_armor_leggings, mcda:blue_mystery_armor_boots + # + # Default: [ + S:BLUE_MYSTERY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:wither_armor_helmet, mcda:wither_armor_chestplate, mcda:wither_armor_leggings, mcda:wither_armor_boots + # + # Default: [ + S:WITHER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:ember_robe_helmet, mcda:ember_robe_chestplate, mcda:ember_robe_leggings + # + # Default: [ + S:EMBER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mythicupgrades:sapphire_helmet, mythicupgrades:sapphire_chestplate, mythicupgrades:sapphire_leggings, mythicupgrades:sapphire_boots + # + # Default: [ + S:SAPPHIRE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:vanguard_armor_helmet, mcda:vanguard_armor_chestplate, mcda:vanguard_armor_leggings + # + # Default: [ + S:VANGUARD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:phantom_armor_helmet, mcda:phantom_armor_chestplate, mcda:phantom_armor_leggings, mcda:phantom_armor_boots + # + # Default: [ + S:PHANTOM < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:heros_armor_helmet, mcda:heros_armor_chestplate, mcda:heros_armor_leggings, mcda:heros_armor_boots + # + # Default: [ + S:HERO < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:spider_armor_helmet, mcda:spider_armor_chestplate, mcda:spider_armor_leggings, mcda:spider_armor_boots + # + # Default: [ + S:SPIDER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:soul_robe_helmet, mcda:soul_robe_chestplate, mcda:soul_robe_leggings, mcda:soul_robe_boots + # + # Default: [ + S:SOUL_ROBE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:renegade_armor_helmet, mcda:renegade_armor_chestplate, mcda:renegade_armor_leggings, mcda:renegade_armor_boots + # + # Default: [ + S:RENEGADE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:squid_armor_helmet, mcda:squid_armor_chestplate, mcda:squid_armor_leggings, mcda:squid_armor_boots + # + # Default: [ + S:SQUID < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:evocation_robe_helmet, mcda:evocation_robe_chestplate, mcda:evocation_robe_leggings + # + # Default: [ + S:EVOCATION < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mythicupgrades:ametrine_helmet, mythicupgrades:ametrine_chestplate, mythicupgrades:ametrine_leggings, mythicupgrades:ametrine_boots + # + # Default: [ + S:AMETRINE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mythicupgrades:aquamarine_helmet, mythicupgrades:aquamarine_chestplate, mythicupgrades:aquamarine_leggings, mythicupgrades:aquamarine_boots + # + # Default: [ + S:AQUAMARINE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:archers_helmet, mcda:archers_chestplate, mcda:archers_leggings, mcda:archers_boots + # + # Default: [ + S:ARCHER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:frost_bite_armor_helmet, mcda:frost_bite_armor_chestplate, mcda:frost_bite_armor_leggings, mcda:frost_bite_armor_boots + # + # Default: [ + S:FROST_BITE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mythicupgrades:peridot_helmet, mythicupgrades:peridot_chestplate, mythicupgrades:peridot_leggings, mythicupgrades:peridot_boots + # + # Default: [ + S:PERIDOT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:arctic_fox_armor_helmet, mcda:arctic_fox_armor_chestplate, mcda:arctic_fox_armor_leggings, mcda:arctic_fox_armor_boots + # + # Default: [ + S:ARCTIC_FOX < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:chaos_crown, soulsweapons:chaos_robes + # + # Default: [ + S:CHAOS_SET < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:rugged_climbing_gear_helmet, mcda:rugged_climbing_gear_chestplate, mcda:rugged_climbing_gear_leggings, mcda:rugged_climbing_gear_boots + # + # Default: [ + S:RUGGED_CLIMBING_GEAR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:battle_robe_chestplate, mcda:battle_robe_leggings + # + # Default: [ + S:BATTLE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:teleportation_robe_helmet, mcda:teleportation_robe_chestplate, mcda:teleportation_robe_leggings, mcda:teleportation_robe_boots + # + # Default: [ + S:TELEPORTATION < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:entertainer_garb_helmet, mcda:entertainer_garb_chestplate, mcda:entertainer_garb_leggings, mcda:entertainer_garb_boots + # + # Default: [ + S:ENTERTAINER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:cave_crawler_helmet, mcda:cave_crawler_chestplate, mcda:cave_crawler_leggings, mcda:cave_crawler_boots + # + # Default: [ + S:CAVE_CRAWLER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:opulent_armor_helmet, mcda:opulent_armor_chestplate, mcda:opulent_armor_leggings, mcda:opulent_armor_boots + # + # Default: [ + S:OPULENT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:thief_armor_helmet, mcda:thief_armor_chestplate, mcda:thief_armor_leggings, mcda:thief_armor_boots + # + # Default: [ + S:THIEF < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:mercenary_armor_helmet, mcda:mercenary_armor_chestplate, mcda:mercenary_armor_leggings, mcda:mercenary_armor_boots + # + # Default: [ + S:MERCENARY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:spelunker_armor_helmet, mcda:spelunker_armor_chestplate, mcda:spelunker_armor_leggings, mcda:spelunker_armor_boots + # + # Default: [ + S:SPELUNKER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:ghost_kindler_helmet, mcda:ghost_kindler_chestplate, mcda:ghost_kindler_leggings, mcda:ghost_kindler_boots + # + # Default: [ + S:GHOST_KINDLER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:emerald_gear_helmet, mcda:emerald_gear_chestplate, mcda:emerald_gear_leggings, mcda:emerald_gear_boots + # + # Default: [ + S:EMERALD < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:hungry_horror_helmet, mcda:hungry_horror_chestplate, mcda:hungry_horror_leggings, mcda:hungry_horror_boots + # + # Default: [ + S:HUNGRY_HORROR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:unstable_robe_helmet, mcda:unstable_robe_chestplate, mcda:unstable_robe_leggings, mcda:unstable_robe_boots + # + # Default: [ + S:UNSTABLE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:royal_guard_armor_helmet, mcda:royal_guard_armor_chestplate, mcda:royal_guard_armor_leggings, mcda:royal_guard_armor_boots + # + # Default: [ + S:ROYAL < + > + S:HEPHAESTUS < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: soulsweapons:forlorn_helmet, soulsweapons:forlorn_chestplate, soulsweapons:forlorn_leggings, soulsweapons:forlorn_boots + # + # Default: [ + S:FORLORN_ARMOR < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:guards_armor_helmet, mcda:guards_armor_chestplate, mcda:guards_armor_leggings, mcda:guards_armor_boots + # + # Default: [ + S:GUARDS < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:verdant_robe_helmet, mcda:verdant_robe_chestplate, mcda:verdant_robe_leggings + # + # Default: [ + S:VERDANT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:goat_gear_helmet, mcda:goat_gear_chestplate, mcda:goat_gear_leggings, mcda:goat_gear_boots + # + # Default: [ + S:GOAT < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mythicupgrades:topaz_helmet, mythicupgrades:topaz_chestplate, mythicupgrades:topaz_leggings, mythicupgrades:topaz_boots + # + # Default: [ + S:TOPAZ < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:sweet_tooth_helmet, mcda:sweet_tooth_chestplate, mcda:sweet_tooth_leggings, mcda:sweet_tooth_boots + # + # Default: [ + S:SWEET_TOOTH < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: bingus:bingus_rizz_helmet + # + # Default: [ + S:bingus_bingus_rizz_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:champions_armor_helmet, mcda:champions_armor_chestplate, mcda:champions_armor_leggings, mcda:champions_armor_boots + # + # Default: [ + S:CHAMPION < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:red_mystery_armor_helmet, mcda:red_mystery_armor_chestplate, mcda:red_mystery_armor_leggings, mcda:red_mystery_armor_boots + # + # Default: [ + S:RED_MYSTERY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mythicupgrades:ruby_helmet, mythicupgrades:ruby_chestplate, mythicupgrades:ruby_leggings, mythicupgrades:ruby_boots + # + # Default: [ + S:RUBY < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:gilded_glory_helmet, mcda:gilded_glory_chestplate, mcda:gilded_glory_leggings, mcda:gilded_glory_boots + # + # Default: [ + S:GILDED < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mythicupgrades:jade_helmet, mythicupgrades:jade_chestplate, mythicupgrades:jade_leggings, mythicupgrades:jade_boots + # + # Default: [ + S:JADE < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: mcda:shulker_armor_helmet, mcda:shulker_armor_chestplate, mcda:shulker_armor_leggings, mcda:shulker_armor_boots + # + # Default: [ + S:SHULKER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:cuirassier_helmet, magistuarmory:cuirassier_chestplate, magistuarmory:cuirassier_leggings, magistuarmory:cuirassier_boots + # + # Default: [ + S:magistuarmory_cuirassier_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:crown_decoration + # + # Default: [ + S:magistuarmory_crown_decoration < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:rustedbarbute + # + # Default: [ + S:magistuarmory_rustedbarbute < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:maximilian_helmet + # + # Default: [ + S:magistuarmory_maximilian_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:rustedkettlehat + # + # Default: [ + S:magistuarmory_rustedkettlehat < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:barbute + # + # Default: [ + S:magistuarmory_barbute < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:wingedhussar_chestplate + # + # Default: [ + S:magistuarmory_wingedhussar_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:bascinet + # + # Default: [ + S:magistuarmory_bascinet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:minicrown_decoration + # + # Default: [ + S:magistuarmory_minicrown_decoration < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:grand_bascinet + # + # Default: [ + S:magistuarmory_grand_bascinet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:rustedgreathelm, magistuarmory:rustedcrusader_chestplate, magistuarmory:rustedcrusader_boots + # + # Default: [ + S:magistuarmory_rustedgreathelm < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:shishak + # + # Default: [ + S:magistuarmory_shishak < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:chainmail_helmet, magistuarmory:chainmail_chestplate, magistuarmory:chainmail_leggings, magistuarmory:chainmail_boots + # + # Default: [ + S:magistuarmory_chainmail_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:kettlehat + # + # Default: [ + S:magistuarmory_kettlehat < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:rustednorman_helmet + # + # Default: [ + S:magistuarmory_rustednorman_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:maximilian_chestplate, magistuarmory:maximilian_leggings, magistuarmory:maximilian_boots + # + # Default: [ + S:magistuarmory_maximilian_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:greathelm, magistuarmory:crusader_chestplate, magistuarmory:crusader_leggings, magistuarmory:crusader_boots + # + # Default: [ + S:magistuarmory_greathelm < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:jousting_chestplate, magistuarmory:jousting_leggings, magistuarmory:jousting_boots + # + # Default: [ + S:magistuarmory_jousting_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:armet + # + # Default: [ + S:magistuarmory_armet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:rustedhalfarmor_chestplate + # + # Default: [ + S:magistuarmory_rustedhalfarmor_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:norman_helmet + # + # Default: [ + S:magistuarmory_norman_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: dungeonnowloading:spawner_helmet, dungeonnowloading:spawner_chestplate, dungeonnowloading:spawner_leggings, dungeonnowloading:spawner_boots + # + # Default: [ + S:SPAWNER < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:knight_chestplate, magistuarmory:knight_leggings, magistuarmory:knight_boots + # + # Default: [ + S:magistuarmory_knight_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:ceremonial_chestplate, magistuarmory:ceremonial_boots + # + # Default: [ + S:magistuarmory_ceremonial_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:sallet + # + # Default: [ + S:magistuarmory_sallet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:brigandine_chestplate + # + # Default: [ + S:magistuarmory_brigandine_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:ceremonialarmet + # + # Default: [ + S:magistuarmory_ceremonialarmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:flowercrown_decoration + # + # Default: [ + S:magistuarmory_flowercrown_decoration < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:coif, magistuarmory:gambeson_chestplate, magistuarmory:pantyhose, magistuarmory:gambeson_boots + # + # Default: [ + S:magistuarmory_coif < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:gothic_chestplate, magistuarmory:gothic_leggings, magistuarmory:gothic_boots + # + # Default: [ + S:magistuarmory_gothic_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:stechhelm + # + # Default: [ + S:magistuarmory_stechhelm < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:kastenbrust_chestplate, magistuarmory:kastenbrust_leggings, magistuarmory:kastenbrust_boots + # + # Default: [ + S:magistuarmory_kastenbrust_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:xivcenturyknight_chestplate, magistuarmory:xivcenturyknight_leggings, magistuarmory:xivcenturyknight_boots + # + # Default: [ + S:magistuarmory_xivcenturyknight_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:halfarmor_chestplate + # + # Default: [ + S:magistuarmory_halfarmor_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:rustedchainmail_helmet, magistuarmory:rustedchainmail_chestplate, magistuarmory:rustedchainmail_leggings, magistuarmory:rustedchainmail_boots + # + # Default: [ + S:magistuarmory_rustedchainmail_helmet < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:platemail_chestplate, magistuarmory:platemail_leggings, magistuarmory:platemail_boots + # + # Default: [ + S:magistuarmory_platemail_chestplate < + > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: magistuarmory:face_helmet, magistuarmory:lamellar_chestplate, magistuarmory:lamellar_boots + # + # Default: [ + S:magistuarmory_face_helmet < + > +} + + +formatting { + # The format string that will be used when a suffix is applied. + # Default: %s the %s + S:"Suffix Format"=%s the %s + + # The format string that will be used to indicate ownership. + # Default: %s's + S:"Ownership Format"=%s's +} + + diff --git a/config/zenith/potion.cfg b/config/zenith/potion.cfg new file mode 100644 index 0000000..7f279f4 --- /dev/null +++ b/config/zenith/potion.cfg @@ -0,0 +1,92 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Zenith Potion Module Configuration + +general { + # The strength of Ancient Knowledge. This multiplier determines how much additional xp is granted. + # Server-authoritative. + # Default: 4; Range: [1 ~ 2147483647] + I:"Knowledge XP Multiplier"=4 + + # If Potion Charms will only work when in a trinkets slot, instead of in the inventory. + # Default: false + B:"Restrict Charms to Trinkets"=false + + # A list of effects that, when as charms, will be applied and reapplied at a longer threshold to avoid issues at low durations, like night vision. + # Server-authoritative. + # Default: [minecraft:night_vision], [minecraft:health_boost] + S:"Extended Potion Charms" < + minecraft:night_vision + minecraft:health_boost + > + + # A list of effects that will be unable to be crafted into charms. + # Server-authoritative. + # Default: [modid:charm_id] + S:"Disabled Potion Charms" < + modid:charm_id + > + + # If charms that are uncraftable are removed from the user. + # Default: false + B:"Yeet Uncraftable Charms"=false +} + + +########################################################################################################## +# brewing +#--------------------------------------------------------------------------------------------------------# +# All brewing recipe disables are Server-authoritative. +########################################################################################################## + +brewing { + # If this potion type will be craftable in the brewing stand. + # Default: true + B:Resistance=true + + # If this potion type will be craftable in the brewing stand. + # Default: true + B:Sundering=true + + # If this potion type will be craftable in the brewing stand. + # Default: true + B:Absorption=true + + # If this potion type will be craftable in the brewing stand. + # Default: true + B:Haste=true + + # If this potion type will be craftable in the brewing stand. + # Default: true + B:Fatigue=true + + # If this potion type will be craftable in the brewing stand. + # Default: true + B:Wither=true + + # If this potion type will be craftable in the brewing stand. + # Default: true + B:Knowledge=true + + # If this potion type will be craftable in the brewing stand. + # Default: true + B:Luck=true + + # If this potion type will be craftable in the brewing stand. + # Default: true + B:Vitality=true + + # If this potion type will be craftable in the brewing stand. + # Default: true + B:Grievous=true + + # If this potion type will be craftable in the brewing stand. + # Default: true + B:Levitation=true + + # If this potion type will be craftable in the brewing stand. + # Default: true + B:Flying=true +} + + diff --git a/config/zenith/spawner.cfg b/config/zenith/spawner.cfg new file mode 100644 index 0000000..686683c --- /dev/null +++ b/config/zenith/spawner.cfg @@ -0,0 +1,26 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Zenith Spawner Module Configuration + +general { + # The level of silk touch needed to harvest a spawner. Set to -1 to disable, 0 to always drop. The enchantment module can increase the max level of silk touch. + # Functionally server-authoritative, but should match on client for information. + # Default: 1; Range: [-1 ~ 127] + I:"Spawner Silk Level"=1 + + # The durability damage dealt to an item that silk touches a spawner. + # Server-authoritative. + # Default: 100; Range: [0 ~ 100000] + I:"Spawner Silk Damage"=100 +} + + +spawn_eggs { + # A list of entity registry names that cannot be applied to spawners via egg. + # Should match between client and server. + # Default: [ + S:"Banned Mobs" < + > +} + + diff --git a/config/zenith/village.cfg b/config/zenith/village.cfg new file mode 100644 index 0000000..7875d9b --- /dev/null +++ b/config/zenith/village.cfg @@ -0,0 +1,30 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Zenith Village Module Configuration + +wanderer { + # If the generic trade list will be cleared before datapack loaded trades are added. + # Server-authoritative. + # Default: false + B:"Clear Generic Trades"=false + + # If the rare trade list will be cleared before datapack loaded trades are added. + # Server-authoritative. + # Default: false + B:"Clear Rare Trades"=false + + # If the Wandering Trader can attempt to spawn underground. + # Server-authoritative. + # Default: true + B:"Underground Trader"=true +} + + +arrows { + # If explosive arrows can break blocks. + # Server-authoritative. + # Default: true + B:"Explosive Arrow Block Damage"=true +} + + diff --git a/config/zenith/zenith.cfg b/config/zenith/zenith.cfg new file mode 100644 index 0000000..685669c --- /dev/null +++ b/config/zenith/zenith.cfg @@ -0,0 +1,45 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# Zenith Module Control + +# This file allows individual modules of Zenith to be enabled or disabled. +# Changes will have no effect until the next game restart. +# This file must match on client and server. +# Report any issues found to https://github.com/TheWinABagel/Zenith/issues, not to Apotheosis! + + +general { + # If the enchantment module is enabled. + # Default: true + B:"Enable Enchantment Module"=true + + # If the adventure module is loaded. + # Default: true + B:"Enable Adventure Module"=true + + # If the spawner module is enabled. + # Default: true + B:"Enable Spawner Module"=true + + # If the potion module is loaded. + # Default: true + B:"Enable Potion Module"=true + + # If the village module is loaded. + # Default: true + B:"Enable Village Module"=true + + # If the garden module is loaded. + # Default: true + B:"Enable Garden Module"=true + + # If a lot of random debug info is added to the console. Not recommended for normal play. + # Default: false + B:"Enable Debug mode"=false + + # If the Chronicle of Shadows is given to new players. + # Default: true + B:"Give Book on First Join"=true +} + + diff --git a/config/zenith_attributes.cfg b/config/zenith_attributes.cfg new file mode 100644 index 0000000..a6ab7c5 --- /dev/null +++ b/config/zenith_attributes.cfg @@ -0,0 +1,63 @@ +# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1 + +# + +general { + # If the Attributes GUI is available. + # Default: true + B:"Enable Attributes GUI"=true + + # If description tooltips will be added to potion items. + # Default: true + B:"Enable Potion Tooltips"=true + + # A list of attributes that will be hidden from the Attributes GUI. + # Default: [zenith_attributes:creative_flight], [zenith_attributes:elytra_flight], [zenith_attributes:ghost_health] + S:"Hidden Attributes" < + zenith_attributes:creative_flight + zenith_attributes:elytra_flight + zenith_attributes:ghost_health + > +} + + +combat_rules { + # The protection damage reduction formula. + # Computed after Prot Pierce and Prot Shred are applied. + # Arguments: + # 'protPoints' - The number of protection points the user has after reductions. + # Output: + # The percentage of damage taken after protection has been applied, from 0 (no damage taken) to 1 (full damage taken). + # Reference: + # See https://github.com/ezylang/EvalEx#usage-examples for how to write expressions. + # + # Default: 1 - min(0.025 * protPoints, 0.85) + S:"Protection Formula"=1 - min(0.025 * protPoints, 0.85) + + # The a-value formula, which computes an intermediate used in the armor formula. + # Arguments: + # 'damage' - The damage of the incoming attack. + # Output: + # The a-value, which will be supplied as an argument to the armor formula. + # Reference: + # See https://github.com/ezylang/EvalEx#usage-examples for how to write expressions. + # + # Default: if(damage < 20, 10, 10 + (damage - 20) / 2) + S:"A-Value Formula"=if(damage < 20, 10, 10 + (damage - 20) / 2) + + # The armor damage reduction formula. + # Computed after Armor Pierce and Armor Shred are applied. + # Arguments: + # 'a' - The a-value computed by the a-value formula. + # 'damage' - The damage of the incoming attack. + # 'armor' - The armor value of the user after reductions. + # Output: + # The percentage of damage taken after armor has been applied, from 0 (no damage taken) to 1 (full damage taken). + # Reference: + # See https://github.com/ezylang/EvalEx#usage-examples for how to write expressions. + # + # Default: a / (a + armor) + S:"Armor Formula"=a / (a + armor) +} + + diff --git a/index.toml b/index.toml new file mode 100644 index 0000000..01ca6e6 --- /dev/null +++ b/index.toml @@ -0,0 +1,2383 @@ +hash-format = "sha256" + +[[files]] +file = "config/DistantHorizons.toml" +hash = "c14caed7ae00724161fb110c79f2a0c2294e57ae1b57d2f37939ed4114c0f83c" + +[[files]] +file = "config/MythicMountsConfig.json" +hash = "d8b43bedf628b69e035bc340e4936bca48cd3c0bd5d02ebf3cc9595ff32981ba" + +[[files]] +file = "config/NoChatReports/NCR-Client.json" +hash = "edfe78d985fe67dce28104f3d87673e94c89134144451c291ecedcd2e2c3b480" + +[[files]] +file = "config/NoChatReports/NCR-Common.json" +hash = "0eaad2630bd70ade719f7810e805810ada25379269ea194e43d3eea30c51dec0" + +[[files]] +file = "config/NoChatReports/NCR-Encryption.json" +hash = "0f61ac30bfc78653a30d715f793e30a6a43d6715106706487efd0aea5d43a84c" + +[[files]] +file = "config/NoChatReports/NCR-ServerPreferences.json" +hash = "df32843b853e0a493ef3a9b1e39276818294353fbb0d833f7f61e77da0f5bca1" + +[[files]] +file = "config/NoChatReports/README.md" +hash = "c52b76ccad2bd1063a22c7f6bb9e7c5db6b00fb53a6fd605585972ee0e5fc01f" + +[[files]] +file = "config/adventurez.json5" +hash = "0e293a707eed2a7add3b0922402fe9813c8ea52d0b911919b7e3df7a47332b92" + +[[files]] +file = "config/almostunified/debug.json" +hash = "3e03a291b5310a6b94a45aff63e4731baa643701c42a968ed716483ccd1d5a37" + +[[files]] +file = "config/almostunified/duplicates.json" +hash = "fe03cb28977f4ee8ea2090027d309e89b81c1a0f4cd82a4f6f4f7063474c1351" + +[[files]] +file = "config/almostunified/startup.json" +hash = "ad711622f9b8c5cc8115f52396f5d82587b809fb20cbf9d94c7744aeebcaf4d5" + +[[files]] +file = "config/almostunified/unify.json" +hash = "397af76b0fbf71e0382df17f412a03124f96fe5557f38644fe101fbce36a60b5" + +[[files]] +file = "config/archers/items_v2.json" +hash = "57a21ebeaee31a33518d0ba7ef2f6172f4f7a6ccbdca48064a249ffe9b1ce753" + +[[files]] +file = "config/archers/tweaks.json" +hash = "93a5db3e06f9b65711fb67b05570b8de20dcb33005ef80da529423362552a0eb" + +[[files]] +file = "config/archers/villages.json" +hash = "3ff4111bc53c4ff5508e763257f98d82afb8aad06ccb10e243eae3b9b9587437" + +[[files]] +file = "config/archon.json5" +hash = "f52b7c770c61a3cfe25c49f95358c652edd4ee458cafd0c69550212e4084e987" + +[[files]] +file = "config/artifacts/client.json5" +hash = "0c7266a6d9718bac60930b94cf137e3ee72c18fe61749fc9d8dcee216eb87518" + +[[files]] +file = "config/artifacts/common.json5" +hash = "736bec8c910558091bb749ac7adb013822a253a02f1f70637eb193952768d2b1" + +[[files]] +file = "config/attributefix.json" +hash = "f0257f20b5ba1fb2a66235c134f2785d0fabfcd36d90d07973b6e4a6ad9d24cf" + +[[files]] +file = "config/azurelib.json" +hash = "32acac9194b283dc4f8e219ae5b802a26ac7fde079109aed435fe92f178e5b1c" + +[[files]] +file = "config/badoptimizations.txt" +hash = "3aaec8222e5e957858c8931cd1e99b2367107d28954f6dfb7b8426891b95086a" + +[[files]] +file = "config/balm-common.out.toml" +hash = "33606d9f309e655d6494dab932a061efe1f1f917a286bfc74b07f1876096464f" + +[[files]] +file = "config/balm-common.toml" +hash = "33606d9f309e655d6494dab932a061efe1f1f917a286bfc74b07f1876096464f" + +[[files]] +file = "config/batsgalore-common.toml" +hash = "538c2c55b94514323988a29fee6cbaafdd567c77fdecc3a1cee6e3588bfc4550" + +[[files]] +file = "config/bclib/biomes.json" +hash = "e31ef59faee81b0cff9506c0b4137f6473f68ca469d2319203bc3ca50eed6d13" + +[[files]] +file = "config/bclib/cache.json" +hash = "66a151dbf2123ba09e0ec7c3aade37066dc98c153b692b20df7844c5a44c60b3" + +[[files]] +file = "config/bclib/client.json" +hash = "962f735ce44b71b79e9ef0d410f22dce370210511ad72d899b22fe26067f2cb0" + +[[files]] +file = "config/bclib/generator.json" +hash = "218542dbc05094a216da6161849a631c4fd770cf5364395d521e15e00240e0bf" + +[[files]] +file = "config/bclib/main.json" +hash = "6c374c2361f59dbbace6322200613773ec01d5fb6e8fb70ac5d89463e3631f05" + +[[files]] +file = "config/bclib/server.json" +hash = "a747a0bb0548ef3b677671e5e60ac931bb2a45c212bfdb9a8b180cddb068ee87" + +[[files]] +file = "config/betterarcheology_structures/structure_settings.json5" +hash = "38d7ba223179d5c572ab2b545501505a75bfd32acd4d3b2f558f8d7d9134c269" + +[[files]] +file = "config/betterarcheology_structures/structure_toggle.json5" +hash = "2e50e09b1315e4a45ae949f4b515fd29ed4fa2f307849eafe8cd4c5b7706dea0" + +[[files]] +file = "config/betterarcheologyconfig.properties" +hash = "6c8222b7b77bc08b059c512985f4de33ccd205bf608259c4fb91b9ddc3a5c91f" + +[[files]] +file = "config/betterchunkloading.json" +hash = "371cbda2d9f5d0d8daf00faf2ee300611efd6fb854df1756d17131118ab933f5" + +[[files]] +file = "config/bettercombat/client.json5" +hash = "e8064b014f9e01c27b63877f98410dd166f79b562aabb0d8fc365aeef2616902" + +[[files]] +file = "config/bettercombat/fallback_compatibility.json" +hash = "754feb4474a3f4d9fe6bd08f38c248fd5a796ed51f38d7d5704680250f3a34ca" + +[[files]] +file = "config/bettercombat/server.json5" +hash = "8a3ca0cbeb543de63d478c7aaf065c0244a8b5d4face1c0a0124d1d3a1790c12" + +[[files]] +file = "config/betterdeserttemples-fabric-1_20.toml" +hash = "06a1b8b7774df6bef4dc9b82e140a4211d41c93178ee0d9d25105d05a6c20566" + +[[files]] +file = "config/betterdeserttemples/README.txt" +hash = "3646bc39be8c42a1432506e77721f3b963d33948d4bbd4cd5a10703834979116" + +[[files]] +file = "config/betterdeserttemples/fabric-1_20/README.txt" +hash = "80ba474fdd1912739a1dc3326de6539ccfceb9d5c97f540131b567e295a7b112" + +[[files]] +file = "config/betterdeserttemples/fabric-1_20/armorstands.json" +hash = "5f2c5880a14e852c5a0e49d164994d5498e956069f62a0897cbc9510709ae072" + +[[files]] +file = "config/betterdeserttemples/fabric-1_20/itemframes.json" +hash = "c2d2252873fadbaa3385338dc86aff83066c02acd38317e50d19c0c01c113aae" + +[[files]] +file = "config/betterdungeons-fabric-1_20.toml" +hash = "c0809814af173f138d83495d36aabcccda93ba2f2a49ec5b7e1c87a201efee77" + +[[files]] +file = "config/betterend/blocks.json" +hash = "eec67453561a2f4656c218c3eaa91691318a7b45a887cae065dcc70e045cff5b" + +[[files]] +file = "config/betterend/client.json" +hash = "b0c5fe0ddb608e1511f9fb145768bbf5308ffd3a58f54c1fb3734635384b9e01" + +[[files]] +file = "config/betterend/enchantments.json" +hash = "fe93e79aff2fc28279544d8578bc01206964d94cd404c9845ebe871128196803" + +[[files]] +file = "config/betterend/entities.json" +hash = "c88c23c520341d800c6403788d500a2c8db1eebf1cb3920f9809b31f00e6558b" + +[[files]] +file = "config/betterend/generator.json" +hash = "564c1d7ef5b6adaeec9e7024147316c6448fcc4e97dab5391870440d0237c718" + +[[files]] +file = "config/betterend/items.json" +hash = "5fb18af78d9d096929c49224dab452715b319de8dd433a274c54adb25ea7f005" + +[[files]] +file = "config/betterend/portals.json" +hash = "c0900ca41e9721a30bf49f00762f9fb80367908cd668d5c32ab2816e61ff51d7" + +[[files]] +file = "config/betterendisland-fabric-1_20.toml" +hash = "8dc553b84ad47cefbfbe3706d2172a06caa2549ad8e6f151a3b2763ddf08936f" + +[[files]] +file = "config/betterfortresses-fabric-1_20.toml" +hash = "c6f718e24389dd618b788ea1ef0c64d3689e9408fd9a482e67ecece0dc392ece" + +[[files]] +file = "config/betterfortresses/README.txt" +hash = "a4e97263d2f099fcbc3fd7646c85c562e1eb7659bfa5ff66b11f76afaa2f9c06" + +[[files]] +file = "config/betterfortresses/fabric-1_20/README.txt" +hash = "1175dbf9cd2e7c91b1c852a51e3c0203c68484917e877465b283e2370ad62864" + +[[files]] +file = "config/betterfortresses/fabric-1_20/itemframes.json" +hash = "65729cd8caff399bba034caa8f13ed4adb06088abd1530227591e0353a9f470f" + +[[files]] +file = "config/betterfpsdist.json" +hash = "371f4a25c65652f254ad563c0be8331f7aa25ffd362dcb2204edbd7bb2dc1670" + +[[files]] +file = "config/betterjungletemples-fabric-1_20.toml" +hash = "69a3aa51ef5a881f01a6515f72a57a10b8df7c7b93588f424fc07c864a0933e1" + +[[files]] +file = "config/bettermineshafts-fabric-1_20.toml" +hash = "d486f4672659b59f9a855d9ebce345d8a983c504d24b99613ce280db657c40f5" + +[[files]] +file = "config/betternether/biomes.json" +hash = "39ea566a6a253c7cae3082b0b205c2eb924c009f82e0013f09dc1a2e14511c8f" + +[[files]] +file = "config/betternether/blocks.json" +hash = "d5753557e4c0c3a46e0db647cde26306bf469833d8617ecd9142b165988050ea" + +[[files]] +file = "config/betternether/generator.json" +hash = "787e6999e46c43c90f3ff5f13fb3d061e78949304d7c490ce6053056b2f2e1e0" + +[[files]] +file = "config/betternether/items.json" +hash = "ebcc8c6efb093ca4663c42a796b94c96873aa55678245801ee30f7f234a58dc1" + +[[files]] +file = "config/betternether/main.json" +hash = "6d4f1aa22a4c974936e5e6924d644f1755fd995a87092e99e113bdd494371f02" + +[[files]] +file = "config/betternether/mobs.json" +hash = "6ce59f333ede885d055ee3fb3164f38cb609843ce279d00b4bba0d2a73347a5a" + +[[files]] +file = "config/betteroceanmonuments-fabric-1_20.toml" +hash = "dbba9af53d8bfb9f46cb4c9ab525a72026ad0a13c36e8dd8efe7398a767c3187" + +[[files]] +file = "config/betterstrongholds-fabric-1_20.toml" +hash = "2dae469f9196a363cb5e9fb614788224a713378f22300a1afd6486f1d43766a2" + +[[files]] +file = "config/betterstrongholds/README.txt" +hash = "70aadca974d0adfe90f98930e23c15076b3d2e625c88e8c2aa6721d91a8c035f" + +[[files]] +file = "config/betterstrongholds/fabric-1_20/README.txt" +hash = "c857bda54ab01ca5db21cfe085dc75dcbb13d26054463cf301c74023783612fc" + +[[files]] +file = "config/betterstrongholds/fabric-1_20/armorstands.json" +hash = "233019fbad5b6a171fe59db3f54be9d319d1066f0c2cad19d45a7f8c8da6aecc" + +[[files]] +file = "config/betterstrongholds/fabric-1_20/itemframes.json" +hash = "2a7db3f2178e4f3e3caffae652a3edbd67339d0cf3bc414f3e1d58bd3eadbf61" + +[[files]] +file = "config/betterstrongholds/fabric-1_20/ores.json" +hash = "1c3f63101982c5f27126214f16970bc07ddaeb4268d89f7aa1e6efa15d64881f" + +[[files]] +file = "config/betterstrongholds/fabric-1_20/rareblocks.json" +hash = "d6a7ad89b872184a4f72d1dd58557f4855758f9f08be4f257960c80ab8dae376" + +[[files]] +file = "config/betterwitchhuts-fabric-1_20.toml" +hash = "063ce4f60934ab166dade45375ef5518df74be2c6c1e1f1a52ec181013803197" + +[[files]] +file = "config/blockrunner-client.toml" +hash = "ea0050c895785f7550675ccec4a65ce928b348b944d3e52c1a08187259445b08" + +[[files]] +file = "config/blockrunner.json" +hash = "f4ea26b07867cdfddd44d28231d69bc3e57bd8664b855faa59b3ab9bac3e6e43" + +[[files]] +file = "config/bosses_of_mass_destruction.json5" +hash = "6bf64126b4f95b7f41c468ed61851b823a9fd02c6cb4b4cdf4736530af5bb820" + +[[files]] +file = "config/bountiful/bountiful.json" +hash = "d9d47ef737d069382da1d2bb2b16d52a0f27401fd5c0992a62b7e601b0e0eeea" + +[[files]] +file = "config/camping.json" +hash = "6319dbccf6ea2213ffde0479c45f5620c28608a2d6d7311eb0b7fdf666a956cd" + +[[files]] +file = "config/cardinal-components-api.properties" +hash = "f7e7f346e0724cf9cfb77f44dec2e7d202ea2507729ec7b95ee6a8f089c82982" + +[[files]] +file = "config/cave-dweller-config.json5" +hash = "68c8c3a3e455f6c4691d88b5ee35b5db5130c4043b59b16b58960df7b62e926b" + +[[files]] +file = "config/collective.json5" +hash = "b6243b955bf123f86c947510d9f8f3a4b5f7b8fe3775d834f458d60a3223847f" + +[[files]] +file = "config/combatroll/client.json5" +hash = "e9714f119c3862a898e53eab1a4ba6220a2194a5bdf0aea86623042d6cbf57e3" + +[[files]] +file = "config/combatroll/enchantments.json" +hash = "b807ca9ebe5ca5e45c8367b08cb97a08aa73181b66da4ab7c9f92e02200ca01e" + +[[files]] +file = "config/combatroll/hud_config.json" +hash = "174f9be686eeb112482c3b5f2cc58d1f6060357cf75f1abd730c5f80f3ae9e84" + +[[files]] +file = "config/combatroll/server.json5" +hash = "6c3ec2b2926b78c73dddf0cfedaf483efb7c3fe8a093f557e560ab280a0683f4" + +[[files]] +file = "config/connectivity.json" +hash = "15de6d09567ab4c8194a1b0b344343ac0e5c9d9e4a72592696dafd0ff6b64587" + +[[files]] +file = "config/convenientdecor.json5" +hash = "113915cdb6a8ff1d477d4c46b062dd48ea352303d04a35e0a05571ea9f6d9885" + +[[files]] +file = "config/creeperoverhaul.jsonc" +hash = "9d870b28f9a1479f952f258f7f01aebceb17fdc78c23014469c8ac055fad9bbb" + +[[files]] +file = "config/cristellib/minecraftED.json5" +hash = "8e01cc9b7e46f74fd60ce36d3459628b8198cb988051ae52f14cda36ef0fd869" + +[[files]] +file = "config/cristellib/minecraftP.json5" +hash = "8fe09b83f2fe6bf9d547e99b8d883aef42bf3d9e2e6f5bd43ec3fcd4c7f756da" + +[[files]] +file = "config/cupboard.json" +hash = "08bda8a4a20d302cb97d06bf11c4991e152a3a9e04c17302ea3b42aa77e6b028" + +[[files]] +file = "config/cutthrough-client.toml" +hash = "b7329ca76274046b36099190ecd79a72c1c5f1b3d2ffa358e280c8f2d6f65093" + +[[files]] +file = "config/debugify-descriptions.json" +hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a" + +[[files]] +file = "config/debugify.json" +hash = "b7651c21ec5a9a30267b76898932f51dc2f7a9efa5220e45450d7340ea6574a7" + +[[files]] +file = "config/deeperdarker.json5" +hash = "4838cfbddc5a32292286d9a1d67c295733be5eae20c3f5193bac3fa691f548dc" + +[[files]] +file = "config/deuf_refabricated.json" +hash = "fcd9e3d241238e811010c37d12da612546f05ff457d3c4cfb5b51dae37801464" + +[[files]] +file = "config/doubledoors.json5" +hash = "d4407793e6f0450c0b22eb5099f297e66ec947b666e8b5b1b7a15c87c1818cca" + +[[files]] +file = "config/dungeon_difficulty_client.json" +hash = "603da90baa519aaadbe22b43f6967a1b51379a442a51d00c8a68b1ac110666cc" + +[[files]] +file = "config/dungeon_difficulty_v2.json" +hash = "df4f41c7a2403149dc96a0a6566038e0b103a1e8bd45a793d9cd8d456cc24808" + +[[files]] +file = "config/dungeonnowloading-client.toml" +hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + +[[files]] +file = "config/dungeonnowloading-server.toml" +hash = "97de8f08535b777caaf10bb01fccf69e8646b2fdb6efc8de817cd457c94c4d3d" + +[[files]] +file = "config/economical_villager_trading.json" +hash = "f86e74ca5302ff3aeff1d0d102f562ab2987c1aed5a37bfcb3749ab3094f0b88" + +[[files]] +file = "config/eldritch_end/biomes/hasturian_wastes.json" +hash = "0dd1a61d06d9b0626cda99f900ede1342529c9afccf07f1caf338791e394fce5" + +[[files]] +file = "config/eldritch_end/biomes/primordial_abyss.json" +hash = "b51135703c41d81c05097101573aa0b674fc9c025c7a9ef61e81bcf74a78920b" + +[[files]] +file = "config/eldritch_end/bosses/hastur.json" +hash = "294b5e15775a9877564507813ca99065e31a783c2700618130e91902280134ea" + +[[files]] +file = "config/eldritch_end/eldritch_end-client.json" +hash = "d934f43bae3525923c6b6c79cf76014bb6a2c3b341122ce3b80b938bd4a66e28" + +[[files]] +file = "config/eldritch_end/entities/aberration.json" +hash = "2a3c4143705789845b780263b2e46ffbd2c891e1bcb95bdf9c570e3a07a66886" + +[[files]] +file = "config/eldritch_end/entities/dendler.json" +hash = "bf4afb846701594f6498b32ade50d7e655bbafe28a9a2410619f3f40c16bdf04" + +[[files]] +file = "config/eldritch_end/entities/tentacle.json" +hash = "ac78c7af5eab647cabdbae58ed7c05fab77151ce05dd8a6ac721c9711ed95cae" + +[[files]] +file = "config/eldritch_end/mechanics/corruption.json" +hash = "9967d889b433faf70b0570d3deebf13ab3bdeb98dc4e3964f2a1d97c31133d6c" + +[[files]] +file = "config/emi.css" +hash = "3fa533168e547ad627fd2bf72bf7d566b10622295c47596646fa59960ced4166" + +[[files]] +file = "config/endrem.json" +hash = "c04433d81706cf5c4ef543f636afd7353026dbac28a355d842062f68da1de223" + +[[files]] +file = "config/enhanced_bes.properties" +hash = "c5f2129218222399576b502e05e6b044c3295969c9456a7e601b7bcbb64d8017" + +[[files]] +file = "config/entity_model_features.json" +hash = "a298dd9319a5f845f7fd7d1c94600b8ca639bd3715258ef4ce23c7e6dc9c6923" + +[[files]] +file = "config/entity_texture_features.json" +hash = "d15359d589b9c0849d0d1faf2fe503d537bcc186cc09703648f0881c32dcf6e4" + +[[files]] +file = "config/entityculling.json" +hash = "81b6afd82e5ab2ca45b5fc0f025ef5638b3d2df534dbc05bb7e399042706c961" + +[[files]] +file = "config/epicknights/armor.json5" +hash = "d70c9837f1be723beac0c5d941ecf06fa2c80a43623eaa1d16092fd06bc813d7" + +[[files]] +file = "config/epicknights/general.json5" +hash = "d3dec561a9b4985cb6407bc18bc1d8507e5bd7e6e916de32a0bdae0e8b2998ba" + +[[files]] +file = "config/epicknights/mobs_equipment.json5" +hash = "35bf1bc34160e9a890814f08e0e9a69c3d7e21bf6991ace6548ef759e4cd8524" + +[[files]] +file = "config/epicknights/shields.json5" +hash = "0813a37c333b5eeee253735f382e0a957d0349f6969b864202d0b995f7624a7a" + +[[files]] +file = "config/epicknights/weapons.json5" +hash = "b43c53a07ffe8ce99c3237549c5927932ad151836f3c4032a95d6ec7592ddb29" + +[[files]] +file = "config/etf_warnings.json" +hash = "a5ba22e63061c1fb67f0f895f17681351eaeccc225faef966c29ee630593275e" + +[[files]] +file = "config/explorerscompass.json" +hash = "3c9e39e4d6a36db5d84e4b1eae822eb54840418fc5dfcdda972443c3e49075f9" + +[[files]] +file = "config/fabric/indigo-renderer.properties" +hash = "a9408d0d618e920149d5118082c904ef6296580d972cbf595b8a90cac587f72d" + +[[files]] +file = "config/fallingtree.json" +hash = "922a0a06c316eb1f0aba285f5bc59f4421b51b6f861661f3cdab38bbd44e4927" + +[[files]] +file = "config/ferritecore.mixin.properties" +hash = "a2091a291309db8920c8a80e913ed31c24c29687d8cd25ac18076ad85a90ddb8" + +[[files]] +file = "config/forgeconfigapiport.toml" +hash = "300b866a6251887cbd30b18438e123b2fa524315edbf8e2996a01acb4ecac91e" + +[[files]] +file = "config/friendsandfoes.json" +hash = "ae6477b66322c4ec3df4aa19d55f82aaaaf487f2801157b51d59653a10547e5c" + +[[files]] +file = "config/fwaystones/config.json5" +hash = "1a8102a2b1e5846a2a9dac0bae35c643dfe8112e19abd9902a61aef59f266068" + +[[files]] +file = "config/fzzy_core/README.txt" +hash = "bb7b4b3029da1e6408cd27dd11e2d94a710cc178b9cf84336c45f01185be72bc" + +[[files]] +file = "config/fzzy_core/flavors_v0.json" +hash = "4948d372bd930552682c4a975e972bb1e876a19fb87e2a3fbdb466887a9aa9a6" + +[[files]] +file = "config/gazebo/villages.json" +hash = "4e5e312a436b94bb9b6e117cc18dd2e9785bddb8e5cbe66d33abe6eebf2d9309" + +[[files]] +file = "config/grapplemod.json" +hash = "1004b07859564aee67a0a358e5603b68016c8a2723f432066061dcdba6aeeec7" + +[[files]] +file = "config/graveyard/the-graveyard-3.0-config.json5" +hash = "d3c4b80ecc098946480ef5186657c671520a2d0592d30ad4b49a4ec2ae40aada" + +[[files]] +file = "config/guardvillagers.json" +hash = "fafe46cca2462296a4e37111db77ed8f8fc4e8078bbcaa04ce2785049bdc8552" + +[[files]] +file = "config/immediatelyfast.json" +hash = "a9192ef0a7d0ba3eb05a8a7a33b1f001d55c433ee01d9c670c8f9c3fcac0640c" + +[[files]] +file = "config/immersive_armors.json" +hash = "8043a3e12e89c4d665d630276f28cdae12d61d1ca94b7fd498ddbcfed7318fe6" + +[[files]] +file = "config/immersive_mc.toml" +hash = "29dd369618a08fe992e95eab372326c613b15ea0d31df7230afd8c5129962d4b" + +[[files]] +file = "config/indium-renderer.properties" +hash = "07650faf0905c5adc86500c7b9a5252b096174ee81d981ee05bcedf2577a9673" + +[[files]] +file = "config/inventorysorter/blacklist.json5" +hash = "9f36f88fdb87b6320507f049e9eff15a6622655666bac5122c1c9f694dd2e3d7" + +[[files]] +file = "config/inventorysorter/config.json5" +hash = "3f6a69f6b0c8bf3b6c9e19964666ebd0e45bc5964c072d3ff1841e8a7ea0973a" + +[[files]] +file = "config/iris.properties" +hash = "a3b5d04041ff03211d832e2ea78eb99b6e5a7bc7e7542511cf21988959aca2ed" + +[[files]] +file = "config/jade/hide-blocks.json" +hash = "247df2699ebb5a0d4c9585aeeb267ef9388cd5bee2b13ca340f35124a135b35b" + +[[files]] +file = "config/jade/hide-entities.json" +hash = "22b4560c3dc05da35a70bb6611da0ce04cff295ab8c663afd58e725c396a24b3" + +[[files]] +file = "config/jade/jade.json" +hash = "8a9c0403b385ca106d0c0b541ea2f2128bf39e3f9b05b342b176ca11834857a4" + +[[files]] +file = "config/jade/plugins.json" +hash = "8ac2bf0b98ee8536a5ac7b6e397a8e30321d53482fed02f0405c645e477aa82c" + +[[files]] +file = "config/jade/sort-order.json" +hash = "2ea6402cf98bab997166deb4bc8243816e3e77ed78db2c64ef83608eceaeec03" + +[[files]] +file = "config/jade/usernamecache.json" +hash = "138cc377293f6694546820f334ddb737316bedd3eed5c66cf0136a4fb514f81a" + +[[files]] +file = "config/jei/blacklist.cfg" +hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + +[[files]] +file = "config/jei/ingredient-list-mod-sort-order.ini" +hash = "ab4860f983005caab6a1d04dd9790660d692efdcfd03752df2a5b2debc4a0eb8" + +[[files]] +file = "config/jei/ingredient-list-type-sort-order.ini" +hash = "5064fb08f3a4af3321de4746ac60fe83ac464732b684a38c68d97ad2c4bce440" + +[[files]] +file = "config/jei/jei-client.ini" +hash = "1652c8086690db76178494673997db2d5aa39b9041f98c34304ed007d8b20ae1" + +[[files]] +file = "config/jei/jei-colors.ini" +hash = "c6328dcf3fb8b20a9f6ea6b61266ce289565c167353e183a105fb4915c36c072" + +[[files]] +file = "config/jei/jei-debug.ini" +hash = "7a52ffd21f84a31ee6c8551b67aa6e5ebc8719e4286481bd42ed016903b10b96" + +[[files]] +file = "config/jei/jei-mod-id-format.ini" +hash = "34eb990ae2cf62220a0d1be95629bcac46e6732f1cd6f7b6fdc54bcae02916e5" + +[[files]] +file = "config/jei/recipe-category-sort-order.ini" +hash = "a75dd68b427f7bfb0b91c0c56ee473f10a8e601499f65387f65242310f852ee4" + +[[files]] +file = "config/jewelry/items_v4.json" +hash = "4757c769fe6e72f02f388e72ff51ebc81368f56e103be210aade44f204a59a4e" + +[[files]] +file = "config/jewelry/villages.json" +hash = "3a0ad1c6bf844e60952867bbb67ebac157ce720a9904362b4a26d6048096a5f8" + +[[files]] +file = "config/legendarytooltips-common.toml" +hash = "8f77fedd51b3d85c170e3f20357b30a59ccc3faaa9fd747fcc1a1e9e217040f9" + +[[files]] +file = "config/libgui.json5" +hash = "6814fc05aa8d6664712b056cfd6cb51cb4bafeabe3f274b9cf5e19e27eff406d" + +[[files]] +file = "config/libz.json5" +hash = "ff49be40555a0fdb1d2dc0d27fbd3cf3701171f9a0074313619b681b37866783" + +[[files]] +file = "config/lithium.properties" +hash = "76765e8e5ff8e927d80beb0739aababcf36e7babfd94262f2afece256cc5cd2e" + +[[files]] +file = "config/lmft.json" +hash = "4846032c4ea16277b5ba5622f77017472c15b6b23a60fc144c3e2959f91f6ee9" + +[[files]] +file = "config/loadmyresources/config.cfg" +hash = "549a26b9b8ab9e2df0a427732a737c5dbcdb0b6790ad7ea9a387dea789abcad5" + +[[files]] +file = "config/logprot.json" +hash = "5548e8fcf3ab17301d14c841ad51b76b872bcac6f698ab1706974334a493d87e" + +[[files]] +file = "config/lootintegrations.json" +hash = "995a47300d6a6431feb1df51c81915875542a17a25f71c1a16c129571f694d6c" + +[[files]] +file = "config/mcda/mcda_armor_stats.json5" +hash = "3de064e7729393633687c012acf8b5dfd241d79215f3a1a652f02bed3947f024" + +[[files]] +file = "config/mcda/mcda_enable_armors.json5" +hash = "9525fd9e406f280d88149913e6abf593c7b602cb6a3013d797edf3eeaa8e0062" + +[[files]] +file = "config/mcda/mcda_enchant_and_effect_registry.json5" +hash = "a9d9a38790d0a4043d4d69bab4c62b43f608a50d3c34941346d193749fa42f83" + +[[files]] +file = "config/mcda/mcda_item_drops.json5" +hash = "7b83e9c23cc40442acecb02ce380b60b3df866fbe1b03d3942a3e764d703df7b" + +[[files]] +file = "config/mcda/mcda_loot_tables.json5" +hash = "c831000082ede1ebd84e255d42346d52994a6be4cf07a568026177cbb2987fa3" + +[[files]] +file = "config/mcdw/mcdw_enchantment_settings_config.json5" +hash = "0153b28b2dcab0f3a4622a552a232860c3f05e8bf35e0ad63239526473daa2ff" + +[[files]] +file = "config/mcdw/mcdw_enchantments_config.json5" +hash = "e186dfd505abaacfba68fa3469e061312c9347e0e2c38fb06e43183bb8624243" + +[[files]] +file = "config/mcdw/mcdw_items_registry.json5" +hash = "1dbea1d6493da0ccc770124a0dc6aaf4656f4e235ee1dccaa05321f193689a6d" + +[[files]] +file = "config/mcdw/mcdw_loot_config.json5" +hash = "a117b3f080480892016eb9ce5d343c31a9e6ed588fe27108441876290f78a444" + +[[files]] +file = "config/mcdw/mcdw_stats_config.json5" +hash = "44fd89b87898a62705131ebcae2668b90bc84e9a1eabac71366657d220486c77" + +[[files]] +file = "config/midnightlib.json" +hash = "b14c45c6447f9ee5474d70784a2ef96731abbeca1e92485b7599e76e9dce1444" + +[[files]] +file = "config/minecells-client.json5" +hash = "93066ccb311aa16a6986f4f98c2cc316ce6cc67ca4766d48a73e7a42abd5dd87" + +[[files]] +file = "config/minecells-common.json5" +hash = "123a9ce9fa8b0a7a2b503b2f9e050f04a39db70ef2e34914fbd2383340f20e37" + +[[files]] +file = "config/mobplaques-client.toml" +hash = "5c1af1d4de30228ebb569606a683555deafb88311f92e595351e157ff4777f7e" + +[[files]] +file = "config/mobs_of_mythology.properties" +hash = "acb1519383fbf04cebde0350c1878facf3ad1d20a015e191243a990f42ef0b9f" + +[[files]] +file = "config/modernfix-mixins.properties" +hash = "2d36f9f45689cc6073e92c7268d32988effebea198dc124da58fcc73df0f677d" + +[[files]] +file = "config/modmenu.json" +hash = "748cb550ed31f0d7f2a8faf26cd0c659826ae10cfabc4a89eee7d32eed98f157" + +[[files]] +file = "config/moreculling.toml" +hash = "6b0e3ee823563d94940769cc61e79598bfc07722c62febac4bdbae55dd9ef1f3" + +[[files]] +file = "config/mutantmonsters-common.toml" +hash = "bc41aafe93b02bac7cb81f470354853b550a4e74c00cf472e2eb09896e936409" + +[[files]] +file = "config/mutantmonsters-server.toml" +hash = "e0d323fd61a6f93228bf115c878195aa497f6705c2a7c58adce434281b804ff9" + +[[files]] +file = "config/mythicupgrades-config.json5" +hash = "753f9d7b522bb77a561da6f5d844fde668390d449b7dc59d23bf316d656538f2" + +[[files]] +file = "config/naturalist.json" +hash = "24e5ae46ed559982b771d246709d855caeeb55e837df1bf131e91fd5b6f3a42f" + +[[files]] +file = "config/naturescompass.json" +hash = "a6a872fbce46949e96a433d5a088084d77c30e388b6da1542ffd8b773e682b4c" + +[[files]] +file = "config/necronomicon.json5" +hash = "f97fc5ae7dd7d312e86ecddf2e4491fee3e3a16b7a26cbb3aa078fdd3255c4df" + +[[files]] +file = "config/neruina.json" +hash = "29e73ae1075a5d9f61394a353e60ba84c5c801e511105f2400e0d4ba66a9bf76" + +[[files]] +file = "config/nicerskies.json" +hash = "655024a4b9123a7c16ec1c2f0f7c80e3550b25f7eea7c45eb52c4485e2505ba1" + +[[files]] +file = "config/nomobfarm.properties" +hash = "7ce1e3de84e8e8dc36b223b700cd338d6e5ee43291c3ca35a2a8c91ec80b5722" + +[[files]] +file = "config/orpheus-config.json" +hash = "c86407f426a9c0bbff1a569c37f18562a45370018319f59e557f5c3de975f7a5" + +[[files]] +file = "config/oxidized_config.json" +hash = "5464c11bc45369b652fd94726adb78162349c613618f7c84ecf5f1fa07e4e8ec" + +[[files]] +file = "config/packetfixer.properties" +hash = "4ca6bd477cfebc0be06026fac3fcd2753428440ae176658afbf77b64b3208f90" + +[[files]] +file = "config/pal.properties" +hash = "495e47510e1a57998ff027edd6601aa806f42541b2c63132b4316557f14637be" + +[[files]] +file = "config/paladins/items_v5.json" +hash = "e5644c5c0d8b4acb88f1be7497b17838f05c277d3362635749a9cf051af13e73" + +[[files]] +file = "config/paladins/shields.json" +hash = "945dd6b18375fe9a964b2a44471e38184c505d76fe3e2ca26298d5bac44a8d23" + +[[files]] +file = "config/paladins/tweaks.json" +hash = "f000fb79ee42fbe168c39d14436debf8759067cdcabe9cdc40e51475c840a02c" + +[[files]] +file = "config/paladins/villages.json" +hash = "1f055f8cdc62d4035fecc05af7a1b6398ff0f9efdacc4422c4e58d8ec0a253bb" + +[[files]] +file = "config/patchouli.json5" +hash = "f025fe9200c89f808a4459ce10b332a2f763c3d6d9622de61b10278e54161117" + +[[files]] +file = "config/polymorph-integrations.toml" +hash = "f3d96811394c9360cc3a4cc671e3ad15625e99701cdbfdae7dbc9d2fbfd5d428" + +[[files]] +file = "config/presencefootsteps/updater.json" +hash = "1e7c61df09c105e1eeca8cf3dcbdfeb976700e9904bcb3983fc7791adb7fad2e" + +[[files]] +file = "config/presencefootsteps/userconfig.json" +hash = "77a3b4fefd3176ec7d44c356808d2a4450d2c441020086708fab6cb3cb278f28" + +[[files]] +file = "config/profundis.json" +hash = "348032877e24f1cc06b2ef019b08dd5bbbc4d25036ed785bd19ffce787225614" + +[[files]] +file = "config/projectile_damage.json" +hash = "8c3eb2a4150a8575e522c02acbdd88f7d6a387e9caf07da4683d6df4b4abac29" + +[[files]] +file = "config/promenade/animals.json" +hash = "a261533025ec0562fad9ea746f6257354f746a513c218a2a466b9917cec3edda" + +[[files]] +file = "config/promenade/biomes.json" +hash = "eab77da97d597534d1e930f52ad6a5de717e0d63fb3ac815658494d470e77030" + +[[files]] +file = "config/promenade/monsters.json" +hash = "e3275773d505428747891fad0ed170d6a1889130157acecafd66d7ebb52ff83a" + +[[files]] +file = "config/promenade/world_features.json" +hash = "5f7ee261d8eadd71bcbe465d60df130401510186b3ad9e02cb98fe7d5062b901" + +[[files]] +file = "config/protection_balancer.json5" +hash = "3d87fef2697547f995f7b40aae4c70cf906f070dc6f9d0426d1daeef295b1474" + +[[files]] +file = "config/puffish_skills/config.json" +hash = "4d4006fb9688e4429c0b574f63829abb9975a2f316a98a2f2b67a0d5d01a4ce8" + +[[files]] +file = "config/reacharound.json" +hash = "ea97da7a52cfbbb715e51ec2c1b7e2937f9cd6b733fcfc697674ea89bdc04ec8" + +[[files]] +file = "config/rebalance.json" +hash = "958bb69ebc5ef11de8d700a2370f69b7227479c64c0cb0ae455f79e8a749d6f5" + +[[files]] +file = "config/repurposed_structures.json" +hash = "14e4fe1ded11fa49bfc3479a8e7efdda0e5bc7333d6c9723b44c87306619d8ab" + +[[files]] +file = "config/resourceful-config-web.json" +hash = "501476acb9763ab2a28776b214178ed96a55453d2fb3c976ed7d3e7d9ef6d95c" + +[[files]] +file = "config/rogues/items_v2.json" +hash = "9adfcd6b7d355d5e844797438529a5084b62bd3ef16c951bebd2afd15606c490" + +[[files]] +file = "config/rogues/tweaks.json" +hash = "59948decbed04677319d3dbb9db1e7affb3255e68b2719914bbddccb4c66df2d" + +[[files]] +file = "config/rogues/villages.json" +hash = "df238509966b714649d6c7166fa102ea68863d265e6762bafa89577943842dc6" + +[[files]] +file = "config/rpg_series/loot_v2.json" +hash = "60577cf7d8c68f47fa223d6f60aa03553ab3a89e603fe504d09168fb2275139c" + +[[files]] +file = "config/rpg_series/tag_cache.json" +hash = "65362708b82d35d4eb66c286803c1ed4e4544c003c40d481fc6696b4e4cef0e9" + +[[files]] +file = "config/rrp.properties" +hash = "ee736e11525e0053adfa7a4d19441db6bd987fb07a3f41b39b8af7919855e3a1" + +[[files]] +file = "config/sidebar_buttons.json" +hash = "f37500e8d3440dc1da3307f0fbbb3a0c181794c844efab9cfeb16564b4f22f3d" + +[[files]] +file = "config/simplyskills/berserker.json5" +hash = "838f250bdd55b5ef8e2eb72a5f1c1ed528d98a5ca31c01c60da434808da22c07" + +[[files]] +file = "config/simplyskills/cleric.json5" +hash = "de55c5048fcf127f9acf62099cf41014df78d9cb168c550a89151f7acc6b69a3" + +[[files]] +file = "config/simplyskills/crusader.json5" +hash = "568cf02b1b2a98f8cfdbb355073dc249b3e7f3007b0c11412fda80c6cd5ed31e" + +[[files]] +file = "config/simplyskills/general.json5" +hash = "ae71334b747870f746ef30a231aeab330c7e7cb6919ebf9c576d4da1724d06ba" + +[[files]] +file = "config/simplyskills/initiate.json5" +hash = "72f3d85b26a47ca64c61e876f415b8292c81bb2efe1e65848e5ea27ae49c7ea7" + +[[files]] +file = "config/simplyskills/necromancer.json5" +hash = "91d468597f3d6b96320e376e72abca4cd809e61eb4014119621434730b098287" + +[[files]] +file = "config/simplyskills/ranger.json5" +hash = "7231753959d7e81a932f761e743e06126f15b217abf33067190fc0990bbaa025" + +[[files]] +file = "config/simplyskills/rogue.json5" +hash = "1bd469742c23f040a83755f2569347b4bca154a3c3039d6003e61bc8d35660fb" + +[[files]] +file = "config/simplyskills/spellblade.json5" +hash = "24bf83d1a1193deec784d189a11f9951f01ee27e2a185c122cf8fd9d168ebca7" + +[[files]] +file = "config/simplyskills/warrior.json5" +hash = "a21488f245802553e543b4e85a1941d3c2bec916f3d04d831174994a9e06a398" + +[[files]] +file = "config/simplyskills/wayfarer.json5" +hash = "fe36eff2ce5c83c722b192d7b9afb91f186b062186997d00d44c63248edceb3c" + +[[files]] +file = "config/simplyskills/wizard.json5" +hash = "63b1f08673850c8533849cfee3d8ab17a2fdc16daa1f7617ea31f2ac3d20f5e8" + +[[files]] +file = "config/simplyswords_extra/backupconfig.json" +hash = "16da8eaab787c22d6817798082a183aba10243a6ce3ef21f7e2fa6a0a4447920" + +[[files]] +file = "config/simplyswords_extra/loot_config.json5" +hash = "7d3b5b582c6b33ed37f038f536bb005fd89a6d0c78349b75bc9547d0ba06829f" + +[[files]] +file = "config/simplyswords_main/gem_effects.json5" +hash = "3e953737dcb4ed50db8605db74df14983300f79f38b6f954ec0a0686ba2d82ea" + +[[files]] +file = "config/simplyswords_main/general.json5" +hash = "e0c4e649ecd0932e5e66534cd6eb34beb3c3954ca6f985646879cd7775c24718" + +[[files]] +file = "config/simplyswords_main/loot.json5" +hash = "0eb32d5fac7b95da2e644b275cc2497fc38d5c5a57df1b91d147a9bbc7a3a0f3" + +[[files]] +file = "config/simplyswords_main/runic_effects.json5" +hash = "07e0a8995b5e2d948a20910b9e3fed8d88733f677d384a5ea78589a9d9981f82" + +[[files]] +file = "config/simplyswords_main/status_effects.json5" +hash = "4fa38ac43a2d8f996f7800c9d61235c3800bfd3cae7f6ba2d76093665bec8fb2" + +[[files]] +file = "config/simplyswords_main/unique_effects.json5" +hash = "72f9b696dbe480573b5479184d3510bbb9ea8da5091ed75861324bccbac4a3ea" + +[[files]] +file = "config/simplyswords_main/weapon_attributes.json5" +hash = "c72bc82b8aab95c226a5412e460fa5a980fc9be1062bed841fb10242c8abcb7a" + +[[files]] +file = "config/smallships-client.toml" +hash = "581fdd68d0bacbe4fb80c8270428ce7b580e649db171063a2e3b788e4a6a385a" + +[[files]] +file = "config/smallships-common.toml" +hash = "53e525dcb090cee4290c64650a228c26cd9d4c1d6cab5273f28e81de30e3e598" + +[[files]] +file = "config/smoothchunk.json" +hash = "d0b988aa519ffd031e5421091eec1054464f2e29e48781f6274efd977535f574" + +[[files]] +file = "config/sodium-extra-options.json" +hash = "37df56a42ff66d7f538a4e72de84ec4bfb84d94380cda967fd22ef540ddaac64" + +[[files]] +file = "config/sodium-extra.properties" +hash = "a2f1b47c1eaa119ab34727f1d43c2506cb3d7f17ba8fb4efb49e20c8e0b58e70" + +[[files]] +file = "config/sodium-fingerprint.json" +hash = "ff296e91ec0011e7975d4f55fc6861d0992fb160ffef81470aea631183528760" + +[[files]] +file = "config/sodium-mixins.properties" +hash = "8939df3a10627cf3b9a3cc0e2824337923e9a26d11e60f5a1f7c0cfbd171a574" + +[[files]] +file = "config/sodium-options.json" +hash = "e170cafd722ce62aa061d6770af08274391dd17064f58e82e2ff84af2b1f95ac" + +[[files]] +file = "config/soulsweapons.json" +hash = "0519d5fea71f30b5a62c0a8214f1a65d512d2cbfc89edc607b47f6a172701c47" + +[[files]] +file = "config/sound_physics_remastered/allowed_sounds.properties" +hash = "ca778e1eee9733d63f53e233927e664ba6d0a305ba783da53e9412a230a2b958" + +[[files]] +file = "config/sound_physics_remastered/occlusion.properties" +hash = "b63f35584be7744b846a4d7d8ad47659f292b02e470a24a8fe2b6b4feec6fe73" + +[[files]] +file = "config/sound_physics_remastered/reflectivity.properties" +hash = "83805bb5fc1fde304531d097e8bb32ad777bf2ccf98663834394a79059f0eea8" + +[[files]] +file = "config/sound_physics_remastered/soundphysics.properties" +hash = "c9e79968413b6d27a548872869c347d8006b29878cb05210c9b24b4be5efe45a" + +[[files]] +file = "config/spell_engine/client.json5" +hash = "f9d59a1fa8c6cb165261d83e7b13e78535272f79221756765e89192ec0351d4d" + +[[files]] +file = "config/spell_engine/enchantments.json" +hash = "504170b7a22b5f6a18d1ae510b66386f0af3a9fe24ea98af2175ad9cf2b5ba8e" + +[[files]] +file = "config/spell_engine/hud_config.json" +hash = "0b5bdb344e4a4f804a7ff5a7d2ebad5d59f98ddd2aa4d5bc810cfc8feceb473b" + +[[files]] +file = "config/spell_engine/server.json5" +hash = "7d33f4a72f3f66a156c7a9e021cc5927f7169925c927908781f57c1686c7e281" + +[[files]] +file = "config/spell_power/attributes.json" +hash = "56c76b655059fd2ecb431e3c061877e433073571a2bdf839a462a748a0b9cf90" + +[[files]] +file = "config/spell_power/enchantments.json" +hash = "70a86e07d3a2038d202e8a64b060cf38385430aa029afd56fa5e833872cf19b7" + +[[files]] +file = "config/starterkit.json5" +hash = "18c81c65c991801a3335ee10b63fb9db04b70decc17960263eed54e198f0a35c" + +[[files]] +file = "config/starterkit/descriptions/Archer.txt" +hash = "2ea003ce1408175d33f2bf55cb2de60b7aca7d652b922a84ec52d7d77eb99b64" + +[[files]] +file = "config/starterkit/descriptions/Default.txt" +hash = "19df01c903be0cc0216fbca05181ff06c2aff09f2ef213e78ea93f82d2cb1324" + +[[files]] +file = "config/starterkit/descriptions/Lumberjack.txt" +hash = "5091e1a2d5a2927fe1d8f6a6a233ace60f2407be05384f3140b839e9ad3a041a" + +[[files]] +file = "config/starterkit/descriptions/Witch.txt" +hash = "290f6b832794b6876aba9da963b585ba4e99e5e6a972aebb52810e9a256e2f65" + +[[files]] +file = "config/starterkit/kits/Default.txt" +hash = "7ef15dda287a37b866a4dbf58964aa5404b73bfbbbc06c8e9aac1ffe7352ad10" + +[[files]] +file = "config/starterkit/kits/inactive/Archer.txt" +hash = "2d33c0b751d94e542b0ccecf3709e4872b6097d8e450b8336d78f5bfdce38306" + +[[files]] +file = "config/starterkit/kits/inactive/Lumberjack.txt" +hash = "2f481c3b16599f5563ae0ad9f932a5ce5929d2ffce51cd6c67adc3b93694541c" + +[[files]] +file = "config/starterkit/kits/inactive/Witch.txt" +hash = "61484d5a235b04746cbdeca240501354f6ac39badce199ec7ed90865640e6471" + +[[files]] +file = "config/tectonic.json" +hash = "ea44be71712cbad585fe349268e7f5dfb3aa123ef189acc74437547ef20fa5c6" + +[[files]] +file = "config/terrablender.toml" +hash = "cd5428966b529748e9ba8785cf7a01d19db50ddb3f7f257226baed6defc54af5" + +[[files]] +file = "config/things.json5" +hash = "967912b7228692e8a4bc4af6f2e56607d3158bc9ce082f891cf60f1a67061fc3" + +[[files]] +file = "config/tierify-client.json5" +hash = "5fd89af4836eaa66dc8f2ae319e94d3b6d8719fa1f4d664176eb3ecee56772a2" + +[[files]] +file = "config/tierify-common.json5" +hash = "4b51518c9e7bd1b5b879feef6480731984bfe753da8e044e76a80b9b578b0319" + +[[files]] +file = "config/tlc.json" +hash = "fa0f1e92e24116664d6040b92f61fb144d4227a537ea1613af4fd3c95273945e" + +[[files]] +file = "config/towns_and_towers/structure_enable_or_disable_new.json5" +hash = "3aaa6ac8835dbbce97928c4d0d03f9957749a7a57a3f1668597310e9227900da" + +[[files]] +file = "config/towns_and_towers/structure_rarity_new.json5" +hash = "1f6cddbcb2d89fbcc774d7bdae9987ccb031ba8fe024307357076ca617b17eeb" + +[[files]] +file = "config/travelersbackpack.json5" +hash = "aaa4962ff055ecbb41a110cc2a010463606ac965efe7221d92e0fcb902528c5c" + +[[files]] +file = "config/underground_villages.toml" +hash = "381f589214cbf75f95d266dd6ffe5e072b7db1b788d91f3d366751b78961f6cd" + +[[files]] +file = "config/veinmining-client.toml" +hash = "50b993fef626c336c8b8b7f320da0c2df68c09d247d30939904ce13bd80ab6ed" + +[[files]] +file = "config/veinmining-common.toml" +hash = "c16098fef3317aff90f5e479f39463e31ba1da0488569160ed6f02505b2e43fa" + +[[files]] +file = "config/veinmining-server.toml" +hash = "017a54435f93e5157d9e948902e2d9c9c0ba7ae65a45acfbd3f819265dfcaa41" + +[[files]] +file = "config/villagersplus/villagersplus-3.0-config.json5" +hash = "a32bb4d92535a1aebbfae239b8518cfd265e151b0976b5517c0ce91cee1a24e8" + +[[files]] +file = "config/vivecraft-server-config.toml" +hash = "021fd23391e970b34319fa8243e29eae004b59c051845333ae40cfc90f4b6590" + +[[files]] +file = "config/voicechat/translations.properties" +hash = "b8215b84232be41438ffb7c7304b57b0677c9cad49b717db59900872080adf20" + +[[files]] +file = "config/voicechat/username-cache.json" +hash = "607904ce9d77dbcb5689404f15786b46f21c429ff0407ce7e0814dc14a9a36aa" + +[[files]] +file = "config/voicechat/voicechat-client.properties" +hash = "0fe48b0f35d6f96a708e1a418c06325bdb001a18e9bba12383142512cc1ec2ed" + +[[files]] +file = "config/voicechat/voicechat-server.properties" +hash = "a433a506ab23ecd828fa4bb4fbcb52e844908352e5b6eb0151ecdb58b358dde2" + +[[files]] +file = "config/voicechat/voicechat-volumes.properties" +hash = "58242ef3075b166845e0081281b01113a55b9d095104a68b167e7b4bc08b87c5" + +[[files]] +file = "config/vr-combat.json" +hash = "6ba25b17d218c13aecd7773fb0dd9f01783997854cc7123891e526e82490662e" + +[[files]] +file = "config/walljump.json" +hash = "1e2abe5aa233ab4927c0976afb1ed1e49cf07b2653072fd0e9ce9861b63eab3c" + +[[files]] +file = "config/waystones-common.toml" +hash = "3c3a2fca564353cf5639b1448490e8179167efff7241c8da808e58b8df7aca8e" + +[[files]] +file = "config/wizards/items_v4.json" +hash = "ec83a6fac8c501c104e5258b71192746329716b1c7c1714c174f1782b513cf87" + +[[files]] +file = "config/wizards/tweaks.json" +hash = "4568418cb62da85fa6a4a88a5c332d7c786ba3f4b872d7dfc05b09619b85c9ea" + +[[files]] +file = "config/wizards/villages.json" +hash = "4f7d44cb2b2588446db0886af941fb2c4194d15bfba7d303de1ca0d2879cff31" + +[[files]] +file = "config/xaerominimap-common.txt" +hash = "1dcee38470c2939f7265891203775b7631c81822bf2506a451727fcaaf2cc4a2" + +[[files]] +file = "config/xaerominimap.txt" +hash = "c4e80dcc2c0b02a908f05f95128818412e762134b8490462908dd1dc6b7d4745" + +[[files]] +file = "config/xaerominimap_entities.json" +hash = "c63fa9862b71e4d7d39f0ba3c214ec8482c622d960574003eabe56dd021cbead" + +[[files]] +file = "config/xaeropatreon.txt" +hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + +[[files]] +file = "config/xaeroworldmap-common.txt" +hash = "103979a8e59e396f99fb8646c4f8a690c2d743ca3744a2eb8f663b3102b7498c" + +[[files]] +file = "config/xaeroworldmap.txt" +hash = "6028733f967d0d0f6a80dd236d3dcc7d2446912c719ab9a7d3f83d8624d9b92d" + +[[files]] +file = "config/yacl.json5" +hash = "d26a63d3cdf326412ba86dcc2781060bc53ed6c74ac7808e65325452e264e820" + +[[files]] +file = "config/yigd.json" +hash = "ce6bcd4454ecc1ee50ad60ac8b2c006c6f128118bc92549aecb3fc4fa7d34ba2" + +[[files]] +file = "config/yungsmenutweaks-fabric-1_20_1.toml" +hash = "eb1dfe20f3cb1ee88f21381f2f7825f83d3f60123c42975d3959dfb41345e986" + +[[files]] +file = "config/zenith/adventure.cfg" +hash = "ff883a9706784d0cbcb2b41f47a655c96a2b135f828f519cb73bf8434ff77474" + +[[files]] +file = "config/zenith/ench.cfg" +hash = "f409392e6c6187d92d02a298467af2fc5efdd14fc667aa91de13ad545c8f4a8c" + +[[files]] +file = "config/zenith/enchantments.cfg" +hash = "d0515aa868feae7e160a632d3cc7b19b2dfd1f59e341ad835e2cf5d33bd424d3" + +[[files]] +file = "config/zenith/garden.cfg" +hash = "3e969a4b1d97ddf458b00b46e5d653aca61df406503ed173e76f935ef4604c11" + +[[files]] +file = "config/zenith/names.cfg" +hash = "683ebf27569d6434dffd985f369c7b20b698a30211b39063c319e8a635d44d49" + +[[files]] +file = "config/zenith/potion.cfg" +hash = "e1330410e291a3afdf4c759c6e6c8ad6049b31b50bb1870a5ab85071a8b289fd" + +[[files]] +file = "config/zenith/spawner.cfg" +hash = "0b5de0da270e635ff921656f863f1f9e978da3e2f3d422bbf6deab354139e301" + +[[files]] +file = "config/zenith/village.cfg" +hash = "311f6d845179bdf56286fb27bb54803e2e4de531cf7dcc3ff1588eafbd7c7a0a" + +[[files]] +file = "config/zenith/zenith.cfg" +hash = "bc68eaf04873d385c11b6e8dc894fa1a7fdbd656108483006d01c16eabf3f81f" + +[[files]] +file = "config/zenith_attributes.cfg" +hash = "720285dfa0a1a937f0acbeb3fd524e459222cd299b0c9d72ffc73b94bbccbbc5" + +[[files]] +file = "mods/AmbientSounds_FABRIC_v6.0.3_mc1.20.1.pw.toml" +hash = "d71ab403c5a95db8a9a886fa96afd3ec697bf48d4783fe2a48c3529f41a7f86b" +metafile = true + +[[files]] +file = "mods/Aquamirae-6.pw.toml" +hash = "92811c4f0d1f52712114f122901dce104ae783136ed8a9cb11bdaeb9b85c1c32" +metafile = true + +[[files]] +file = "mods/AttributeFix-Fabric-1.20.1-21.0.4.pw.toml" +hash = "2f36efa2be73061d60e84e6faa77ba2bc3c161f73ef54fb58b3e9853583cf98b" +metafile = true + +[[files]] +file = "mods/BOMD-1.7.5-1.20.1.pw.toml" +hash = "02181e4ca08bb4fbf7518e7316cdc2e604fb3e0ab3a42f274be99919ec3105ef" +metafile = true + +[[files]] +file = "mods/BadOptimizations-2.1.4-1.20.1.pw.toml" +hash = "dd74504622af324d4355c28545c8b320dd15d7d245e26c7487a0598990f3a79b" +metafile = true + +[[files]] +file = "mods/BiomesOPlenty-1.20.1-18.0.0.598.pw.toml" +hash = "046f64b0d5c742d120b9d0ae30f4ee979d180d6f6af2a538b7b972eda67d4edd" +metafile = true + +[[files]] +file = "mods/BlockRunner-v8.0.4-1.20.1-Fabric.pw.toml" +hash = "4190c82c869cd1a089565bdc7b9d7c4ccaf1f85eb30267ce6ace6a1f45b68ad2" +metafile = true + +[[files]] +file = "mods/Bookshelf-Fabric-1.20.1-20.2.13.pw.toml" +hash = "a78d5a5dd335b0c9c49883d5813b316b7e6e65681251aa49a759d143a5be9677" +metafile = true + +[[files]] +file = "mods/Clumps-fabric-1.20.1-12.0.0.4.pw.toml" +hash = "9a6276da4cbe5f04d4bac732f7c668cadcebb6c8f43e95f82878bc5aaa59c1af" +metafile = true + +[[files]] +file = "mods/CreativeCore_FABRIC_v2.11.33_mc1.20.1.pw.toml" +hash = "b9fdc6c74a5a49d2be81f48d2313bea5c26c5ceed8bcf0201abc9c8eecd1305b" +metafile = true + +[[files]] +file = "mods/DEUF_Refabricated-MC1.20.1-1.1.0.pw.toml" +hash = "6bd2bb67f1cc7b6e90e43bfc9c996e359cceaabdbba3e861aa3ae9008b7fa310" +metafile = true + +[[files]] +file = "mods/Debugify-1.20.1+2.0.pw.toml" +hash = "d7c8b5f9e6127f58f691279dce4967c825dc6085469de10080a77d5cca73c58f" +metafile = true + +[[files]] +file = "mods/DistantHorizons-2.1.2-a-1.20.1-forge-fabric.pw.toml" +hash = "4256e0a557e2e024ebf4f740fbf18d40468817187de3e0fd1fbfc3067a2d280f" +metafile = true + +[[files]] +file = "mods/Dungeon Now Loading-fabric-1.20.1-1.5.pw.toml" +hash = "07158418eb3079cd9fcb7c90f04b50e62a8f6bfb2ede81d56129e0fc359c936c" +metafile = true + +[[files]] +file = "mods/DungeonsArise-1.20.x-2.1.58-fabric-release.jar" +hash = "b51a10622bbcb575b026eb434e9e44ed42d334351d7990c06718c3275f92980a" + +[[files]] +file = "mods/Eldritch_End-FABRIC-MC1.20.1-0.2.31.pw.toml" +hash = "99ad7f17100cf8668fba65271c477275dce250fb962896205a62ba336c834bca" +metafile = true + +[[files]] +file = "mods/ExplorersCompass-1.20.1-2.2.3-fabric.pw.toml" +hash = "f213a56b03d456b6a108e7208c5cdf342cc41cecd06fce241d04349eee2518e5" +metafile = true + +[[files]] +file = "mods/FallingTree-1.20.1-4.3.4.pw.toml" +hash = "421a7ef4c18c2f2a0b40f620e8df43233e10560cc8ef20b8f8cfed62b583d41c" +metafile = true + +[[files]] +file = "mods/ForgeConfigAPIPort-v8.0.0-1.20.1-Fabric.pw.toml" +hash = "f1c0fdaf39e02695ba6a86e9a04b8e30899b0d024af7ca3ab49fabdaf82a64be" +metafile = true + +[[files]] +file = "mods/ForgeConfigScreens-v8.0.2-1.20.1-Fabric.pw.toml" +hash = "15f803cae98344d525ba87886b6d07617642331aeaf696e9dc790634ae953d29" +metafile = true + +[[files]] +file = "mods/GeckoLibIrisCompat-Fabric-1.0.0.pw.toml" +hash = "125df0b74293f0422afa778e92ec8b065289fae2169a9bb65878c158531eca6a" +metafile = true + +[[files]] +file = "mods/Geophilic v3.1.1 f15-48.pw.toml" +hash = "f660cf72b423087b6c2486ce77966b45fd94d91cb08576f097e75d75a47febc0" +metafile = true + +[[files]] +file = "mods/Iceberg-1.20.1-fabric-1.1.18.pw.toml" +hash = "5a28a41985ebb7a7542c47b4a5005a4175804cd5b701a516807ab2080b19e650" +metafile = true + +[[files]] +file = "mods/ImmediatelyFast-Fabric-1.2.18+1.20.4.pw.toml" +hash = "1649456496e6b94250dc8d9a514eb1ddc7bd0defd7e3bd17a1bc1d893a493646" +metafile = true + +[[files]] +file = "mods/InventorySorter-1.9.0-1.20.pw.toml" +hash = "ea3a865ab205e25e4209e08d99d45cdd545ca24a9cd3a44ce70639a1e18b6ccf" +metafile = true + +[[files]] +file = "mods/Jade-1.20-fabric-11.10.0.pw.toml" +hash = "6dc731c2d922ea8002887f89be2e48f99357af0219cedfef2f158b76810c950e" +metafile = true + +[[files]] +file = "mods/Jewelry-1.3.5+1.20.1.pw.toml" +hash = "fe8d58f054667d307273562e955d6ed86166abd035dc6350143704b7c093fed8" +metafile = true + +[[files]] +file = "mods/LegendaryTooltips-1.20.1-fabric-1.4.5.pw.toml" +hash = "88d9560f9d039dc72fda4d5a520d83b17422e477b39db27b21b70af7790ba4fd" +metafile = true + +[[files]] +file = "mods/MobPlaques-v8.0.1-1.20.1-Fabric.pw.toml" +hash = "3dde516c4c8d36d7b0075e3be341fd2409ea77139a3bedda8aeec0621425b639" +metafile = true + +[[files]] +file = "mods/MutantMonsters-v8.0.7-1.20.1-Fabric.pw.toml" +hash = "655c1250430f4caff40993a6496c888deb5af51532050caba58a680d37a84aea" +metafile = true + +[[files]] +file = "mods/NaturesCompass-1.20.1-2.2.3-fabric.pw.toml" +hash = "d7410d6f7e469314e7b13dbf5213d51105c7546d177ac18c59d66dffef826229" +metafile = true + +[[files]] +file = "mods/Necronomicon-Fabric-1.4.2.pw.toml" +hash = "2a2abd1d779c09bf0555afa451771cf118ce3621b7713f0057006f5b5c0ffe13" +metafile = true + +[[files]] +file = "mods/Neruina-2.1.1-fabric+1.20.1.pw.toml" +hash = "22c66a6dae2526920bd09bade59922192ec7a6f0416f95b9f89bc0ee260016c1" +metafile = true + +[[files]] +file = "mods/NoChatReports-FABRIC-1.20.1-v2.2.2.pw.toml" +hash = "e69c4c7177e02a9c279a107f4f512f42586412d7c7336ff12127a4df7193a878" +metafile = true + +[[files]] +file = "mods/Obscure-API-16.pw.toml" +hash = "ee10b53170e66b0cd51215a5441291798569baa0e5bc5547bb5a2193826de2b0" +metafile = true + +[[files]] +file = "mods/Patchouli-1.20.1-84-FABRIC.pw.toml" +hash = "b020950f2f0804bac714d8694e031d24858893a261c2e8519c6991df456214fd" +metafile = true + +[[files]] +file = "mods/PresenceFootsteps-1.9.4+1.20.1.pw.toml" +hash = "33b3f8e1e133a46a82e99bde4b5498d0f8277d66d4bcec6ca71dd7b7fc1156d9" +metafile = true + +[[files]] +file = "mods/Prism-1.20.1-fabric-1.0.5.pw.toml" +hash = "15ca3552fc330ba8f2bd7246523eebb9b458574f669112cc46722793dd7d3fee" +metafile = true + +[[files]] +file = "mods/ProtectionBalancer-FABRIC-1.1.0.pw.toml" +hash = "a7bf0c8af639739a6e652987e7d3872a17904ee2065317a65af7e11972a303d1" +metafile = true + +[[files]] +file = "mods/PuzzlesLib-v8.1.21-1.20.1-Fabric.pw.toml" +hash = "f7a4472e58507a77b25341e6d5aad637b448a5858544427f2863e0402940f63c" +metafile = true + +[[files]] +file = "mods/ReBalance-FABRIC-1.1.0.pw.toml" +hash = "8bb0ee5968c1f8eec056a1690612b952eab71db784394769d2e853f6d1e3f49e" +metafile = true + +[[files]] +file = "mods/SmartBrainLib-fabric-1.20.1-1.14.2.pw.toml" +hash = "07fe17b64632128d658c781cb455038795fa1905fcb6e9f16f9b8905d13273b3" +metafile = true + +[[files]] +file = "mods/Sniffer+-fabric-1.20.1-0.3.0.pw.toml" +hash = "46ff4c7370c52506743a2f1d32e7a3f585182c71e495b457badedabeded24efb" +metafile = true + +[[files]] +file = "mods/TerraBlender-fabric-1.20.1-3.0.1.7.pw.toml" +hash = "2ca7caf4845bee64cc97619cff88f962d5bec8093c2e19ba405f28db25686b0a" +metafile = true + +[[files]] +file = "mods/Terralith_1.20.x_v2.5.4.pw.toml" +hash = "4a4219f674e47e6386a987497d7616746c12c1e4aa55509d1d2920209aa89a14" +metafile = true + +[[files]] +file = "mods/The_Graveyard_3.1_(FABRIC)_for_1.20.1.pw.toml" +hash = "1f16fb1f67890e75dd741a90ca9118dd47014c08c72e60197b3b7f6d13a03ff8" +metafile = true + +[[files]] +file = "mods/Tierify-FABRIC-1.20.1-1.1.0.jar" +hash = "87feeab2401a3ed842a86824549c88162a4652673801e02cf09fe18581adbb11" + +[[files]] +file = "mods/VR-Combat_v1.0.2_Fabric_ALL.pw.toml" +hash = "2977adc60b324fa85bb2ad142de3f4a8f06da2265aca8b80acafc9e4b3bbdc2b" +metafile = true + +[[files]] +file = "mods/VillagersPlus_3.1_(FABRIC)_for_1.20.1.pw.toml" +hash = "338aed77ddf491f59dbe6a3796807ea318754064cc91a511dfd29f65970ae84b" +metafile = true + +[[files]] +file = "mods/Wabi-Sabi-Structures-2.0.0-1.20-Fabric.pw.toml" +hash = "3cd110861fb92297452bbec95097b1fa3944bfc1b56cea7d46d0fae41bf8643f" +metafile = true + +[[files]] +file = "mods/XaerosWorldMap_1.38.8_Fabric_1.20.pw.toml" +hash = "24d62257a308cce9eb9df5a3da3550ac11f9b6d0b4d5a35e8c753eb67c6583de" +metafile = true + +[[files]] +file = "mods/Xaeros_Minimap_24.2.0_Fabric_1.20.pw.toml" +hash = "46da968a35e01063f4163e4df97e1a59e831ebdd750b7a4833761b3a7b2dab4b" +metafile = true + +[[files]] +file = "mods/YetAnotherConfigLib-3.5.0+1.20.1-fabric.pw.toml" +hash = "627e915ebc790f7687ddf4941271ba8cf2a1d450b4e6f011ed3fa32c92fd1df6" +metafile = true + +[[files]] +file = "mods/YungsApi-1.20-Fabric-4.0.5.pw.toml" +hash = "9010e883e58c09e871dd5e72c5bd8f387721110284293415f6333b8da62e82ce" +metafile = true + +[[files]] +file = "mods/YungsBetterDesertTemples-1.20-Fabric-3.0.3.pw.toml" +hash = "1b34d3e3096a79442f0b3103798032158cef49b4ca04a05139afbc36997de4ca" +metafile = true + +[[files]] +file = "mods/YungsBetterDungeons-1.20-Fabric-4.0.4.pw.toml" +hash = "bcd6b2a9c4cba9f7b0633e2e7e0b49666ade9b86555d928d85bc5ad586021785" +metafile = true + +[[files]] +file = "mods/YungsBetterEndIsland-1.20-Fabric-2.0.6.pw.toml" +hash = "625ce0b729be20a51b7a6e5e1e28f275051e526356c05e6ab9e4300d7fcbd25c" +metafile = true + +[[files]] +file = "mods/YungsBetterJungleTemples-1.20-Fabric-2.0.5.pw.toml" +hash = "85b6c9c45833702cfd478d91c2b7b66af5551d0821710a2c3e7ae9e69c251b24" +metafile = true + +[[files]] +file = "mods/YungsBetterMineshafts-1.20-Fabric-4.0.4.pw.toml" +hash = "cab9591b8959844fde0b7d754cb442afe8965dc0b3c67620e0b1a155d1d5b381" +metafile = true + +[[files]] +file = "mods/YungsBetterNetherFortresses-1.20-Fabric-2.0.6.pw.toml" +hash = "20ded8075bacdb771f39e2353dfa71cc396ad6723d8ca9350da81df627b4a48e" +metafile = true + +[[files]] +file = "mods/YungsBetterOceanMonuments-1.20-Fabric-3.0.4.pw.toml" +hash = "423b6b7541bc15fa2b7c48c0a804b63162487dcee36f84ee229d654067f2abf8" +metafile = true + +[[files]] +file = "mods/YungsBetterStrongholds-1.20-Fabric-4.0.3.pw.toml" +hash = "06c087c18260087ae0a735910b346dc50e37656bec8e9e3450e78191b0a5b2a0" +metafile = true + +[[files]] +file = "mods/YungsBetterWitchHuts-1.20-Fabric-3.0.3.pw.toml" +hash = "996b1517ee5c986d2cf0c55697b7f2437bb48f15d28d46a0ff8bb66a5313389a" +metafile = true + +[[files]] +file = "mods/YungsBridges-1.20-Fabric-4.0.3.pw.toml" +hash = "4c1340edf816af0462641d4b8ea27ea503755e0768f446de8cb2b9bdd8a3c9c2" +metafile = true + +[[files]] +file = "mods/YungsExtras-1.20-Fabric-4.0.3.pw.toml" +hash = "09b045be17fb31150a14f85a13c20ed6d9e054253fa3660c324cb6e81e58419c" +metafile = true + +[[files]] +file = "mods/YungsMenuTweaks-1.20.1-Fabric-1.0.2.pw.toml" +hash = "4226f25041e0f9bdebe8d35b7e44897e7a554420ceca63c28f86d784cfc6da63" +metafile = true + +[[files]] +file = "mods/[1.20.1-fabric]-Epic-Knights-9.8.pw.toml" +hash = "6493abc5524cd81be1a6a810eaec0143b6a2621b37446f8ee41daa36da7bda90" +metafile = true + +[[files]] +file = "mods/[Fabric]CTOV-v3.4.6.pw.toml" +hash = "56bc7d545978a95c4917b6adfde9bcc4d14437dd8959dcfd23adef65dbcc1d2a" +metafile = true + +[[files]] +file = "mods/adventurez-1.4.20.pw.toml" +hash = "bb63153438e554d340937e7f1fc26f273a2768fc51785b674266cbff04e2d181" +metafile = true + +[[files]] +file = "mods/almostunified-fabric-1.20.1-0.9.4.pw.toml" +hash = "2bec05ec3d49b7fb512abeaaba637eaca3e268d073559eaede9bc45196992153" +metafile = true + +[[files]] +file = "mods/archers-1.2.5+1.20.1.pw.toml" +hash = "70bb61efb219e12fa8e9ecc4bf56c71dfadaf85976fadfdc3b433efa5f865700" +metafile = true + +[[files]] +file = "mods/architectury-9.2.14-fabric.pw.toml" +hash = "3bccd1a9611941371832fd28bcd5113fa8c22d34959178adf83b2784e586a4c2" +metafile = true + +[[files]] +file = "mods/archon-0.7.0.pw.toml" +hash = "547db03f0f7976c209b1749b367207ab74d24cb7a7162016b672dddf82125b4d" +metafile = true + +[[files]] +file = "mods/artifacts-fabric-9.5.12.pw.toml" +hash = "c27662a10806b5e83b3c0cdd63d0f949705ebbf569d02a9cc408e97332857919" +metafile = true + +[[files]] +file = "mods/autotag-2.0.2+1.20.pw.toml" +hash = "72719f0003f41b8a876dfff28f9ac5346883b37171f3ba968c098ec929f88cf1" +metafile = true + +[[files]] +file = "mods/azurelib-fabric-1.20.1-2.0.30.pw.toml" +hash = "ae072abee2b529144cdab0e702f2ba5c1610f46ae89248c57ed9238889f5e25d" +metafile = true + +[[files]] +file = "mods/azurelibarmor-fabric-1.20.1-2.0.6.pw.toml" +hash = "4560e62c1e0cffcc5a84c3a90a734a65ca1f362239fed26c7796e11849b871ac" +metafile = true + +[[files]] +file = "mods/balm-fabric-1.20.1-7.3.6.pw.toml" +hash = "3f898294554279dacd0276d4a6d824f7778f11adb03aa811f859000b578ce5ee" +metafile = true + +[[files]] +file = "mods/basicweapons-1.2.3+1.20.1.pw.toml" +hash = "cc0256cc46ed3ff0418487de6f3173ad4afd51b9097b742f36c5be21a32d6124" +metafile = true + +[[files]] +file = "mods/bclib-3.0.14.pw.toml" +hash = "5a2344fd8b68fa1664c609a0394742266b6f237537c4cc81cae492aa0f3038ba" +metafile = true + +[[files]] +file = "mods/beekeeperhut-fabric-mc1.20.1-2.0.1.pw.toml" +hash = "03ee0e9eb233a30675d4ffe138d07770c4e26b0edb6bb824b15b6f9ef7bab0be" +metafile = true + +[[files]] +file = "mods/better-end-4.0.11.pw.toml" +hash = "97e18987f96d7ad57681ab324efdf5646522f29d60d21ecc33fba610c65a8498" +metafile = true + +[[files]] +file = "mods/better-nether-9.0.10.pw.toml" +hash = "430ef10047a0e6b79917691bae00d4270b6577b68dc922b4419a072c50ee56b7" +metafile = true + +[[files]] +file = "mods/betterarcheology-1.1.9-1.20.1.pw.toml" +hash = "ae91331f0e45e26921f70af4f50ed224445140cbad80578d6b89a1bacccfdaf9" +metafile = true + +[[files]] +file = "mods/betterchunkloading-fabric-1.20.1-4.3.jar" +hash = "f090cf9810570653dccc6859e99a2060b4698c28d7c58eebc1280cdf520494d5" + +[[files]] +file = "mods/bettercombat-fabric-1.8.5+1.20.1.pw.toml" +hash = "e4b014268a8738d1a513576d140119e4632eb38c729411aff953d78fc856a28b" +metafile = true + +[[files]] +file = "mods/betterfpsdist-fabric-1.20.1-4.3.jar" +hash = "f9da0fb30b8fcd5be6b7bfbc1191603970514bc9db97658f4ecfaa661ae59b85" + +[[files]] +file = "mods/bingus-1.20.1-fabric.pw.toml" +hash = "669ac6d510e97c2513c5d9d014301c93257d6c4e381de8cd8db7ea3f06cc0a76" +metafile = true + +[[files]] +file = "mods/cardinal-components-api-5.2.2.pw.toml" +hash = "ea79e069e08302e49c703a937a99612b8efc89ee978d4cbc03a774a696a8f594" +metafile = true + +[[files]] +file = "mods/cavedweller-1.3.0.pw.toml" +hash = "b2e5d91468c623a2c075a560f9151fe221122964ea56bde62f59be6b1dee43ee" +metafile = true + +[[files]] +file = "mods/cloth-config-11.1.118-fabric.pw.toml" +hash = "241e6ad7ac12bc08a664b98f4472b6f409e8c927b5ef4aeb16759552685e52dc" +metafile = true + +[[files]] +file = "mods/collective-1.20.1-7.80.pw.toml" +hash = "52d2e4bc50ac80dc59abff0b7b9909e57e0da7873843cc6b4e93c228a15a4c08" +metafile = true + +[[files]] +file = "mods/combatroll-fabric-1.3.2+1.20.1.pw.toml" +hash = "928ffd5697d758c7a1234e1a10f215df02c9eeadfa0b4944116fd60f3f8f20d2" +metafile = true + +[[files]] +file = "mods/connectivity-fabric-1.20.1-5.6.jar" +hash = "f85faec836c6a7965eb4eacc7c87fe102ad7d9287bbcafad0c121c2b0afac53d" + +[[files]] +file = "mods/convenientdecor-0.4.2.pw.toml" +hash = "04c1e7c2d6241c3644c541371194b0a0ef67756ddc2b734ee3fc1ada6915e163" +metafile = true + +[[files]] +file = "mods/creeperoverhaul-3.0.2-fabric.pw.toml" +hash = "21f0e8af585ec25811ea8eccfdc065ee7d843447b0f5788cad977034a9539feb" +metafile = true + +[[files]] +file = "mods/cristellib-1.1.5-fabric.pw.toml" +hash = "7d3f9a9868e6f89a2a87c75c08b6908499fc61662d0ced92ee6994d5eea55e72" +metafile = true + +[[files]] +file = "mods/cupboard-fabric-1.20.1-2.7.jar" +hash = "3ce1eba640c2f7e28c7b769255996f19d9776ab8add481caa84a24dabe0c80a5" + +[[files]] +file = "mods/dawn-5.0.0.pw.toml" +hash = "df4ee5f2b2fc5f70a79675c1b29da7a8793df2468be8ee5b91a9be03379c1610" +metafile = true + +[[files]] +file = "mods/decorative_blocks-fabric-1.20.1-4.1.3.pw.toml" +hash = "f13f1254f4ed0cb0eb08537db6c4ccb05896c609a61a9adc92b3c61e1800fb72" +metafile = true + +[[files]] +file = "mods/deeperdarker-fabric-1.20-1.2.6.pw.toml" +hash = "10af09b0d54c52b6a3eab9b39278edfcd87fd58e1e07a537c0e3d22a4a22e016" +metafile = true + +[[files]] +file = "mods/dimensionalsyncfixes-fabric-1.20.1-0.0.2.jar" +hash = "a891ddc35d9fe52468ed8bb9a597bdb63ef089876befbddbdd562275f49022ba" + +[[files]] +file = "mods/doubledoors-1.20.1-5.9.pw.toml" +hash = "be83d4a199075ab2fbc530abb53566678294a062d869b671399ac62efc32f46a" +metafile = true + +[[files]] +file = "mods/dungeon_difficulty-2.2.1+1.20.1.pw.toml" +hash = "91c576155b425705b24dffe78348d456daa26857240c739af9eab0497f5e6d68" +metafile = true + +[[files]] +file = "mods/dungeons-and-taverns-3.0.3.f.pw.toml" +hash = "290f91856a4bcaf00c0395b09397a5cedf2333d3b6506379cb8b548f75abcf31" +metafile = true + +[[files]] +file = "mods/emi-1.1.10+1.20.1+fabric.pw.toml" +hash = "aab3c23ad163b98c02b1698a27dfef920378f8b8a7ed7b7e5f3cd388000a7d26" +metafile = true + +[[files]] +file = "mods/enhancedblockentities-0.9+1.20.pw.toml" +hash = "4873cff639aefbf9acdf5915997977b4992d1a15480a769bd9ba8ae73f84803b" +metafile = true + +[[files]] +file = "mods/entity_model_features_fabric_1.20.1-2.1.3.pw.toml" +hash = "53b189b9a1908c76afb6b9a47c0344d945a153acd0cfa27da8aeecd3c9bbe0ac" +metafile = true + +[[files]] +file = "mods/entity_texture_features_fabric_1.20.1-6.1.3.pw.toml" +hash = "3ba2a46d5ff985feeb8a0a20d754d7f870693a11fe89c6b2a664d81db0f98e9b" +metafile = true + +[[files]] +file = "mods/entityculling-fabric-1.6.6-mc1.20.1.pw.toml" +hash = "9d8e212436158f7b27b9ec0ed58c59623722afb9a73e5be31fdc6af94d10fea4" +metafile = true + +[[files]] +file = "mods/epicknightsnmages-0.0.2.pw.toml" +hash = "a0dd44c44fd5316274fb8bfab1ae77cc67f56a1c7f38287819ec426c44817154" +metafile = true + +[[files]] +file = "mods/fabric-api-0.92.2+1.20.1.pw.toml" +hash = "e32000b19fcc22e250f47d338b065162d3d88667a17edd891753ccf1ae763ba3" +metafile = true + +[[files]] +file = "mods/fabric-end-remastered-5.2.4.pw.toml" +hash = "608b46d31d2f7a1c06547145610b68c7f00c81dbbf2e65e264cacc3655da31ae" +metafile = true + +[[files]] +file = "mods/fabric-language-kotlin-1.11.0+kotlin.2.0.0.pw.toml" +hash = "3681fa08db148263dc6310494c130bfc36fd6eb8e7a677f7628b464cc0ca640f" +metafile = true + +[[files]] +file = "mods/fakerlib-0.1.4.pw.toml" +hash = "a7433fd766c868d939d35d319c8ff6d861d47e6872511e82d82588445630d90d" +metafile = true + +[[files]] +file = "mods/ferritecore-6.0.1-fabric.pw.toml" +hash = "681f9316609a99a4150cad539eb5771e7d21fda65446a93f3bbca4cb124be58e" +metafile = true + +[[files]] +file = "mods/flowerymooblooms-fabric-mc1.20.1-2.0.2.pw.toml" +hash = "c59993e0686d0c38cc6bbf2885e36540d62db1690f22bd3b94b3ce8f2fa335e1" +metafile = true + +[[files]] +file = "mods/friendsandfoes-fabric-mc1.20.1-2.0.15.pw.toml" +hash = "93eb0f5c55d2aba92f371e1d15845da3299ff30ddd9cdecc3471b6d877f07fba" +metafile = true + +[[files]] +file = "mods/ftb-essentials-fabric-2001.2.2.jar" +hash = "2746565c1848c564a53add03a7683a3e2ae36e3f535e8f9dc0629b56638a1394" + +[[files]] +file = "mods/ftb-library-fabric-2001.2.4.jar" +hash = "a6c2985cb4a844aa31cc27066929c17522ea6520c81caf6320bf9695d82cbdd0" + +[[files]] +file = "mods/ftb-quests-fabric-2001.4.8.jar" +hash = "5d9b64336a93349003bfa1c8669d15f17efd1451d9b99149374cc256842dad47" + +[[files]] +file = "mods/ftb-teams-fabric-2001.3.0.jar" +hash = "a4e5afc36f5544a097b5b69385e7c0fa5b7e26c44ca16d2e7a1f94aea2741e31" + +[[files]] +file = "mods/fzzy_core-0.5.1+1.20.1.pw.toml" +hash = "0784641eb65a3bf4c52c19b8af47d5bb35531c5e6c3b94e40d8744e603535d86" +metafile = true + +[[files]] +file = "mods/gazebo-1.1.1+1.20.1.pw.toml" +hash = "801a3014535a2c8408db0122e7d97ac7eab17a08853162e4c424a8606109b932" +metafile = true + +[[files]] +file = "mods/gear_core-0.3.8+1.20.1.pw.toml" +hash = "8b034011b0175c14d2ee387416a2eec48744a73f0def7a36f160620af8c972e6" +metafile = true + +[[files]] +file = "mods/geckolib-fabric-1.20.1-4.4.7.pw.toml" +hash = "2620df2a688ad1c4036e870ba3545f15afbf785be128d2beb99a41808562bf9d" +metafile = true + +[[files]] +file = "mods/gpumemleakfix-fabric-1.20.1-1.8.jar" +hash = "7f84fd5752533f2ccc2ad62a746b7e5e18baf2f7e7f141e1281dae94e1a9a8f8" + +[[files]] +file = "mods/grapplemod-1.8+1.20(.1).pw.toml" +hash = "f9b075713959ea15d90c685874486ba5003e3d06df0b510786f8fa837dbef712" +metafile = true + +[[files]] +file = "mods/guardvillagers-2.0.9-1.20.1.pw.toml" +hash = "52f19f5b75753f90aafa316ba352cb53502a49b880154b677ce75439089d7797" +metafile = true + +[[files]] +file = "mods/handcrafted-fabric-1.20.1-3.0.6.pw.toml" +hash = "067d993717af99dbfbd2ad6ac7d6ce2eb146f12580ecc48d0cb4797bd022640f" +metafile = true + +[[files]] +file = "mods/immersive_armors-1.6.1+1.20.1-fabric.pw.toml" +hash = "a82ef6441a63c940d2487e20d548dddbc96b7a474de6bbcf983a31a8044a2dae" +metafile = true + +[[files]] +file = "mods/immersivemc-1.5.0-beta1-1.20.1-fabric.pw.toml" +hash = "2d86026623cbf81ef53402e18dcdf1abed4c7a4dd52b8d7fac1b632390456b02" +metafile = true + +[[files]] +file = "mods/imst-2.1.0.pw.toml" +hash = "70ab44856e357ea0271af026edca55e750c25020ddef9ec54bdbf9e88cd3b0a0" +metafile = true + +[[files]] +file = "mods/imst_n-1.1.0.zip.pw.toml" +hash = "8de1f0e15243b1840221ebbd89c9827cdab2d63277a5b0bc97bebdf7475ed6f2" +metafile = true + +[[files]] +file = "mods/indium-1.0.34+mc1.20.1.pw.toml" +hash = "f2903ec82a94b8d12588d0178e18e4a97518fd97ecb3daf1042786e87e862b0e" +metafile = true + +[[files]] +file = "mods/invoke-0.2.4.pw.toml" +hash = "a03d8c1f2186e7f7d678ce592b227c191341cdb75d6c253a955b9d41b7247543" +metafile = true + +[[files]] +file = "mods/iris-1.7.2+mc1.20.1.pw.toml" +hash = "14ab04e4423b29ed0b64869ea66d5a6ab0ff078c51bcb572849476c93698875e" +metafile = true + +[[files]] +file = "mods/item-filters-fabric-2001.1.0-build.59.jar" +hash = "0a4c161bba648fd41b6f6ba69cdc00e65c5c161b7c52baed5ce97d91d8bae238" + +[[files]] +file = "mods/jei-1.20.1-fabric-15.10.0.29.pw.toml" +hash = "f2c0622c62970b1bec85f1e09d093bd9ed1802311e57786fb1779e806b38a3a5" +metafile = true + +[[files]] +file = "mods/kevsequipmentsets-1.0.5.pw.toml" +hash = "cd539aeb7d977b0721262d5d38ec087d2707d7ceafcee5180632e288ee43e874" +metafile = true + +[[files]] +file = "mods/kevslibrary-1.1.0.pw.toml" +hash = "aa2fee2179f39f7191e7863aca4cc0d477262de8bbf84e228ff315a740f2b6fd" +metafile = true + +[[files]] +file = "mods/kevstierifymodifiers-1.2.4.jar" +hash = "243e8362c3e5eaabbdfb3ce996fb41b1212a3134220cd18b673f7d64ec421d93" + +[[files]] +file = "mods/kobold-outposts-2.0.pw.toml" +hash = "0f8f19f6d1e3a74254c3eba5daf69214d91498281f5fc7fbc5c1b1e8df565ed3" +metafile = true + +[[files]] +file = "mods/letsdo-camping-fabric-1.0.0.pw.toml" +hash = "ee9665b184b4134920dc19d105e3e6de3a98ae47bc0f06d6b4e392668d94131e" +metafile = true + +[[files]] +file = "mods/lithium-fabric-mc1.20.1-0.11.2.pw.toml" +hash = "4750cba4930531eb7755ef487194f5ffce103b01fc74f6ebb9f8e1d6d234a607" +metafile = true + +[[files]] +file = "mods/lithostitched-fabric-1.20.1-1.1.8.pw.toml" +hash = "7da6693d91e0e8891aec34d9035af280eb46aeabc907217b0d30014c22726f98" +metafile = true + +[[files]] +file = "mods/lmft-1.0.2+1.20-fabric.pw.toml" +hash = "480f77e0973cfd3f4f2b053afe8a7577faa7f6dc22312192d73a35fa6c0785be" +metafile = true + +[[files]] +file = "mods/loadmyresources_fabric_1.0.4-1_MC_1.20.pw.toml" +hash = "569d2a3626be04394c7b9377e11f6466da40f0e3c635da20a9fb1226027dfa8f" +metafile = true + +[[files]] +file = "mods/logprot-fabric-1.20.1-3.4.jar" +hash = "6ebb65cfbfb380b6fa2baee466f70865e1008544a590a8301ccd9c63d887f59b" + +[[files]] +file = "mods/lootintegrations-fabric-1.20.1-3.7.jar" +hash = "343084a59c96bdd9808d8e703be62fa59c5397214260d1f733d3988135230eb7" + +[[files]] +file = "mods/mcda-5.0.2.pw.toml" +hash = "301c5774fa650b99ed6a32de63fd491014603ad2f18bf8b921a3fb4c863ea2b5" +metafile = true + +[[files]] +file = "mods/mcdw-9.0.4.pw.toml" +hash = "c82d410fbe1b337fb7406c00cd9172176ceed54d44417b6d89fa08bd558f0d54" +metafile = true + +[[files]] +file = "mods/mcw-bridges-3.0.0-mc1.20.1fabric.pw.toml" +hash = "312292fb5feb7f24b8ea15c1efb6966c296170bbd0141bd37a10f447376b6c5c" +metafile = true + +[[files]] +file = "mods/mcw-doors-1.1.1fabric-mc1.20.1.pw.toml" +hash = "cd38a3eaa764004af16d5ee284f66a9b4d3261c19bbd9d1e3b4be8cc21ef9a13" +metafile = true + +[[files]] +file = "mods/mcw-fences-1.1.2-mc1.20.1fabric.pw.toml" +hash = "b229de505da75d2b3593e3833bb342a2e0da3f99e1e6dee5eff042e5ce086f8f" +metafile = true + +[[files]] +file = "mods/mcw-furniture-3.3.0-mc1.20.1fabric.pw.toml" +hash = "bb51574e9bcc7bb976cbf7809949e6f2216e421dbb2c5b92aa28e0da3f628148" +metafile = true + +[[files]] +file = "mods/mcw-lights-1.1.1-mc1.20.1fabric.pw.toml" +hash = "25ef55b90524ef4099eea9e0ceb50a64084d5033899b260db1746a7f1f6f6edf" +metafile = true + +[[files]] +file = "mods/mcw-paintings-1.0.5-1.20.1fabric.pw.toml" +hash = "1862713de958e41748fe0721fac3fa946e1f89d72707fbeb14d27c3891290340" +metafile = true + +[[files]] +file = "mods/mcw-paths-1.0.5-1.20.1fabric.pw.toml" +hash = "b7a1771ac9b0d98815fe84f2f10161a6ad287e4262018da2990a5dda246fad32" +metafile = true + +[[files]] +file = "mods/mcw-roofs-2.3.1-mc1.20.1fabric.pw.toml" +hash = "d21c5172751263e3a4148a94138ae9867b768a61e427a09355615dd408ca92f5" +metafile = true + +[[files]] +file = "mods/mcw-trapdoors-1.1.3-mc1.20.1fabric.pw.toml" +hash = "3a44b6dfdbeb27c62740d6b4f1d235ffd07eca516bb35c96eb3a59727bf5286a" +metafile = true + +[[files]] +file = "mods/mcw-windows-2.3.0-mc1.20.1fabric.pw.toml" +hash = "494d70becfa5975b20511e9ed144a4701d79b96dd3523272eb7f7b7090eb0bdc" +metafile = true + +[[files]] +file = "mods/memoryleakfix-fabric-1.17+-1.1.5.pw.toml" +hash = "a82a976a3883e704e615c669354a06535f6b3b865c3be0ac48c99e439a0562ee" +metafile = true + +[[files]] +file = "mods/minecells-1.8.3.pw.toml" +hash = "b50ab756538a7c376f5ed59fb3faa424de57636bc040079da7bb5458aef7587c" +metafile = true + +[[files]] +file = "mods/mobs_of_mythology-fabric-1.20.1-2.0.2.pw.toml" +hash = "0325c19b713fe5a879f3fbcfb74217a0215a799c51bf2683311305f25880e35e" +metafile = true + +[[files]] +file = "mods/modernfix-fabric-5.19.0+mc1.20.1.pw.toml" +hash = "2708b3873b7a10275e9a87c17035c2651e6a8dcae760c76d6e78a55d2becfe72" +metafile = true + +[[files]] +file = "mods/modmenu-7.2.2.pw.toml" +hash = "9c9cbe0c0a6c856beebe510fb6d200efbf5637387909c0ea7447c44f0b47caf3" +metafile = true + +[[files]] +file = "mods/more-totems-mod-2.16.0.pw.toml" +hash = "67ea2808d518849c6bc3807ec67ab4f199ca618337d29889a2a6fd28df4714dc" +metafile = true + +[[files]] +file = "mods/moreculling-1.20.4-0.24.0.pw.toml" +hash = "0486e0e5f75c561bda6c640db0c5c5e5bf4386d1569f79a4e45252d89047fc34" +metafile = true + +[[files]] +file = "mods/moremobvariants-fabric+1.20.1-1.3.1.pw.toml" +hash = "f09e204bf45153e6a68f13c229620bab4fed75bf39d3c9233725e94828b1c5a1" +metafile = true + +[[files]] +file = "mods/mythic-mounts-1.20.1-7.2.pw.toml" +hash = "d79d7511469f8464960c4df792e1b8eb72da55eaea632301a7cf724d1ba80ee1" +metafile = true + +[[files]] +file = "mods/mythicupgrades-4.1.3+mc1.20.1.pw.toml" +hash = "031f1bddee5f123694d273883eb6ef07158713e1ae45263391d3eeaf0c46364b" +metafile = true + +[[files]] +file = "mods/mythquest-1.2.pw.toml" +hash = "c53dcd29d4e29ed868104d337bbb4185b1ee54c2693b2c3e1a3b4367a1d8c66c" +metafile = true + +[[files]] +file = "mods/naturalist-fabric-4.0.3-1.20.1.pw.toml" +hash = "ced387737b25163443dc2b0d42ae4e75f1a10f0b4f5b0e2a1566dfc370e2258f" +metafile = true + +[[files]] +file = "mods/netherdepthsupgrade-fabric-3.1.6-1.20.pw.toml" +hash = "405c6fd5973ba46fed2a803c37ba13960a0162afaa1225f46926374b10160abb" +metafile = true + +[[files]] +file = "mods/netherportalfix-fabric-1.20-13.0.1.jar" +hash = "4f69dbfd50efe1476010ce6d35a05660c7dc5d3f0707944a5be3bcbed1c37c2f" + +[[files]] +file = "mods/nicer-skies-1.3.0+1.20.1.pw.toml" +hash = "88e4ed8d55667ce48b4a79d9e8dfcec087eabdf74aa6cc76d3d6acdd0bab6183" +metafile = true + +[[files]] +file = "mods/nomobfarm-1.6.5.jar" +hash = "a703d4c2e801e11a63e3dfd598bb65b2bf7321126f1114db6a398ece937e9867" + +[[files]] +file = "mods/owo-lib-0.11.2+1.20.pw.toml" +hash = "6bbb74bcd81b68b6fd2a19757b5475ec66ba2a9bf079967c65e27a0e7f239073" +metafile = true + +[[files]] +file = "mods/oxidized-1.8.2.pw.toml" +hash = "f913b3864d637f351ca1d4b8d97faa6edff20af4ecdf161072968ce6c0315882" +metafile = true + +[[files]] +file = "mods/packetfixer-fabric-1.4.2-1.19-to-1.20.1.pw.toml" +hash = "3e6e1f67ce1172897480004d8049de9ffb9197be38c02e8737810f66a4fbb3f5" +metafile = true + +[[files]] +file = "mods/paladins-1.3.1+1.20.1.pw.toml" +hash = "b7a5ce1b21b37fbf446a574602d70f4f125085cea7613b3c411f0b3aa4d4a9f6" +metafile = true + +[[files]] +file = "mods/player-animation-lib-fabric-1.0.2-rc1+1.20.pw.toml" +hash = "fe1b9e0c3282221317efd7d5d4fce9d9940b04d0247ea8e782a55cdc6ef28745" +metafile = true + +[[files]] +file = "mods/polymorph-fabric-0.49.5+1.20.1.pw.toml" +hash = "66ed35ccc59290a39492015e7cc4934b4bb60238c81756c01557825f632ecf11" +metafile = true + +[[files]] +file = "mods/projectile_damage-fabric-3.2.3+1.20.1.pw.toml" +hash = "5bd438d04bc61ae578b616941a26d8cd5c86750fd49681aa3e1bae457f75b631" +metafile = true + +[[files]] +file = "mods/promenade-4.1.1.pw.toml" +hash = "eadfd43baf6390ba503c0392b31acc24b54f076e7cdb85f5ed26d4a688821a8b" +metafile = true + +[[files]] +file = "mods/puffish_attributes-0.5.0-1.20-fabric.pw.toml" +hash = "1a82f5b7c7b6ac94338a7b4cca9108e6d81148d0d82b8f365bcf1f96700beec0" +metafile = true + +[[files]] +file = "mods/puffish_skills-0.12.2-1.20-fabric.pw.toml" +hash = "e36a947115083873640edccba9122a69b1332e21f119d601357132cec634e5d6" +metafile = true + +[[files]] +file = "mods/ranged_weapon_api-1.1.2+1.20.1.pw.toml" +hash = "4ff7af675378010bbae2137f2458de0506c0b26b329db7622f2839bbbac18516" +metafile = true + +[[files]] +file = "mods/reacharound+1.20-1.3.0.pw.toml" +hash = "02a2415ee6972a5a1408de0a6dfcb516026ea202bcb40256e74e42b1c2187643" +metafile = true + +[[files]] +file = "mods/remove-terralith-intro-message-1.0.pw.toml" +hash = "1d8494c6edac92e0fa3b708779ec93fd450eff496f709a25f99a5860874b4970" +metafile = true + +[[files]] +file = "mods/repurposed_structures-7.1.15+1.20.1-fabric.pw.toml" +hash = "238de4500a59d65a0360e54ab63021f499fdcf67dff55e43c7e6f22606a512b8" +metafile = true + +[[files]] +file = "mods/resourcefulconfig-fabric-1.20.1-2.1.2.pw.toml" +hash = "eb9ab408b4b2b71bf500e7610f69ed2a36b9355d4d4b4aeb162391c4baed2a97" +metafile = true + +[[files]] +file = "mods/rogues-1.1.0+1.20.1.pw.toml" +hash = "54e67b20cdaa6790c7c25454789fe4aca49a8ff919afc3b7b2ff1f909d5eb526" +metafile = true + +[[files]] +file = "mods/runes-0.9.13+1.20.1.pw.toml" +hash = "9f2f4b25992a74e2f51b439fcf8db3ccc8aa83911c01494c0ae27fdb774335f8" +metafile = true + +[[files]] +file = "mods/simplyskills-1.5.0+1.20.1.pw.toml" +hash = "361dc80f42c0184a001fc158fde6eb0588bf05fc936b77a0cac2564260c64b97" +metafile = true + +[[files]] +file = "mods/simplyswords-fabric-1.55.0-1.20.1.pw.toml" +hash = "34663518be54f84a84b0b7f4313dfaa3fe1170eea2c091da8cbeb2231e27e6d0" +metafile = true + +[[files]] +file = "mods/smallships-fabric-1.20.1-2.0.0-b1.4.pw.toml" +hash = "23aad097a9bdbcec2c99a4da056bc328937063349636f1e383f860e857984940" +metafile = true + +[[files]] +file = "mods/smoothchunk-fabric-1.20.1-3.6.jar" +hash = "befba94629f775fc98c1401eabcee20181012248912cd9c2fd23cea5e5ed4069" + +[[files]] +file = "mods/sodium-extra-0.5.4+mc1.20.1-build.115.pw.toml" +hash = "dc96ee825c18b28aeaaf6a06721566318ac164f3d8eb55a360b65f7e8024076a" +metafile = true + +[[files]] +file = "mods/sodium-fabric-0.5.11+mc1.20.1.pw.toml" +hash = "e5431ef0222447142416bedbea660f43f67f062115b9f34dbd756dd6f7d20d4e" +metafile = true + +[[files]] +file = "mods/soulslike-weaponry-1.1.4.1-1.20.1-fabric.pw.toml" +hash = "6a809dcd18f7c458986bc62a4b6c2e4114a534a14815836f411be8c6406fdeff" +metafile = true + +[[files]] +file = "mods/sound-physics-remastered-fabric-1.20.1-1.4.5.pw.toml" +hash = "40fb26d90f45085e4f9cb2c2a403f81939482af3ef9d9a9984aebd18643145bd" +metafile = true + +[[files]] +file = "mods/spell_engine-0.15.8+1.20.1.pw.toml" +hash = "036dfd932bd7df9cf1e87a0ee5f5b3e2a91b4adb3562f5dd035a659e657e03d3" +metafile = true + +[[files]] +file = "mods/spell_power-0.11.1+1.20.1.pw.toml" +hash = "3fb877aafedcf7404263ca11a97058daeccc94e738157b10d8a74d7cd23cb612" +metafile = true + +[[files]] +file = "mods/starlight-1.1.2+fabric.dbc156f.pw.toml" +hash = "3d73d1f9631323a2872eaf957096eb845711844708c74fe6f24f66dcfd8d6378" +metafile = true + +[[files]] +file = "mods/starterkit-1.20.1-7.1.pw.toml" +hash = "b187f0343469f89f2fa3f94ac7d4d8e242950c38bd1960492575079e7553f3c3" +metafile = true + +[[files]] +file = "mods/tlc-fabric-1.0.1-1.20.X.pw.toml" +hash = "808290a5a8fd274a03fd482973db86f4856e582e991993e95f7755c212380b41" +metafile = true + +[[files]] +file = "mods/toofast-fabric-1.20-1.2.0.pw.toml" +hash = "b724791d01a4918b3560b98350b2446bc01435cbef8db3a53ba542bbcb30c022" +metafile = true + +[[files]] +file = "mods/trinkets-3.7.2.pw.toml" +hash = "e023bcdf1775fa33d5519c1b8f1dac83a2ea7115789036801622fe4a894cdadb" +metafile = true + +[[files]] +file = "mods/valentinesblessing 1.5.0 1.20.1 fabric.pw.toml" +hash = "e2cf12529427e782c61e96e550a6f32781063abd5af1f22c257137ff528d1727" +metafile = true + +[[files]] +file = "mods/vc_gliders-fabric-1.1.5.pw.toml" +hash = "81cf7f318ca1acf52fc0fb45a2b7c25c7166b4b32c733c5f9a8a7491bd997f40" +metafile = true + +[[files]] +file = "mods/veinmining-fabric-1.5.0+1.20.1.pw.toml" +hash = "b15fcda9cc773e0fff243736594686e38b06ae5a131d75c0d68229ce54a154a9" +metafile = true + +[[files]] +file = "mods/villagesandpillages-fabric-mc1.20.1-1.0.0.pw.toml" +hash = "fd1c1dfa4a9ad4b313ce33fcf0a724c48f78971b22e8bf5de0c14498c162ee7b" +metafile = true + +[[files]] +file = "mods/villagespawnpoint-1.20.1-4.4.pw.toml" +hash = "c009801dab6715dc78d394faf9d945c22741c83e501b730e7dbb369e3262dd49" +metafile = true + +[[files]] +file = "mods/vivecraft-1.20.1-1.1.11-fabric.pw.toml" +hash = "aeae12f7f15dfbfb2a71dca486eaa68eea7f5d209dac84e060ee94d5c4c00e6c" +metafile = true + +[[files]] +file = "mods/voicechat-fabric-1.20.1-2.5.19.pw.toml" +hash = "4d9272141bcbdbec521b662503a31e3430f65fcdf50ac2aefc997bbea6e7c279" +metafile = true + +[[files]] +file = "mods/vrapi-3.0.9-1.20.1-fabric.pw.toml" +hash = "4e0375f77b02befdc01a991337dd99282d7c18339345d329cb516949abc7cbee" +metafile = true + +[[files]] +file = "mods/walljump-1.20.1-1.2.1-fabric.pw.toml" +hash = "9dfea6a71d09538718d911888f2a72556476e92c0502ab7210f3cfbe2cdc1746" +metafile = true + +[[files]] +file = "mods/way2wayfabric-0.0.6.pw.toml" +hash = "22d7b8295f83d830ce684d22c9e1cf04d22dda7f432ff009c5cd8282c8b8e5fa" +metafile = true + +[[files]] +file = "mods/wizards-1.3.0+1.20.1.pw.toml" +hash = "83fab321bb266e3d5ecf4b36b6d80be883e7ffcf293b9879407abee1b8e6cc0d" +metafile = true + +[[files]] +file = "mods/wraith-waystones-3.3.2+mc1.20.1.pw.toml" +hash = "ce2bea170a7ce27577369d2a124c2b70ab52d7c8fe8bc531b5bc442a77076847" +metafile = true + +[[files]] +file = "mods/zenith-1.2.3-1.20.1.pw.toml" +hash = "6f6df12311f7ecabe9f53646af5929bacff2aeba64c85e6100121de5aa46b1f3" +metafile = true + +[[files]] +file = "mods/zenith_attributes-0.2.6.pw.toml" +hash = "80ae77804e8408052b61bc60396f258a80b1388360157431abf35d84bccee594" +metafile = true + +[[files]] +file = "mods/zephyr-0.5.0+1.20.1.pw.toml" +hash = "f52c0054b167cc0b342855782e95bde894d07864045f227374e548f92b210209" +metafile = true + +[[files]] +file = "options.txt" +hash = "074647ab0fdff44721c7b3ba624295c78dbdc54ec00962f2cf0acedd63d065d3" diff --git a/mods/AmbientSounds_FABRIC_v6.0.3_mc1.20.1.pw.toml b/mods/AmbientSounds_FABRIC_v6.0.3_mc1.20.1.pw.toml new file mode 100644 index 0000000..55255b1 --- /dev/null +++ b/mods/AmbientSounds_FABRIC_v6.0.3_mc1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "AmbientSounds_FABRIC_v6.0.3_mc1.20.1" +filename = "AmbientSounds_FABRIC_v6.0.3_mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fM515JnW/versions/zTT9Dzv8/AmbientSounds_FABRIC_v6.0.3_mc1.20.1.jar" +hash = "0e319765b08e02a93d4b00f799764121b4668e0c306c667923ce28532f79561cbce60552c3eb599d1bd64ce951bf46d057dff49dd344f28480b65d1e23af40dc" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "fM515JnW" +version = "zTT9Dzv8" diff --git a/mods/Aquamirae-6.pw.toml b/mods/Aquamirae-6.pw.toml new file mode 100644 index 0000000..e1be966 --- /dev/null +++ b/mods/Aquamirae-6.pw.toml @@ -0,0 +1,17 @@ +name = "Aquamirae-6" +filename = "Aquamirae-6.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/k23mNPhZ/versions/ouUaC54p/Aquamirae-6.jar" +hash = "c047063fb7b54cf107554992a9341470c622c178a89a1135c9204b347034bf9dfc757f09f1f96fcc20852868c0c11fb18ca7151ec0e2b87556f516011b0f59b1" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "k23mNPhZ" +version = "ouUaC54p" diff --git a/mods/AttributeFix-Fabric-1.20.1-21.0.4.pw.toml b/mods/AttributeFix-Fabric-1.20.1-21.0.4.pw.toml new file mode 100644 index 0000000..6928fe0 --- /dev/null +++ b/mods/AttributeFix-Fabric-1.20.1-21.0.4.pw.toml @@ -0,0 +1,17 @@ +name = "AttributeFix-Fabric-1.20.1-21.0.4" +filename = "AttributeFix-Fabric-1.20.1-21.0.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/lOOpEntO/versions/B5XgR60E/AttributeFix-Fabric-1.20.1-21.0.4.jar" +hash = "5b14861407ec024e6dfcc2a42917c88f674f57a77dda456541cac2610e63b7a66b00a4ef52f1d8cf86967aa9ed96b52bfa2de1808275010f9744689c3bb3b6b8" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "lOOpEntO" +version = "B5XgR60E" diff --git a/mods/BOMD-1.7.5-1.20.1.pw.toml b/mods/BOMD-1.7.5-1.20.1.pw.toml new file mode 100644 index 0000000..45736eb --- /dev/null +++ b/mods/BOMD-1.7.5-1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "BOMD-1.7.5-1.20.1" +filename = "BOMD-1.7.5-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/du3UfiLL/versions/yoCCX4Cc/BOMD-1.7.5-1.20.1.jar" +hash = "4455247f1652cf097bdab445467d7ab1f1ae58c6b594de0ef5118fc908e32ca888110be4036dd941256d3a9574993f8b1122a4a6f90d195e2f142f16f31227a7" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "du3UfiLL" +version = "yoCCX4Cc" diff --git a/mods/BadOptimizations-2.1.4-1.20.1.pw.toml b/mods/BadOptimizations-2.1.4-1.20.1.pw.toml new file mode 100644 index 0000000..e072461 --- /dev/null +++ b/mods/BadOptimizations-2.1.4-1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "BadOptimizations-2.1.4-1.20.1" +filename = "BadOptimizations-2.1.4-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/g96Z4WVZ/versions/GydKiUd0/BadOptimizations-2.1.4-1.20.1.jar" +hash = "a68968e8fab27202f0d2737357511e27282967ced27732cc90d6beaff64cb99359448b7de3e24cdef4e564ecb99ed061ac1e336e07d8ab4771db47bec7c5da45" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "g96Z4WVZ" +version = "GydKiUd0" diff --git a/mods/BiomesOPlenty-1.20.1-18.0.0.598.pw.toml b/mods/BiomesOPlenty-1.20.1-18.0.0.598.pw.toml new file mode 100644 index 0000000..a86b364 --- /dev/null +++ b/mods/BiomesOPlenty-1.20.1-18.0.0.598.pw.toml @@ -0,0 +1,17 @@ +name = "BiomesOPlenty-1.20.1-18.0.0.598" +filename = "BiomesOPlenty-1.20.1-18.0.0.598.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/HXF82T3G/versions/peO5lWzX/BiomesOPlenty-1.20.1-18.0.0.598.jar" +hash = "a3d0d2bda76d166640e0c7fa1ea698a1966436dd59d49b9679b42212b887c742b2d80a208e1d26ffdf8cf918a957cfc9e2ea6b5a5ea0da18b57043d76feb25ed" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "HXF82T3G" +version = "peO5lWzX" diff --git a/mods/BlockRunner-v8.0.4-1.20.1-Fabric.pw.toml b/mods/BlockRunner-v8.0.4-1.20.1-Fabric.pw.toml new file mode 100644 index 0000000..42a9ba9 --- /dev/null +++ b/mods/BlockRunner-v8.0.4-1.20.1-Fabric.pw.toml @@ -0,0 +1,17 @@ +name = "BlockRunner-v8.0.4-1.20.1-Fabric" +filename = "BlockRunner-v8.0.4-1.20.1-Fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/1VSGxqkt/versions/Bs0gyy0J/BlockRunner-v8.0.4-1.20.1-Fabric.jar" +hash = "e15276c0bbf2a76bccd9fcd36d61102d3ea4c05450522a94610b4c0dc56c9605e92b3edeb51daf39d935cfa2da974b9eb2e88a3068a919767b6db86f0ec35ff7" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "1VSGxqkt" +version = "Bs0gyy0J" diff --git a/mods/Bookshelf-Fabric-1.20.1-20.2.13.pw.toml b/mods/Bookshelf-Fabric-1.20.1-20.2.13.pw.toml new file mode 100644 index 0000000..1203f0e --- /dev/null +++ b/mods/Bookshelf-Fabric-1.20.1-20.2.13.pw.toml @@ -0,0 +1,17 @@ +name = "Bookshelf-Fabric-1.20.1-20.2.13" +filename = "Bookshelf-Fabric-1.20.1-20.2.13.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/uy4Cnpcm/versions/CBnLZwRS/Bookshelf-Fabric-1.20.1-20.2.13.jar" +hash = "6cc0536833c4f1922711da91c3baf3a79b4bf8c72aa548a34e8f4852fc9b1cb51f21729c58544fbe05909fd3e1da316d1f885033af5844024cea936c3626e3d2" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "uy4Cnpcm" +version = "CBnLZwRS" diff --git a/mods/Clumps-fabric-1.20.1-12.0.0.4.pw.toml b/mods/Clumps-fabric-1.20.1-12.0.0.4.pw.toml new file mode 100644 index 0000000..2a18ae4 --- /dev/null +++ b/mods/Clumps-fabric-1.20.1-12.0.0.4.pw.toml @@ -0,0 +1,17 @@ +name = "Clumps-fabric-1.20.1-12.0.0.4" +filename = "Clumps-fabric-1.20.1-12.0.0.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Wnxd13zP/versions/hefSwtn6/Clumps-fabric-1.20.1-12.0.0.4.jar" +hash = "2235d29b1239d5526035bffd547d35fe33b9e737d3e75cd341f6689d9cd834d0a7dc03ed80748772162cd9595ba08e7a0ab51221bc145a8fd979d596c3967544" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "Wnxd13zP" +version = "hefSwtn6" diff --git a/mods/CreativeCore_FABRIC_v2.11.33_mc1.20.1.pw.toml b/mods/CreativeCore_FABRIC_v2.11.33_mc1.20.1.pw.toml new file mode 100644 index 0000000..afb540c --- /dev/null +++ b/mods/CreativeCore_FABRIC_v2.11.33_mc1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "CreativeCore_FABRIC_v2.11.33_mc1.20.1" +filename = "CreativeCore_FABRIC_v2.11.33_mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/OsZiaDHq/versions/NHhWpLCK/CreativeCore_FABRIC_v2.11.33_mc1.20.1.jar" +hash = "a727a0b6966b5f006ff4e87ce3ab6189984af2bdcd2b3754181272b1837ba98936483fb4569430acf1ff45d60d56beb3e7193ff4b412015a4c40f9c9954b4883" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "OsZiaDHq" +version = "NHhWpLCK" diff --git a/mods/DEUF_Refabricated-MC1.20.1-1.1.0.pw.toml b/mods/DEUF_Refabricated-MC1.20.1-1.1.0.pw.toml new file mode 100644 index 0000000..657ae24 --- /dev/null +++ b/mods/DEUF_Refabricated-MC1.20.1-1.1.0.pw.toml @@ -0,0 +1,17 @@ +name = "DEUF_Refabricated-MC1.20.1-1.1.0" +filename = "DEUF_Refabricated-MC1.20.1-1.1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/US6QuKdU/versions/pizP8FAq/DEUF_Refabricated-MC1.20.1-1.1.0.jar" +hash = "6c3f84648b9008d5f7e14a3712eaca170aad5f7a2059f3851d8e2bfe6675c36d9000e9186249a5f9ffd9e2454dc32e68734397c7c1b0b591ccf5fc30ae4079f5" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "US6QuKdU" +version = "pizP8FAq" diff --git a/mods/Debugify-1.20.1+2.0.pw.toml b/mods/Debugify-1.20.1+2.0.pw.toml new file mode 100644 index 0000000..361e58a --- /dev/null +++ b/mods/Debugify-1.20.1+2.0.pw.toml @@ -0,0 +1,17 @@ +name = "Debugify-1.20.1+2.0" +filename = "Debugify-1.20.1+2.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/QwxR6Gcd/versions/6XDJoCks/Debugify-1.20.1%2B2.0.jar" +hash = "4cbeeafd7daadcf8a54526b6f415eac39c8bd1459d44967f484c499f407b9625c10faa5c8f825946d97529d5d64fd7504669bc13ebc4c3eb2a143aa20b50e4bd" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "QwxR6Gcd" +version = "6XDJoCks" diff --git a/mods/DistantHorizons-2.1.2-a-1.20.1-forge-fabric.pw.toml b/mods/DistantHorizons-2.1.2-a-1.20.1-forge-fabric.pw.toml new file mode 100644 index 0000000..1ce2e83 --- /dev/null +++ b/mods/DistantHorizons-2.1.2-a-1.20.1-forge-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "DistantHorizons-2.1.2-a-1.20.1-forge-fabric" +filename = "DistantHorizons-2.1.2-a-1.20.1-forge-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/uCdwusMi/versions/OwcStAhe/DistantHorizons-2.1.2-a-1.20.1-forge-fabric.jar" +hash = "f68f8c2bcbab3db5ce78e5d2fdaca60d1352c9d3b7a4af5bd69009795dd10551d527f566323fd28e3e5ba6691545680cf5501524ec58ae948ab7a1034019f88d" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "uCdwusMi" +version = "OwcStAhe" diff --git a/mods/Dungeon Now Loading-fabric-1.20.1-1.5.pw.toml b/mods/Dungeon Now Loading-fabric-1.20.1-1.5.pw.toml new file mode 100644 index 0000000..ccfa8c7 --- /dev/null +++ b/mods/Dungeon Now Loading-fabric-1.20.1-1.5.pw.toml @@ -0,0 +1,17 @@ +name = "Dungeon Now Loading-fabric-1.20.1-1.5" +filename = "Dungeon Now Loading-fabric-1.20.1-1.5.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/vZoqTqwv/versions/e2aaNGip/Dungeon%20Now%20Loading-fabric-1.20.1-1.5.jar" +hash = "7eb8dff5e54427fe0a4b543d8ee3e9b278fd75351908d8ec910a63680a97e353ad63a272c1719e01bce427f46ea172c38994d831a25404b7f023d53d0ae4da89" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "vZoqTqwv" +version = "e2aaNGip" diff --git a/mods/DungeonsArise-1.20.x-2.1.58-fabric-release.jar b/mods/DungeonsArise-1.20.x-2.1.58-fabric-release.jar new file mode 100644 index 0000000..18883cb Binary files /dev/null and b/mods/DungeonsArise-1.20.x-2.1.58-fabric-release.jar differ diff --git a/mods/Eldritch_End-FABRIC-MC1.20.1-0.2.31.pw.toml b/mods/Eldritch_End-FABRIC-MC1.20.1-0.2.31.pw.toml new file mode 100644 index 0000000..6c8960e --- /dev/null +++ b/mods/Eldritch_End-FABRIC-MC1.20.1-0.2.31.pw.toml @@ -0,0 +1,17 @@ +name = "Eldritch_End-FABRIC-MC1.20.1-0.2.31" +filename = "Eldritch_End-FABRIC-MC1.20.1-0.2.31.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/nBaXIQY9/versions/Xx5Bo3G8/Eldritch_End-FABRIC-MC1.20.1-0.2.31.jar" +hash = "f2a3ce2e0f7fd964cd617969ddb013b30623bef581d0909c9e1b1a9667514b93cbd220d6060c40dc3214dfdcb6558dfd6a8a39a9085f30991517ad3342c58e51" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "nBaXIQY9" +version = "Xx5Bo3G8" diff --git a/mods/ExplorersCompass-1.20.1-2.2.3-fabric.pw.toml b/mods/ExplorersCompass-1.20.1-2.2.3-fabric.pw.toml new file mode 100644 index 0000000..b78d8c0 --- /dev/null +++ b/mods/ExplorersCompass-1.20.1-2.2.3-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "ExplorersCompass-1.20.1-2.2.3-fabric" +filename = "ExplorersCompass-1.20.1-2.2.3-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/RV1qfVQ8/versions/9ntdShFb/ExplorersCompass-1.20.1-2.2.3-fabric.jar" +hash = "c8aa25fd1567a24ebfee6d187f306961e63b64b498613e43838f88d08bbe7522db0ed8cc1c75fd2a2baa0701fe5d550d5f609f388596a60f143fa0e1d10a8113" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "RV1qfVQ8" +version = "9ntdShFb" diff --git a/mods/FallingTree-1.20.1-4.3.4.pw.toml b/mods/FallingTree-1.20.1-4.3.4.pw.toml new file mode 100644 index 0000000..4c2fa9a --- /dev/null +++ b/mods/FallingTree-1.20.1-4.3.4.pw.toml @@ -0,0 +1,17 @@ +name = "FallingTree-1.20.1-4.3.4" +filename = "FallingTree-1.20.1-4.3.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Fb4jn8m6/versions/NrtzFkZE/FallingTree-1.20.1-4.3.4.jar" +hash = "487cd36886cb791a3f252c90818d5c1cedeec5080a7f874b0bfafff328c8fcc9b2acee03fe40f8397355e8a2a092d2f34cb40671c786c0d9d035728c971d4e9c" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "Fb4jn8m6" +version = "NrtzFkZE" diff --git a/mods/ForgeConfigAPIPort-v8.0.0-1.20.1-Fabric.pw.toml b/mods/ForgeConfigAPIPort-v8.0.0-1.20.1-Fabric.pw.toml new file mode 100644 index 0000000..2a2a798 --- /dev/null +++ b/mods/ForgeConfigAPIPort-v8.0.0-1.20.1-Fabric.pw.toml @@ -0,0 +1,17 @@ +name = "ForgeConfigAPIPort-v8.0.0-1.20.1-Fabric" +filename = "ForgeConfigAPIPort-v8.0.0-1.20.1-Fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ohNO6lps/versions/CtENDTlF/ForgeConfigAPIPort-v8.0.0-1.20.1-Fabric.jar" +hash = "257cd85263ab5119ce78cf16f2e7fdaf8b350e526c758d00f0af8393b9fabd581a2a974096fc7c7af45d793660e2e7b84391e11d10522036759ec66220a4b616" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "ohNO6lps" +version = "CtENDTlF" diff --git a/mods/ForgeConfigScreens-v8.0.2-1.20.1-Fabric.pw.toml b/mods/ForgeConfigScreens-v8.0.2-1.20.1-Fabric.pw.toml new file mode 100644 index 0000000..ba52507 --- /dev/null +++ b/mods/ForgeConfigScreens-v8.0.2-1.20.1-Fabric.pw.toml @@ -0,0 +1,17 @@ +name = "ForgeConfigScreens-v8.0.2-1.20.1-Fabric" +filename = "ForgeConfigScreens-v8.0.2-1.20.1-Fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/5WeWGLoJ/versions/nwy63zfI/ForgeConfigScreens-v8.0.2-1.20.1-Fabric.jar" +hash = "4ade6744614c05bf23a57e70e8f3569245d839e899a8eb9e0b2cd152a5b740fb9431f5224e0f350d80b9af319de800d9d179b6b0fbbb531ce8185dc83149dc4e" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "5WeWGLoJ" +version = "nwy63zfI" diff --git a/mods/GeckoLibIrisCompat-Fabric-1.0.0.pw.toml b/mods/GeckoLibIrisCompat-Fabric-1.0.0.pw.toml new file mode 100644 index 0000000..0509cf0 --- /dev/null +++ b/mods/GeckoLibIrisCompat-Fabric-1.0.0.pw.toml @@ -0,0 +1,17 @@ +name = "GeckoLibIrisCompat-Fabric-1.0.0" +filename = "GeckoLibIrisCompat-Fabric-1.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/TbriQCWD/versions/3Q4qBNwT/GeckoLibIrisCompat-Fabric-1.0.0.jar" +hash = "f11507d76dd7b28e3b96fe98eb14041983f7db8d17984fdc4b3555d6f0245fd0b09b9f233c0f4b8ba9ffd6882a5df45d5c41a94839c0b4fb1bbd329d7f51b954" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "TbriQCWD" +version = "3Q4qBNwT" diff --git a/mods/Geophilic v3.1.1 f15-48.pw.toml b/mods/Geophilic v3.1.1 f15-48.pw.toml new file mode 100644 index 0000000..b27f829 --- /dev/null +++ b/mods/Geophilic v3.1.1 f15-48.pw.toml @@ -0,0 +1,17 @@ +name = "Geophilic v3.1.1 f15-48" +filename = "Geophilic v3.1.1 f15-48.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/hl5OLM95/versions/DI57oxoL/Geophilic%20v3.1.1%20f15-48.jar" +hash = "f4ff5fa66bc51b6340b993e1514ebaf47d5be7268ac253d23a9c20a96c62c15489a227546d582c6016abca2b4741b60bcf448c2a590ca7f51a4d11fffa8baf67" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "hl5OLM95" +version = "DI57oxoL" diff --git a/mods/Iceberg-1.20.1-fabric-1.1.18.pw.toml b/mods/Iceberg-1.20.1-fabric-1.1.18.pw.toml new file mode 100644 index 0000000..5cb5779 --- /dev/null +++ b/mods/Iceberg-1.20.1-fabric-1.1.18.pw.toml @@ -0,0 +1,17 @@ +name = "Iceberg-1.20.1-fabric-1.1.18" +filename = "Iceberg-1.20.1-fabric-1.1.18.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/5faXoLqX/versions/uu7sqQDO/Iceberg-1.20.1-fabric-1.1.18.jar" +hash = "b140b3dbbc9daadb96a98f59d6d12611c015117c790e1490fdebfba9cc9b8f592a25afb87275d8d34cc06e103aea2f365e4b50b99c9f1afb107c179a6d1e6106" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "5faXoLqX" +version = "uu7sqQDO" diff --git a/mods/ImmediatelyFast-Fabric-1.2.18+1.20.4.pw.toml b/mods/ImmediatelyFast-Fabric-1.2.18+1.20.4.pw.toml new file mode 100644 index 0000000..07b78bb --- /dev/null +++ b/mods/ImmediatelyFast-Fabric-1.2.18+1.20.4.pw.toml @@ -0,0 +1,17 @@ +name = "ImmediatelyFast-Fabric-1.2.18+1.20.4" +filename = "ImmediatelyFast-Fabric-1.2.18+1.20.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/5ZwdcRci/versions/HX5WEfoR/ImmediatelyFast-Fabric-1.2.18%2B1.20.4.jar" +hash = "b60bdee006d83e2e4c07ab200e3fbd083c71d7112b6713868d4c57af6de33d5930bbbc152ab115f80cc4bc5e8e20beaa62ccc171e78d6c6191496b11d7da2910" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "5ZwdcRci" +version = "HX5WEfoR" diff --git a/mods/InventorySorter-1.9.0-1.20.pw.toml b/mods/InventorySorter-1.9.0-1.20.pw.toml new file mode 100644 index 0000000..36dc888 --- /dev/null +++ b/mods/InventorySorter-1.9.0-1.20.pw.toml @@ -0,0 +1,17 @@ +name = "InventorySorter-1.9.0-1.20" +filename = "InventorySorter-1.9.0-1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/5ibSyLAz/versions/tr2ZGtz4/InventorySorter-1.9.0-1.20.jar" +hash = "bb8f71a53940e82ddc20918b64602b2f6dfa289055966e43d1c324266d24ef06161d4a0d71a9abda6081d53559c1bd8264187ae369583bfea9a8c3ef9dc59c93" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "5ibSyLAz" +version = "tr2ZGtz4" diff --git a/mods/Jade-1.20-fabric-11.10.0.pw.toml b/mods/Jade-1.20-fabric-11.10.0.pw.toml new file mode 100644 index 0000000..903f0a5 --- /dev/null +++ b/mods/Jade-1.20-fabric-11.10.0.pw.toml @@ -0,0 +1,17 @@ +name = "Jade-1.20-fabric-11.10.0" +filename = "Jade-1.20-fabric-11.10.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/nvQzSEkH/versions/vlM1OUBd/Jade-1.20-fabric-11.10.0.jar" +hash = "735a9f2208240daa730a401c393ea3f0c4bdd2bdab484ebcf83f5ed0a1c278505b657154cb778ffc3dc5b9fd9e29a8e46d1650f64bd0894767e913e5175f3009" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "nvQzSEkH" +version = "vlM1OUBd" diff --git a/mods/Jewelry-1.3.5+1.20.1.pw.toml b/mods/Jewelry-1.3.5+1.20.1.pw.toml new file mode 100644 index 0000000..38f3c8e --- /dev/null +++ b/mods/Jewelry-1.3.5+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "Jewelry-1.3.5+1.20.1" +filename = "Jewelry-1.3.5+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/sNJAIjUm/versions/nOwzxEZn/Jewelry-1.3.5%2B1.20.1.jar" +hash = "0adb84fb5699df07ad8745b7e5c6eced78ba62635b0cb71a42a8bc471e66b2f39b022bf67ebea13deae1d45cbcba7f7edbc495ee7f94fdddb5efc2e847b4f9de" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "sNJAIjUm" +version = "nOwzxEZn" diff --git a/mods/LegendaryTooltips-1.20.1-fabric-1.4.5.pw.toml b/mods/LegendaryTooltips-1.20.1-fabric-1.4.5.pw.toml new file mode 100644 index 0000000..3ecac2f --- /dev/null +++ b/mods/LegendaryTooltips-1.20.1-fabric-1.4.5.pw.toml @@ -0,0 +1,17 @@ +name = "LegendaryTooltips-1.20.1-fabric-1.4.5" +filename = "LegendaryTooltips-1.20.1-fabric-1.4.5.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/atHH8NyV/versions/fvJtXL6i/LegendaryTooltips-1.20.1-fabric-1.4.5.jar" +hash = "260c06f376d7d22af251c45f056c2e60c91351fd15d74c018b64c9bb143d9255a00689bb3a8c603154972f0b727d0dad521d2b45403dd16f7679d9370c81474a" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "atHH8NyV" +version = "fvJtXL6i" diff --git a/mods/MobPlaques-v8.0.1-1.20.1-Fabric.pw.toml b/mods/MobPlaques-v8.0.1-1.20.1-Fabric.pw.toml new file mode 100644 index 0000000..2621fa4 --- /dev/null +++ b/mods/MobPlaques-v8.0.1-1.20.1-Fabric.pw.toml @@ -0,0 +1,17 @@ +name = "MobPlaques-v8.0.1-1.20.1-Fabric" +filename = "MobPlaques-v8.0.1-1.20.1-Fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/3b1CFIR5/versions/bcQFG4g7/MobPlaques-v8.0.1-1.20.1-Fabric.jar" +hash = "5bb046322d9a62488b0c6a680ea79253e0c33a1a5b825bf1f5a668690e9208e837b7d4c4cfd5c95401fb4d137a7a5fe69a37ca4236c81fd3388c3f876dae87b7" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "3b1CFIR5" +version = "bcQFG4g7" diff --git a/mods/MutantMonsters-v8.0.7-1.20.1-Fabric.pw.toml b/mods/MutantMonsters-v8.0.7-1.20.1-Fabric.pw.toml new file mode 100644 index 0000000..7de1dce --- /dev/null +++ b/mods/MutantMonsters-v8.0.7-1.20.1-Fabric.pw.toml @@ -0,0 +1,17 @@ +name = "MutantMonsters-v8.0.7-1.20.1-Fabric" +filename = "MutantMonsters-v8.0.7-1.20.1-Fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/derP0ten/versions/GEdQkhpr/MutantMonsters-v8.0.7-1.20.1-Fabric.jar" +hash = "8b432a01ec4937c905a9f6a1c976ae80b029ff5438b0a82a76eefd16779cdda9e43cf83af48615d7312b8d6328ce83372e27fd4d4aa09984fc2e9a75f17a666f" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "derP0ten" +version = "GEdQkhpr" diff --git a/mods/NaturesCompass-1.20.1-2.2.3-fabric.pw.toml b/mods/NaturesCompass-1.20.1-2.2.3-fabric.pw.toml new file mode 100644 index 0000000..2a34ca6 --- /dev/null +++ b/mods/NaturesCompass-1.20.1-2.2.3-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "NaturesCompass-1.20.1-2.2.3-fabric" +filename = "NaturesCompass-1.20.1-2.2.3-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fPetb5Kh/versions/NovIXDxY/NaturesCompass-1.20.1-2.2.3-fabric.jar" +hash = "b57dabd55010b598a66fe13644380c452ea75d4717b6acb7cd4f7718d6d535920cf7e216491bde427066d7e68dfaee5ef7226b7c8322b4f8771cf0dc9416e56e" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "fPetb5Kh" +version = "NovIXDxY" diff --git a/mods/Necronomicon-Fabric-1.4.2.pw.toml b/mods/Necronomicon-Fabric-1.4.2.pw.toml new file mode 100644 index 0000000..3b57f40 --- /dev/null +++ b/mods/Necronomicon-Fabric-1.4.2.pw.toml @@ -0,0 +1,17 @@ +name = "Necronomicon-Fabric-1.4.2" +filename = "Necronomicon-Fabric-1.4.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/P1Kv5EAO/versions/twWimVNr/Necronomicon-Fabric-1.4.2.jar" +hash = "9b26e0c64a9c391894a9dd9d125c9e871aef32197b137a38c56516a7abb4b0f01a881003e70d5defa1ad7dcea357fbce366cb6417400d4924cb03fa4653c1fc8" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "P1Kv5EAO" +version = "twWimVNr" diff --git a/mods/Neruina-2.1.1-fabric+1.20.1.pw.toml b/mods/Neruina-2.1.1-fabric+1.20.1.pw.toml new file mode 100644 index 0000000..6370832 --- /dev/null +++ b/mods/Neruina-2.1.1-fabric+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "Neruina-2.1.1-fabric+1.20.1" +filename = "Neruina-2.1.1-fabric+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/1s5x833P/versions/IrhpPXR5/Neruina-2.1.1-fabric%2B1.20.1.jar" +hash = "c36e13ab6747b94f2ec8e3f2a00f5c1d795fd538d79be51ace12450bdb3dc93f0daf79b540c029c2421c11b082b5264c297a3209a2815a0c2af24559880c46ed" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "1s5x833P" +version = "IrhpPXR5" diff --git a/mods/NoChatReports-FABRIC-1.20.1-v2.2.2.pw.toml b/mods/NoChatReports-FABRIC-1.20.1-v2.2.2.pw.toml new file mode 100644 index 0000000..275fe92 --- /dev/null +++ b/mods/NoChatReports-FABRIC-1.20.1-v2.2.2.pw.toml @@ -0,0 +1,17 @@ +name = "NoChatReports-FABRIC-1.20.1-v2.2.2" +filename = "NoChatReports-FABRIC-1.20.1-v2.2.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/qQyHxfxd/versions/HeZZR2kF/NoChatReports-FABRIC-1.20.1-v2.2.2.jar" +hash = "3213e37fc12205e49f69a6c295c8c3237d8464d63dedbfbac4901892752741d22ebf7e1b40d6683143e70ca158fc95b00c2af177a1263038edce9a46b6cbeb79" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "qQyHxfxd" +version = "HeZZR2kF" diff --git a/mods/Obscure-API-16.pw.toml b/mods/Obscure-API-16.pw.toml new file mode 100644 index 0000000..bf7e9ff --- /dev/null +++ b/mods/Obscure-API-16.pw.toml @@ -0,0 +1,17 @@ +name = "Obscure-API-16" +filename = "Obscure-API-16.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fU7jbFHc/versions/IWDYxZre/Obscure-API-16.jar" +hash = "f0998d69174063420078fe96ff904665a33f3950475536c8ca8f0bda45417ef94a75598d417af4302e92d6a59ead1ea7e6721062b538f981f5f4dd16e8c1c5b1" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "fU7jbFHc" +version = "IWDYxZre" diff --git a/mods/Patchouli-1.20.1-84-FABRIC.pw.toml b/mods/Patchouli-1.20.1-84-FABRIC.pw.toml new file mode 100644 index 0000000..4fe1848 --- /dev/null +++ b/mods/Patchouli-1.20.1-84-FABRIC.pw.toml @@ -0,0 +1,17 @@ +name = "Patchouli-1.20.1-84-FABRIC" +filename = "Patchouli-1.20.1-84-FABRIC.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/nU0bVIaL/versions/Y6tuH1cn/Patchouli-1.20.1-84-FABRIC.jar" +hash = "b20cebaab0972443ccc7f3b10b2038d32cfa7baa953a1cc8de6333fa711f63fd51b1b5933e0f2757445385b98e132ef295bd7c17f67ebb44bc8481295329d8bf" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "nU0bVIaL" +version = "Y6tuH1cn" diff --git a/mods/PresenceFootsteps-1.9.4+1.20.1.pw.toml b/mods/PresenceFootsteps-1.9.4+1.20.1.pw.toml new file mode 100644 index 0000000..03ea5ff --- /dev/null +++ b/mods/PresenceFootsteps-1.9.4+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "PresenceFootsteps-1.9.4+1.20.1" +filename = "PresenceFootsteps-1.9.4+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/rcTfTZr3/versions/LjDXTyEn/PresenceFootsteps-1.9.4%2B1.20.1.jar" +hash = "6319ed83c15b3a178ba7a2e43e1b8aff09efbf33e0e2807745ecf6ed72ac993d9bd560295b2623f79cbc4c06fb5cb09066cf108cb053f3c40608bb5dc93307c4" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "rcTfTZr3" +version = "LjDXTyEn" diff --git a/mods/Prism-1.20.1-fabric-1.0.5.pw.toml b/mods/Prism-1.20.1-fabric-1.0.5.pw.toml new file mode 100644 index 0000000..d1cb798 --- /dev/null +++ b/mods/Prism-1.20.1-fabric-1.0.5.pw.toml @@ -0,0 +1,17 @@ +name = "Prism-1.20.1-fabric-1.0.5" +filename = "Prism-1.20.1-fabric-1.0.5.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/1OE8wbN0/versions/Fmetb8IP/Prism-1.20.1-fabric-1.0.5.jar" +hash = "a381278e3573eecd5ca9e79de8f2df207e6788e6a911804ceab1288819fd043b48eb57f605b9c80cb8caaa2e716822cf301417bb8e87f75e5fe837e8d8a298b5" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "1OE8wbN0" +version = "Fmetb8IP" diff --git a/mods/ProtectionBalancer-FABRIC-1.1.0.pw.toml b/mods/ProtectionBalancer-FABRIC-1.1.0.pw.toml new file mode 100644 index 0000000..e234f71 --- /dev/null +++ b/mods/ProtectionBalancer-FABRIC-1.1.0.pw.toml @@ -0,0 +1,17 @@ +name = "ProtectionBalancer-FABRIC-1.1.0" +filename = "ProtectionBalancer-FABRIC-1.1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Udc4ShgP/versions/RUSThuct/ProtectionBalancer-FABRIC-1.1.0.jar" +hash = "a5c0ea66f6401066dd9950b3ccc00b90029e2daed642db0f149bfeeb2c394624d77c17dbc2ee79c3bfab87dcd6c3e2d847b2165e3417fbeff5a82b990e934550" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "Udc4ShgP" +version = "RUSThuct" diff --git a/mods/PuzzlesLib-v8.1.21-1.20.1-Fabric.pw.toml b/mods/PuzzlesLib-v8.1.21-1.20.1-Fabric.pw.toml new file mode 100644 index 0000000..217e232 --- /dev/null +++ b/mods/PuzzlesLib-v8.1.21-1.20.1-Fabric.pw.toml @@ -0,0 +1,17 @@ +name = "PuzzlesLib-v8.1.21-1.20.1-Fabric" +filename = "PuzzlesLib-v8.1.21-1.20.1-Fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/QAGBst4M/versions/xjQF8bha/PuzzlesLib-v8.1.21-1.20.1-Fabric.jar" +hash = "3de6a37785374fa0feb9ead334534d635a51162ae03770cbe9e57520ec8e6a4a851f077c4efc20f0b762379bee5f520d5238eba7bf351628d6cb6c0c74d685f4" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "QAGBst4M" +version = "xjQF8bha" diff --git a/mods/ReBalance-FABRIC-1.1.0.pw.toml b/mods/ReBalance-FABRIC-1.1.0.pw.toml new file mode 100644 index 0000000..ac12a14 --- /dev/null +++ b/mods/ReBalance-FABRIC-1.1.0.pw.toml @@ -0,0 +1,17 @@ +name = "ReBalance-FABRIC-1.1.0" +filename = "ReBalance-FABRIC-1.1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/uZQipe0a/versions/pAXbnwiG/ReBalance-FABRIC-1.1.0.jar" +hash = "5840835d5653ba0c84281db9ee4713f801551fb771f871f474f9d8bb9bb7d608510853e396ecc17ca82b50a1ffdbcd79ebbeb2273edc22b3e4a0c2bc8e5ed9c3" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "uZQipe0a" +version = "pAXbnwiG" diff --git a/mods/SmartBrainLib-fabric-1.20.1-1.14.2.pw.toml b/mods/SmartBrainLib-fabric-1.20.1-1.14.2.pw.toml new file mode 100644 index 0000000..7481efa --- /dev/null +++ b/mods/SmartBrainLib-fabric-1.20.1-1.14.2.pw.toml @@ -0,0 +1,17 @@ +name = "SmartBrainLib-fabric-1.20.1-1.14.2" +filename = "SmartBrainLib-fabric-1.20.1-1.14.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/PuyPazRT/versions/XsqXgUo1/SmartBrainLib-fabric-1.20.1-1.14.2.jar" +hash = "8416a35d94744712f814edbd3c9605318ddf6c5dc7a150d9b9c9287385324f03578142361f3b241da554135050db17d718cd51521eea62347a8e2830a2dcfe02" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "PuyPazRT" +version = "XsqXgUo1" diff --git a/mods/Sniffer+-fabric-1.20.1-0.3.0.pw.toml b/mods/Sniffer+-fabric-1.20.1-0.3.0.pw.toml new file mode 100644 index 0000000..224ad5c --- /dev/null +++ b/mods/Sniffer+-fabric-1.20.1-0.3.0.pw.toml @@ -0,0 +1,17 @@ +name = "Sniffer+-fabric-1.20.1-0.3.0" +filename = "Sniffer+-fabric-1.20.1-0.3.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/BVgHoKxg/versions/pJlIaMGq/Sniffer%2B-fabric-1.20.1-0.3.0.jar" +hash = "a638a3db7ed9a400ef7b68ddfec6cb9886ca0ed8b5f2161eac157f95b073b2174b8c9fd66938d293217255400616a270f5bd969f80e6eb0c7e0a5b3cfd725562" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "BVgHoKxg" +version = "pJlIaMGq" diff --git a/mods/TerraBlender-fabric-1.20.1-3.0.1.7.pw.toml b/mods/TerraBlender-fabric-1.20.1-3.0.1.7.pw.toml new file mode 100644 index 0000000..737816f --- /dev/null +++ b/mods/TerraBlender-fabric-1.20.1-3.0.1.7.pw.toml @@ -0,0 +1,17 @@ +name = "TerraBlender-fabric-1.20.1-3.0.1.7" +filename = "TerraBlender-fabric-1.20.1-3.0.1.7.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/kkmrDlKT/versions/FZV63yhg/TerraBlender-fabric-1.20.1-3.0.1.7.jar" +hash = "9ce4ae5f64661b2ab52e2a62636bc0fcd023bb304e84b8e1dbef9461a1c6ea1fee187d8afc54618743c9e6155fb64e926a326e3fcf33a566f31c82214810e69e" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "kkmrDlKT" +version = "FZV63yhg" diff --git a/mods/Terralith_1.20.x_v2.5.4.pw.toml b/mods/Terralith_1.20.x_v2.5.4.pw.toml new file mode 100644 index 0000000..6fd99fb --- /dev/null +++ b/mods/Terralith_1.20.x_v2.5.4.pw.toml @@ -0,0 +1,17 @@ +name = "Terralith_1.20.x_v2.5.4" +filename = "Terralith_1.20.x_v2.5.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/8oi3bsk5/versions/WeYhEb5d/Terralith_1.20.x_v2.5.4.jar" +hash = "885e171d8b34aae7e142f082d0364285ec5a8e8342f11c60d341f7a94083d5a42c4e30612fe4f9f64d57b484396a3dff3a224e2a2497d4ced8d22f2ad6cd561d" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "8oi3bsk5" +version = "WeYhEb5d" diff --git a/mods/The_Graveyard_3.1_(FABRIC)_for_1.20.1.pw.toml b/mods/The_Graveyard_3.1_(FABRIC)_for_1.20.1.pw.toml new file mode 100644 index 0000000..38449e2 --- /dev/null +++ b/mods/The_Graveyard_3.1_(FABRIC)_for_1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "The_Graveyard_3.1_(FABRIC)_for_1.20.1" +filename = "The_Graveyard_3.1_(FABRIC)_for_1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/QivVPB8W/versions/Hpn2GMza/The_Graveyard_3.1_%28FABRIC%29_for_1.20.1.jar" +hash = "d5c6d94109ec84910fa394116100203d0865c1b3856a269521dfbf5dd46ea55556af3446f509f7aef97d6e15636853b92258a98d695f275032177922496221e4" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "QivVPB8W" +version = "Hpn2GMza" diff --git a/mods/Tierify-FABRIC-1.20.1-1.1.0.jar b/mods/Tierify-FABRIC-1.20.1-1.1.0.jar new file mode 100644 index 0000000..99fbf22 Binary files /dev/null and b/mods/Tierify-FABRIC-1.20.1-1.1.0.jar differ diff --git a/mods/VR-Combat_v1.0.2_Fabric_ALL.pw.toml b/mods/VR-Combat_v1.0.2_Fabric_ALL.pw.toml new file mode 100644 index 0000000..e9e299f --- /dev/null +++ b/mods/VR-Combat_v1.0.2_Fabric_ALL.pw.toml @@ -0,0 +1,17 @@ +name = "VR-Combat_v1.0.2_Fabric_ALL" +filename = "VR-Combat_v1.0.2_Fabric_ALL.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/XpGUobxt/versions/mW4eHntZ/VR-Combat_v1.0.2_Fabric_ALL.jar" +hash = "0c09aae55dcc80ac065d5b8e3bcacc5e2c24eb454be4305915d1294a660019fd28bb36e89c77395db2fbf8d9e6b83377d21827ca6c5cd1c9a6a048bc20f77941" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "XpGUobxt" +version = "mW4eHntZ" diff --git a/mods/VillagersPlus_3.1_(FABRIC)_for_1.20.1.pw.toml b/mods/VillagersPlus_3.1_(FABRIC)_for_1.20.1.pw.toml new file mode 100644 index 0000000..c27db73 --- /dev/null +++ b/mods/VillagersPlus_3.1_(FABRIC)_for_1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "VillagersPlus_3.1_(FABRIC)_for_1.20.1" +filename = "VillagersPlus_3.1_(FABRIC)_for_1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/oHGMwNDR/versions/Tl5Kx50I/VillagersPlus_3.1_%28FABRIC%29_for_1.20.1.jar" +hash = "22f52954d5a4dd954bb675903fd4e51375157c10f79754dcf10ec6e8f1020f751d87e2aad1bf0a6f55400c8a58c42e27f497e20c822baef0fcca98c44113babb" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "oHGMwNDR" +version = "Tl5Kx50I" diff --git a/mods/Wabi-Sabi-Structures-2.0.0-1.20-Fabric.pw.toml b/mods/Wabi-Sabi-Structures-2.0.0-1.20-Fabric.pw.toml new file mode 100644 index 0000000..abe52d6 --- /dev/null +++ b/mods/Wabi-Sabi-Structures-2.0.0-1.20-Fabric.pw.toml @@ -0,0 +1,17 @@ +name = "Wabi-Sabi-Structures-2.0.0-1.20-Fabric" +filename = "Wabi-Sabi-Structures-2.0.0-1.20-Fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Vr3O6THr/versions/PSSSimgY/Wabi-Sabi-Structures-2.0.0-1.20-Fabric.jar" +hash = "cc711983ea54a7ecf0aae27bcbbfe74987340e554f04863cdacbbbd7af4ef60b6ee06c6068d38833cac991e3f334bb5987ba7974f192469dba85539aa7c26408" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "Vr3O6THr" +version = "PSSSimgY" diff --git a/mods/XaerosWorldMap_1.38.8_Fabric_1.20.pw.toml b/mods/XaerosWorldMap_1.38.8_Fabric_1.20.pw.toml new file mode 100644 index 0000000..92d2b36 --- /dev/null +++ b/mods/XaerosWorldMap_1.38.8_Fabric_1.20.pw.toml @@ -0,0 +1,17 @@ +name = "XaerosWorldMap_1.38.8_Fabric_1.20" +filename = "XaerosWorldMap_1.38.8_Fabric_1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/NcUtCpym/versions/szULGs3b/XaerosWorldMap_1.38.8_Fabric_1.20.jar" +hash = "340b1acf742b1d02ff0cb492e06d68c1fe00ccf2fd3017d0c00e4f16b77666537165a37fdb8096e6c7822b833943cf8d8a82e38228019fc39fceba37a750c0e9" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "NcUtCpym" +version = "szULGs3b" diff --git a/mods/Xaeros_Minimap_24.2.0_Fabric_1.20.pw.toml b/mods/Xaeros_Minimap_24.2.0_Fabric_1.20.pw.toml new file mode 100644 index 0000000..3905a67 --- /dev/null +++ b/mods/Xaeros_Minimap_24.2.0_Fabric_1.20.pw.toml @@ -0,0 +1,17 @@ +name = "Xaeros_Minimap_24.2.0_Fabric_1.20" +filename = "Xaeros_Minimap_24.2.0_Fabric_1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/1bokaNcj/versions/WQEX096d/Xaeros_Minimap_24.2.0_Fabric_1.20.jar" +hash = "616471a75e4d564e28d5a85d022c78109409e10f0660770b06e2b39aaa3f80ad95bf8f665b2596008e9f9e2d539cb9ee89a298428d38005efd5e5046fc2b527e" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "1bokaNcj" +version = "WQEX096d" diff --git a/mods/YetAnotherConfigLib-3.5.0+1.20.1-fabric.pw.toml b/mods/YetAnotherConfigLib-3.5.0+1.20.1-fabric.pw.toml new file mode 100644 index 0000000..da40fa6 --- /dev/null +++ b/mods/YetAnotherConfigLib-3.5.0+1.20.1-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "YetAnotherConfigLib-3.5.0+1.20.1-fabric" +filename = "YetAnotherConfigLib-3.5.0+1.20.1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/1eAoo2KR/versions/gQuF6HNa/YetAnotherConfigLib-3.5.0%2B1.20.1-fabric.jar" +hash = "a7f86b8385948589e8951c02e91a57931408e8af2b1bfad9021da26fd4d162682ea39cd50915e4049a74331221de462f0dd76a730e758f2c6c005ff73d87554a" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "1eAoo2KR" +version = "gQuF6HNa" diff --git a/mods/YungsApi-1.20-Fabric-4.0.5.pw.toml b/mods/YungsApi-1.20-Fabric-4.0.5.pw.toml new file mode 100644 index 0000000..3c313dc --- /dev/null +++ b/mods/YungsApi-1.20-Fabric-4.0.5.pw.toml @@ -0,0 +1,17 @@ +name = "YungsApi-1.20-Fabric-4.0.5" +filename = "YungsApi-1.20-Fabric-4.0.5.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Ua7DFN59/versions/zPT7QfIk/YungsApi-1.20-Fabric-4.0.5.jar" +hash = "69594e17b98a440d6015b8b5131594d9104f05cfb512d2b99c6892f0e89d052e2fa30bb33e35010bc1e86211bbfce1c210488fa77500e2497d1c8ee45239cb01" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "Ua7DFN59" +version = "zPT7QfIk" diff --git a/mods/YungsBetterDesertTemples-1.20-Fabric-3.0.3.pw.toml b/mods/YungsBetterDesertTemples-1.20-Fabric-3.0.3.pw.toml new file mode 100644 index 0000000..d144a95 --- /dev/null +++ b/mods/YungsBetterDesertTemples-1.20-Fabric-3.0.3.pw.toml @@ -0,0 +1,17 @@ +name = "YungsBetterDesertTemples-1.20-Fabric-3.0.3" +filename = "YungsBetterDesertTemples-1.20-Fabric-3.0.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/XNlO7sBv/versions/1Z9HNWpj/YungsBetterDesertTemples-1.20-Fabric-3.0.3.jar" +hash = "29839615e042435b0fdacab2b97524a6689190692a289c25e305dbaec34764f38e70c65cfd77b49ac0dcc549281b61cfe244edc62809082e39db54990ef84cbf" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "XNlO7sBv" +version = "1Z9HNWpj" diff --git a/mods/YungsBetterDungeons-1.20-Fabric-4.0.4.pw.toml b/mods/YungsBetterDungeons-1.20-Fabric-4.0.4.pw.toml new file mode 100644 index 0000000..19335a5 --- /dev/null +++ b/mods/YungsBetterDungeons-1.20-Fabric-4.0.4.pw.toml @@ -0,0 +1,17 @@ +name = "YungsBetterDungeons-1.20-Fabric-4.0.4" +filename = "YungsBetterDungeons-1.20-Fabric-4.0.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/o1C1Dkj5/versions/nidyvq2m/YungsBetterDungeons-1.20-Fabric-4.0.4.jar" +hash = "02ee00641aea2e80806923c1d97a366b82eb6d6e1d749fc8fb4eeddeddea718c08f5a87ba5189427f747801b899abe5a6138a260c7e7f949e5e69b4065ac5464" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "o1C1Dkj5" +version = "nidyvq2m" diff --git a/mods/YungsBetterEndIsland-1.20-Fabric-2.0.6.pw.toml b/mods/YungsBetterEndIsland-1.20-Fabric-2.0.6.pw.toml new file mode 100644 index 0000000..20945ba --- /dev/null +++ b/mods/YungsBetterEndIsland-1.20-Fabric-2.0.6.pw.toml @@ -0,0 +1,17 @@ +name = "YungsBetterEndIsland-1.20-Fabric-2.0.6" +filename = "YungsBetterEndIsland-1.20-Fabric-2.0.6.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/2BwBOmBQ/versions/qJTsmyiE/YungsBetterEndIsland-1.20-Fabric-2.0.6.jar" +hash = "cb63d9cdd69f955ed8044aec6f03aedbf76fdb53fd97826b254b68e3559941df301b714260505d165c58c276aa7ea7c11c2fada7509cb731f10b1815d5633b87" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "2BwBOmBQ" +version = "qJTsmyiE" diff --git a/mods/YungsBetterJungleTemples-1.20-Fabric-2.0.5.pw.toml b/mods/YungsBetterJungleTemples-1.20-Fabric-2.0.5.pw.toml new file mode 100644 index 0000000..e9c7c67 --- /dev/null +++ b/mods/YungsBetterJungleTemples-1.20-Fabric-2.0.5.pw.toml @@ -0,0 +1,17 @@ +name = "YungsBetterJungleTemples-1.20-Fabric-2.0.5" +filename = "YungsBetterJungleTemples-1.20-Fabric-2.0.5.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/z9Ve58Ih/versions/6LPrzuB0/YungsBetterJungleTemples-1.20-Fabric-2.0.5.jar" +hash = "ea08ade714376f48cabdddd2e4b7376fc5cc5947e3911583ba4e182ab22c1335c884043441725cde21fb6e84402d17c43f509ade339d46a1a1db40f0e77ee81a" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "z9Ve58Ih" +version = "6LPrzuB0" diff --git a/mods/YungsBetterMineshafts-1.20-Fabric-4.0.4.pw.toml b/mods/YungsBetterMineshafts-1.20-Fabric-4.0.4.pw.toml new file mode 100644 index 0000000..d94a0bc --- /dev/null +++ b/mods/YungsBetterMineshafts-1.20-Fabric-4.0.4.pw.toml @@ -0,0 +1,17 @@ +name = "YungsBetterMineshafts-1.20-Fabric-4.0.4" +filename = "YungsBetterMineshafts-1.20-Fabric-4.0.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/HjmxVlSr/versions/qLnQnqXS/YungsBetterMineshafts-1.20-Fabric-4.0.4.jar" +hash = "82d6e361ef403471beaaf2fa86964af541df167da56f53b820e5abfac693f63dd5d6c0aafbc9e9baa947b42a57c79f069ed6ede55e680a2523d2ca7f2e538b13" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "HjmxVlSr" +version = "qLnQnqXS" diff --git a/mods/YungsBetterNetherFortresses-1.20-Fabric-2.0.6.pw.toml b/mods/YungsBetterNetherFortresses-1.20-Fabric-2.0.6.pw.toml new file mode 100644 index 0000000..f7ae7b6 --- /dev/null +++ b/mods/YungsBetterNetherFortresses-1.20-Fabric-2.0.6.pw.toml @@ -0,0 +1,17 @@ +name = "YungsBetterNetherFortresses-1.20-Fabric-2.0.6" +filename = "YungsBetterNetherFortresses-1.20-Fabric-2.0.6.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Z2mXHnxP/versions/FL88RLRu/YungsBetterNetherFortresses-1.20-Fabric-2.0.6.jar" +hash = "a752f0dea20fa86e6d3a4f87d180af706b2ad5e3d434185aaa624692fc55329a2e2e410e67f843ec982e7b90ae63565b4aed43adbee6c50ded403ef50d91d7fd" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "Z2mXHnxP" +version = "FL88RLRu" diff --git a/mods/YungsBetterOceanMonuments-1.20-Fabric-3.0.4.pw.toml b/mods/YungsBetterOceanMonuments-1.20-Fabric-3.0.4.pw.toml new file mode 100644 index 0000000..3fb9ebc --- /dev/null +++ b/mods/YungsBetterOceanMonuments-1.20-Fabric-3.0.4.pw.toml @@ -0,0 +1,17 @@ +name = "YungsBetterOceanMonuments-1.20-Fabric-3.0.4" +filename = "YungsBetterOceanMonuments-1.20-Fabric-3.0.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/3dT9sgt4/versions/4c00pjbt/YungsBetterOceanMonuments-1.20-Fabric-3.0.4.jar" +hash = "b050f94b70628f9cb64afe1d184b3fd5eee4a7d556ff81b05dd90e954484c415b24b235a8471085cbba2e28a1123e49de9a16e6e7bc52da585db81762562f186" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "3dT9sgt4" +version = "4c00pjbt" diff --git a/mods/YungsBetterStrongholds-1.20-Fabric-4.0.3.pw.toml b/mods/YungsBetterStrongholds-1.20-Fabric-4.0.3.pw.toml new file mode 100644 index 0000000..9e16124 --- /dev/null +++ b/mods/YungsBetterStrongholds-1.20-Fabric-4.0.3.pw.toml @@ -0,0 +1,17 @@ +name = "YungsBetterStrongholds-1.20-Fabric-4.0.3" +filename = "YungsBetterStrongholds-1.20-Fabric-4.0.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/kidLKymU/versions/yV6hn0bB/YungsBetterStrongholds-1.20-Fabric-4.0.3.jar" +hash = "e70c8daa91e88d8af97e99201264c9646c82a8cf1966b87ca1e53b591e7f1ed3cee2f8875dbe88f9b58e2a7d151fded34896bb4bd23f33f2bfef4c590fbba850" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "kidLKymU" +version = "yV6hn0bB" diff --git a/mods/YungsBetterWitchHuts-1.20-Fabric-3.0.3.pw.toml b/mods/YungsBetterWitchHuts-1.20-Fabric-3.0.3.pw.toml new file mode 100644 index 0000000..52d8c30 --- /dev/null +++ b/mods/YungsBetterWitchHuts-1.20-Fabric-3.0.3.pw.toml @@ -0,0 +1,17 @@ +name = "YungsBetterWitchHuts-1.20-Fabric-3.0.3" +filename = "YungsBetterWitchHuts-1.20-Fabric-3.0.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/t5FRdP87/versions/lYpHN3iF/YungsBetterWitchHuts-1.20-Fabric-3.0.3.jar" +hash = "4182c4b580ac0446968d28561088807a5fc96c4ad792401bf918b2e693f7eb343237f2887d63121469af8a120c4ccc8c84d7add731ea1a45cb429f49092bd6ac" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "t5FRdP87" +version = "lYpHN3iF" diff --git a/mods/YungsBridges-1.20-Fabric-4.0.3.pw.toml b/mods/YungsBridges-1.20-Fabric-4.0.3.pw.toml new file mode 100644 index 0000000..4d7156c --- /dev/null +++ b/mods/YungsBridges-1.20-Fabric-4.0.3.pw.toml @@ -0,0 +1,17 @@ +name = "YungsBridges-1.20-Fabric-4.0.3" +filename = "YungsBridges-1.20-Fabric-4.0.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Ht4BfYp6/versions/hvfjXu8d/YungsBridges-1.20-Fabric-4.0.3.jar" +hash = "3cdd923781fe6446466670bce8132bbc0a1ee27ae9a76bb25bf0010c0e79c821ce1dc606405e3ffa00f22d92629aa1cd7cc680a17c98dfcf338166372b85dab1" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "Ht4BfYp6" +version = "hvfjXu8d" diff --git a/mods/YungsExtras-1.20-Fabric-4.0.3.pw.toml b/mods/YungsExtras-1.20-Fabric-4.0.3.pw.toml new file mode 100644 index 0000000..1f13b21 --- /dev/null +++ b/mods/YungsExtras-1.20-Fabric-4.0.3.pw.toml @@ -0,0 +1,17 @@ +name = "YungsExtras-1.20-Fabric-4.0.3" +filename = "YungsExtras-1.20-Fabric-4.0.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ZYgyPyfq/versions/pfVTUz1L/YungsExtras-1.20-Fabric-4.0.3.jar" +hash = "9fb06e136b12548ca9cb82d5d1035d760b74c7acded4b0d01ea29fb1e47c4666e1f289e6ce3e0c77510bc4bd10a64946e17633f99f60b5424a535d8d88025412" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "ZYgyPyfq" +version = "pfVTUz1L" diff --git a/mods/YungsMenuTweaks-1.20.1-Fabric-1.0.2.pw.toml b/mods/YungsMenuTweaks-1.20.1-Fabric-1.0.2.pw.toml new file mode 100644 index 0000000..e2b5ded --- /dev/null +++ b/mods/YungsMenuTweaks-1.20.1-Fabric-1.0.2.pw.toml @@ -0,0 +1,17 @@ +name = "YungsMenuTweaks-1.20.1-Fabric-1.0.2" +filename = "YungsMenuTweaks-1.20.1-Fabric-1.0.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Hcy2DFKF/versions/QRV0K267/YungsMenuTweaks-1.20.1-Fabric-1.0.2.jar" +hash = "dabd072d735b802a1e62f62e8ce9b3276c931a16f6d4e160f77f31d511ebc368fa9a3580a70df8438739f86ad606e1d4e16b687b0953e5917bf9814ce5a8c930" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "Hcy2DFKF" +version = "QRV0K267" diff --git a/mods/[1.20.1-fabric]-Epic-Knights-9.8.pw.toml b/mods/[1.20.1-fabric]-Epic-Knights-9.8.pw.toml new file mode 100644 index 0000000..52c92e0 --- /dev/null +++ b/mods/[1.20.1-fabric]-Epic-Knights-9.8.pw.toml @@ -0,0 +1,17 @@ +name = "[1.20.1-fabric]-Epic-Knights-9.8" +filename = "[1.20.1-fabric]-Epic-Knights-9.8.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/L6jvzao4/versions/4h7fF1aA/%5B1.20.1-fabric%5D-Epic-Knights-9.8.jar" +hash = "e3aef0eb984024f10db63444c29be35a0c9bb43b1973fe67e673ce719abd69000d74cb4f79f469fa51c5518bc54e909ba879d0d7e3cdecbd00568829927cbcc5" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "L6jvzao4" +version = "4h7fF1aA" diff --git a/mods/[Fabric]CTOV-v3.4.6.pw.toml b/mods/[Fabric]CTOV-v3.4.6.pw.toml new file mode 100644 index 0000000..33a8d2f --- /dev/null +++ b/mods/[Fabric]CTOV-v3.4.6.pw.toml @@ -0,0 +1,17 @@ +name = "[Fabric]CTOV-v3.4.6" +filename = "[Fabric]CTOV-v3.4.6.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fgmhI8kH/versions/LKEra9cd/%5BFabric%5DCTOV-v3.4.6.jar" +hash = "604ee4b46788652e2644eff8db9b146c44521adbc7dc8a72f09d9b4c1855b4639ef535dbc698fe16befea06fb710a10865e716806a9f6d710d0a8d00530d1524" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "fgmhI8kH" +version = "LKEra9cd" diff --git a/mods/adventurez-1.4.20.pw.toml b/mods/adventurez-1.4.20.pw.toml new file mode 100644 index 0000000..44201a5 --- /dev/null +++ b/mods/adventurez-1.4.20.pw.toml @@ -0,0 +1,17 @@ +name = "adventurez-1.4.20" +filename = "adventurez-1.4.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/defK2XM3/versions/mBYmRou0/adventurez-1.4.20.jar" +hash = "9d39505877fba9f1655ec5655715f5a579acabc525c0a25832942389ad5ecb3807e6ae59e43aca57e9897cf65a82f157d070df20a429df6f9f6e37b6459ba1c1" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "defK2XM3" +version = "mBYmRou0" diff --git a/mods/almostunified-fabric-1.20.1-0.9.4.pw.toml b/mods/almostunified-fabric-1.20.1-0.9.4.pw.toml new file mode 100644 index 0000000..00e401a --- /dev/null +++ b/mods/almostunified-fabric-1.20.1-0.9.4.pw.toml @@ -0,0 +1,17 @@ +name = "almostunified-fabric-1.20.1-0.9.4" +filename = "almostunified-fabric-1.20.1-0.9.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/sdaSaQEz/versions/iVBf0ICr/almostunified-fabric-1.20.1-0.9.4.jar" +hash = "ec47335d9d8b98c107a2b4cb4bada845669728f78c65df2ef2ee5e06d9ac866d276d09892896c216e30eb028a6fdd0a6cc92a8741eee1c14fa3d0ca24444cbdb" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "sdaSaQEz" +version = "iVBf0ICr" diff --git a/mods/archers-1.2.5+1.20.1.pw.toml b/mods/archers-1.2.5+1.20.1.pw.toml new file mode 100644 index 0000000..5d3cc82 --- /dev/null +++ b/mods/archers-1.2.5+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "archers-1.2.5+1.20.1" +filename = "archers-1.2.5+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/QgooUXAJ/versions/SOJ4DVD4/archers-1.2.5%2B1.20.1.jar" +hash = "dde9c908c61a247ddf6505d1b7338b864428c743dfde582db7f26e0701eb197818ce0304a20613380c17328676595ef1dbecf41390920758f0a9eb94fe6549f2" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "QgooUXAJ" +version = "SOJ4DVD4" diff --git a/mods/architectury-9.2.14-fabric.pw.toml b/mods/architectury-9.2.14-fabric.pw.toml new file mode 100644 index 0000000..30e5bcb --- /dev/null +++ b/mods/architectury-9.2.14-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "architectury-9.2.14-fabric" +filename = "architectury-9.2.14-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/WbL7MStR/architectury-9.2.14-fabric.jar" +hash = "4cb8f009fd522d68a795d2cf5a657bdbe248b32ba7c33cd968f5ab521e9d60e198f8a3f6c50e7d960a2b8f50375116be0db1fd44b5710ea758697d8ea70d15de" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "lhGA9TYQ" +version = "WbL7MStR" diff --git a/mods/archon-0.7.0.pw.toml b/mods/archon-0.7.0.pw.toml new file mode 100644 index 0000000..9af75ee --- /dev/null +++ b/mods/archon-0.7.0.pw.toml @@ -0,0 +1,17 @@ +name = "archon-0.7.0" +filename = "archon-0.7.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/td9zQQBq/versions/lZt13Wur/archon-0.7.0.jar" +hash = "f32d5f09550be2b7ffbff3131844d92f9846a7483e0e87f5ce2e25ba0851f8bf9d845e4ea505103cddb313a166ccd5d33457053cee79198d5124514c93541a7f" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "td9zQQBq" +version = "lZt13Wur" diff --git a/mods/artifacts-fabric-9.5.12.pw.toml b/mods/artifacts-fabric-9.5.12.pw.toml new file mode 100644 index 0000000..4e2dfdd --- /dev/null +++ b/mods/artifacts-fabric-9.5.12.pw.toml @@ -0,0 +1,17 @@ +name = "artifacts-fabric-9.5.12" +filename = "artifacts-fabric-9.5.12.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/P0Mu4wcQ/versions/jcPe37QH/artifacts-fabric-9.5.12.jar" +hash = "cfb31e73d13c28da7dd270b0dfb0ff9814e17c357976d5e33a05b8e74380c92dd62fdfc4d51d8158ece03c1798b86f719e0b776d7394af071206e4db469f6465" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "P0Mu4wcQ" +version = "jcPe37QH" diff --git a/mods/autotag-2.0.2+1.20.pw.toml b/mods/autotag-2.0.2+1.20.pw.toml new file mode 100644 index 0000000..ab13aec --- /dev/null +++ b/mods/autotag-2.0.2+1.20.pw.toml @@ -0,0 +1,17 @@ +name = "autotag-2.0.2+1.20" +filename = "autotag-2.0.2+1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/8FdYDHF5/versions/ocD9XA8D/autotag-2.0.2%2B1.20.jar" +hash = "86b27da622ca4d5003e2c78c9da91468fde31e6d57af92e3f346403935818b6b1f02f16114ff11fc635a2f6b7511003c37141fb947d9d8537805b7deff2bbd5d" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "8FdYDHF5" +version = "ocD9XA8D" diff --git a/mods/azurelib-fabric-1.20.1-2.0.30.pw.toml b/mods/azurelib-fabric-1.20.1-2.0.30.pw.toml new file mode 100644 index 0000000..484faad --- /dev/null +++ b/mods/azurelib-fabric-1.20.1-2.0.30.pw.toml @@ -0,0 +1,17 @@ +name = "azurelib-fabric-1.20.1-2.0.30" +filename = "azurelib-fabric-1.20.1-2.0.30.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/7zlUOZvb/versions/Nj3DO9WH/azurelib-fabric-1.20.1-2.0.30.jar" +hash = "770e57db440c2c4e1d279c9a4fce17dcd0c1eb662dd17c42c356a8002d64bc300501bd72d443d1b7af3bb50d21a43382684e1fd795eb5f09047a4679d1deae97" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "7zlUOZvb" +version = "Nj3DO9WH" diff --git a/mods/azurelibarmor-fabric-1.20.1-2.0.6.pw.toml b/mods/azurelibarmor-fabric-1.20.1-2.0.6.pw.toml new file mode 100644 index 0000000..9326fae --- /dev/null +++ b/mods/azurelibarmor-fabric-1.20.1-2.0.6.pw.toml @@ -0,0 +1,17 @@ +name = "azurelibarmor-fabric-1.20.1-2.0.6" +filename = "azurelibarmor-fabric-1.20.1-2.0.6.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/pduQXSbl/versions/DLqxipmE/azurelibarmor-fabric-1.20.1-2.0.6.jar" +hash = "e237153db2b0262daa9633e2aac7a7a983855964deefaf4557dbeb7070890ce2b09914e4bd49b6546717947c8020c06c6f293642ae766200322fd0a518bd79cf" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "pduQXSbl" +version = "DLqxipmE" diff --git a/mods/balm-fabric-1.20.1-7.3.6.pw.toml b/mods/balm-fabric-1.20.1-7.3.6.pw.toml new file mode 100644 index 0000000..053db58 --- /dev/null +++ b/mods/balm-fabric-1.20.1-7.3.6.pw.toml @@ -0,0 +1,17 @@ +name = "balm-fabric-1.20.1-7.3.6" +filename = "balm-fabric-1.20.1-7.3.6.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/MBAkmtvl/versions/YGxMJ2Hv/balm-fabric-1.20.1-7.3.6.jar" +hash = "4edabaa585d912cc3d5239080ed11903cd46b671212d501a15eda834a94a899f46ea0d4506fd2ef6c2e225511eb8244a2774ba24f4d310952f9e99c2c415c898" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "MBAkmtvl" +version = "YGxMJ2Hv" diff --git a/mods/basicweapons-1.2.3+1.20.1.pw.toml b/mods/basicweapons-1.2.3+1.20.1.pw.toml new file mode 100644 index 0000000..65d0a2e --- /dev/null +++ b/mods/basicweapons-1.2.3+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "basicweapons-1.2.3+1.20.1" +filename = "basicweapons-1.2.3+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/sc2Pektv/versions/h0WwUNRU/basicweapons-1.2.3%2B1.20.1.jar" +hash = "0335668b26e0b20ca135cbcc75c134d7bdcdabe56ea11496f32400911ec06ff711146fd53b8e79620c9bd2380445255d9e0dfd0968078f401c75a91c4fcf0c8d" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "sc2Pektv" +version = "h0WwUNRU" diff --git a/mods/bclib-3.0.14.pw.toml b/mods/bclib-3.0.14.pw.toml new file mode 100644 index 0000000..858311e --- /dev/null +++ b/mods/bclib-3.0.14.pw.toml @@ -0,0 +1,17 @@ +name = "bclib-3.0.14" +filename = "bclib-3.0.14.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/BgNRHReB/versions/TPC86Pyz/bclib-3.0.14.jar" +hash = "bc35cc37a221fbc6f7fca293e72aad0877d8c9d07067ff0b4c8f51dcddbb82ac7cbbb86d1550eef7690bcd1ecf09625f0389f39ae9a252eec5d8511ba7deec4a" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "BgNRHReB" +version = "TPC86Pyz" diff --git a/mods/beekeeperhut-fabric-mc1.20.1-2.0.1.pw.toml b/mods/beekeeperhut-fabric-mc1.20.1-2.0.1.pw.toml new file mode 100644 index 0000000..46cc7e1 --- /dev/null +++ b/mods/beekeeperhut-fabric-mc1.20.1-2.0.1.pw.toml @@ -0,0 +1,17 @@ +name = "beekeeperhut-fabric-mc1.20.1-2.0.1" +filename = "beekeeperhut-fabric-mc1.20.1-2.0.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Kt4RVKEd/versions/Iya1d63p/beekeeperhut-fabric-mc1.20.1-2.0.1.jar" +hash = "4ed581c69bf34f06b89bbe88bf86322cfbf4399a205adfac4775e0c80a8641fdfd090e180a9acc98577e9a2e60be2cb41ebbac640359bdb6f4a73db535b3773b" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "Kt4RVKEd" +version = "Iya1d63p" diff --git a/mods/better-end-4.0.11.pw.toml b/mods/better-end-4.0.11.pw.toml new file mode 100644 index 0000000..0fc4f53 --- /dev/null +++ b/mods/better-end-4.0.11.pw.toml @@ -0,0 +1,17 @@ +name = "better-end-4.0.11" +filename = "better-end-4.0.11.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/gc8OEnCC/versions/7QwyTILr/better-end-4.0.11.jar" +hash = "5faae5cb3d8759837ec341c605dd9c8b6b32a908e7e1f1248b3b2567c5f9969079df33694cdfb6c743a732bfc9d5824843a93edec07f09e68f8b408e355d15e7" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "gc8OEnCC" +version = "7QwyTILr" diff --git a/mods/better-nether-9.0.10.pw.toml b/mods/better-nether-9.0.10.pw.toml new file mode 100644 index 0000000..1828101 --- /dev/null +++ b/mods/better-nether-9.0.10.pw.toml @@ -0,0 +1,17 @@ +name = "better-nether-9.0.10" +filename = "better-nether-9.0.10.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/MpzVLzy5/versions/IG7kgtJH/better-nether-9.0.10.jar" +hash = "0ef96b8409904c0ce1b9a875260f252615d7b46704082cfd10ffee88d2d506984ad0c31a91e5cb3392f454bc646b7676c392ac94d78474f156aa519f9501f3d0" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "MpzVLzy5" +version = "IG7kgtJH" diff --git a/mods/betterarcheology-1.1.9-1.20.1.pw.toml b/mods/betterarcheology-1.1.9-1.20.1.pw.toml new file mode 100644 index 0000000..ed46589 --- /dev/null +++ b/mods/betterarcheology-1.1.9-1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "betterarcheology-1.1.9-1.20.1" +filename = "betterarcheology-1.1.9-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/zCh7omyG/versions/x5DacI7P/betterarcheology-1.1.9-1.20.1.jar" +hash = "b90f166d0a9e40f726c2269dfd151c9849b9429fcb9f1db3999683441c105d72e8a47fb3fd690bc8e2acb7accb0c5f3029df97947ba557164bd394e8fbaf7b10" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "zCh7omyG" +version = "x5DacI7P" diff --git a/mods/betterchunkloading-fabric-1.20.1-4.3.jar b/mods/betterchunkloading-fabric-1.20.1-4.3.jar new file mode 100644 index 0000000..1e93c70 Binary files /dev/null and b/mods/betterchunkloading-fabric-1.20.1-4.3.jar differ diff --git a/mods/bettercombat-fabric-1.8.5+1.20.1.pw.toml b/mods/bettercombat-fabric-1.8.5+1.20.1.pw.toml new file mode 100644 index 0000000..9bc8a95 --- /dev/null +++ b/mods/bettercombat-fabric-1.8.5+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "bettercombat-fabric-1.8.5+1.20.1" +filename = "bettercombat-fabric-1.8.5+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/5sy6g3kz/versions/jhqZUDtT/bettercombat-fabric-1.8.5%2B1.20.1.jar" +hash = "cf74c202aa991ee1e62ed8189c112e97ae4e87fccf15f793af7943e40268befb3d7f2ec961e905920353211688a56a4d006df03e3e510e58fd5ace02522cbf43" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "5sy6g3kz" +version = "jhqZUDtT" diff --git a/mods/betterfpsdist-fabric-1.20.1-4.3.jar b/mods/betterfpsdist-fabric-1.20.1-4.3.jar new file mode 100644 index 0000000..92545c9 Binary files /dev/null and b/mods/betterfpsdist-fabric-1.20.1-4.3.jar differ diff --git a/mods/bingus-1.20.1-fabric.pw.toml b/mods/bingus-1.20.1-fabric.pw.toml new file mode 100644 index 0000000..0e9938d --- /dev/null +++ b/mods/bingus-1.20.1-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "bingus-1.20.1-fabric" +filename = "bingus-1.20.1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/VdEsgz29/versions/50PbwXLS/bingus-1.20.1-fabric.jar" +hash = "7494ecd1a806e61c55ddc8d2b10dca19597e839f7e8aaa77d1bf5e8e29c991740aa3dd361cf861e0f9c1cae31fef8f5eef1ccabb6e97e03b340ddb64db64a019" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "VdEsgz29" +version = "50PbwXLS" diff --git a/mods/cardinal-components-api-5.2.2.pw.toml b/mods/cardinal-components-api-5.2.2.pw.toml new file mode 100644 index 0000000..30461ad --- /dev/null +++ b/mods/cardinal-components-api-5.2.2.pw.toml @@ -0,0 +1,17 @@ +name = "cardinal-components-api-5.2.2" +filename = "cardinal-components-api-5.2.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/K01OU20C/versions/qW85eawp/cardinal-components-api-5.2.2.jar" +hash = "edb9319211501170deaa29c7752e34910bd578d20ec3724547e6eab84c2bf2a974e3443d759aa24a7db718b1bda673071e8c2c71dbda0ce2f9584f97f09838bc" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "K01OU20C" +version = "qW85eawp" diff --git a/mods/cavedweller-1.3.0.pw.toml b/mods/cavedweller-1.3.0.pw.toml new file mode 100644 index 0000000..b3156c2 --- /dev/null +++ b/mods/cavedweller-1.3.0.pw.toml @@ -0,0 +1,17 @@ +name = "cavedweller-1.3.0" +filename = "cavedweller-1.3.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/cChd25Tw/versions/qIrI7qcp/cavedweller-1.3.0.jar" +hash = "495b60640f95e76811ede305534c082d3a0faafa4d3ebc005d39e36341f2b457ca05af3b063604ba6ae93f096dee3e9f2fde6d398d7bd739acf6d870d4da7834" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "cChd25Tw" +version = "qIrI7qcp" diff --git a/mods/cloth-config-11.1.118-fabric.pw.toml b/mods/cloth-config-11.1.118-fabric.pw.toml new file mode 100644 index 0000000..0414dbd --- /dev/null +++ b/mods/cloth-config-11.1.118-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "cloth-config-11.1.118-fabric" +filename = "cloth-config-11.1.118-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9s6osm5g/versions/J3FLptsi/cloth-config-11.1.118-fabric.jar" +hash = "848aeaf9c218e39452a2efced1872c2f7275c8fd2504fc2cbd63b159faf4eed96481144b7e1dc4fa27296727f54803907ae2e477e66a803c07a2fd51f831eb07" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "9s6osm5g" +version = "J3FLptsi" diff --git a/mods/collective-1.20.1-7.80.pw.toml b/mods/collective-1.20.1-7.80.pw.toml new file mode 100644 index 0000000..8b8e9c7 --- /dev/null +++ b/mods/collective-1.20.1-7.80.pw.toml @@ -0,0 +1,17 @@ +name = "collective-1.20.1-7.80" +filename = "collective-1.20.1-7.80.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/e0M1UDsY/versions/mLJbbJPj/collective-1.20.1-7.80.jar" +hash = "4a29de4834168e059e5219be12bec869378de1d322069d2426a2709e3ef3c594fd9d8cdab989a26a2d82cead431a3237a7386d36d7f753260e34a56b4f07c82a" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "e0M1UDsY" +version = "mLJbbJPj" diff --git a/mods/combatroll-fabric-1.3.2+1.20.1.pw.toml b/mods/combatroll-fabric-1.3.2+1.20.1.pw.toml new file mode 100644 index 0000000..65f84b1 --- /dev/null +++ b/mods/combatroll-fabric-1.3.2+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "combatroll-fabric-1.3.2+1.20.1" +filename = "combatroll-fabric-1.3.2+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/wGKYL7st/versions/rwRYD8bX/combatroll-fabric-1.3.2%2B1.20.1.jar" +hash = "b399e53b362c5cea4038d6bc4a66285271979c6278d42f150fec798f57a56c58f15b0896e877a83127356f1dfe91f578c56070f798e5dd04f9f9a8c3def86355" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "wGKYL7st" +version = "rwRYD8bX" diff --git a/mods/connectivity-fabric-1.20.1-5.6.jar b/mods/connectivity-fabric-1.20.1-5.6.jar new file mode 100644 index 0000000..dbf0c65 Binary files /dev/null and b/mods/connectivity-fabric-1.20.1-5.6.jar differ diff --git a/mods/convenientdecor-0.4.2.pw.toml b/mods/convenientdecor-0.4.2.pw.toml new file mode 100644 index 0000000..e800b9e --- /dev/null +++ b/mods/convenientdecor-0.4.2.pw.toml @@ -0,0 +1,17 @@ +name = "convenientdecor-0.4.2" +filename = "convenientdecor-0.4.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/gMWAhU1n/versions/N5ZG6AIP/convenientdecor-0.4.2.jar" +hash = "70cb8d3b71bc1116c5a114d5ed642444bfafe2decbd20137f51f8a2a66c6cdfcd9ae80ca9cf18c1b5b354500e96280e988f6336ee46cc80651834e542265e0c0" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "gMWAhU1n" +version = "N5ZG6AIP" diff --git a/mods/creeperoverhaul-3.0.2-fabric.pw.toml b/mods/creeperoverhaul-3.0.2-fabric.pw.toml new file mode 100644 index 0000000..7f1e089 --- /dev/null +++ b/mods/creeperoverhaul-3.0.2-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "creeperoverhaul-3.0.2-fabric" +filename = "creeperoverhaul-3.0.2-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/MI1LWe93/versions/Mw0Hq1SZ/creeperoverhaul-3.0.2-fabric.jar" +hash = "b1bfccc651b4caa95de045aa41d871b2f9da05e9a7a76211a3c9d462673fbf6e359b23a14c99ba27285a31498a77d7620584a7d50cd21bf3e3d4940f06b5e118" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "MI1LWe93" +version = "Mw0Hq1SZ" diff --git a/mods/cristellib-1.1.5-fabric.pw.toml b/mods/cristellib-1.1.5-fabric.pw.toml new file mode 100644 index 0000000..a53e9d5 --- /dev/null +++ b/mods/cristellib-1.1.5-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "cristellib-1.1.5-fabric" +filename = "cristellib-1.1.5-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/cl223EMc/versions/tBnivdbu/cristellib-1.1.5-fabric.jar" +hash = "50ac2ac365932c5ea43a8baa67c2509292ae810fbe15848f202160c0bac3ef5ae648f175ae93436a9226e5b082cec562fab8da17c524bb642360aa859ef52652" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "cl223EMc" +version = "tBnivdbu" diff --git a/mods/cupboard-fabric-1.20.1-2.7.jar b/mods/cupboard-fabric-1.20.1-2.7.jar new file mode 100644 index 0000000..452e31f Binary files /dev/null and b/mods/cupboard-fabric-1.20.1-2.7.jar differ diff --git a/mods/dawn-5.0.0.pw.toml b/mods/dawn-5.0.0.pw.toml new file mode 100644 index 0000000..a3068b7 --- /dev/null +++ b/mods/dawn-5.0.0.pw.toml @@ -0,0 +1,17 @@ +name = "dawn-5.0.0" +filename = "dawn-5.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/meZK2DCX/versions/J6b05anw/dawn-5.0.0.jar" +hash = "1dc8e2c2e5785541f22f4b7c628c6deab4bc5b6c5880824f146e5bdefbb2b15686f3133bd0b015e0ebe33a014676e3c420e2faf06ce864a87b8d0f352aec4ffa" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "meZK2DCX" +version = "J6b05anw" diff --git a/mods/decorative_blocks-fabric-1.20.1-4.1.3.pw.toml b/mods/decorative_blocks-fabric-1.20.1-4.1.3.pw.toml new file mode 100644 index 0000000..d4adba5 --- /dev/null +++ b/mods/decorative_blocks-fabric-1.20.1-4.1.3.pw.toml @@ -0,0 +1,17 @@ +name = "decorative_blocks-fabric-1.20.1-4.1.3" +filename = "decorative_blocks-fabric-1.20.1-4.1.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/t6BIRVZn/versions/FibgWXh0/decorative_blocks-fabric-1.20.1-4.1.3.jar" +hash = "d679847cc78b196a688b0e36cc18352bde9c75f87e8d5421dd0e5311c2aab7418427612f6d54f807725c91c0c5c97fcc3496c5105f56e5e73ef9c136b463dd34" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "t6BIRVZn" +version = "FibgWXh0" diff --git a/mods/deeperdarker-fabric-1.20-1.2.6.pw.toml b/mods/deeperdarker-fabric-1.20-1.2.6.pw.toml new file mode 100644 index 0000000..612bb49 --- /dev/null +++ b/mods/deeperdarker-fabric-1.20-1.2.6.pw.toml @@ -0,0 +1,17 @@ +name = "deeperdarker-fabric-1.20-1.2.6" +filename = "deeperdarker-fabric-1.20-1.2.6.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fnAffV0n/versions/Ze2TE9b0/deeperdarker-fabric-1.20-1.2.6.jar" +hash = "d2f66c0b5de5bc4648a0862afa43605e789b577dff9a9c8c2ba57ee80f5dbefc72b016b682c6574e02184ddc8d99d4194c9c6705f28b9975f62b6096614039f6" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "fnAffV0n" +version = "Ze2TE9b0" diff --git a/mods/dimensionalsyncfixes-fabric-1.20.1-0.0.2.jar b/mods/dimensionalsyncfixes-fabric-1.20.1-0.0.2.jar new file mode 100644 index 0000000..b663a36 Binary files /dev/null and b/mods/dimensionalsyncfixes-fabric-1.20.1-0.0.2.jar differ diff --git a/mods/doubledoors-1.20.1-5.9.pw.toml b/mods/doubledoors-1.20.1-5.9.pw.toml new file mode 100644 index 0000000..51d9ffa --- /dev/null +++ b/mods/doubledoors-1.20.1-5.9.pw.toml @@ -0,0 +1,17 @@ +name = "doubledoors-1.20.1-5.9" +filename = "doubledoors-1.20.1-5.9.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/JrvR9OHr/versions/K8M8C81n/doubledoors-1.20.1-5.9.jar" +hash = "24568f93c71aacd6046998c40f016490b185f62b964b985fce53571932c6db587d404375c72e2c2ea0fceae7ddbdb3b36bd2c0816a372e7c9f850828f1c724ca" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "JrvR9OHr" +version = "K8M8C81n" diff --git a/mods/dungeon_difficulty-2.2.1+1.20.1.pw.toml b/mods/dungeon_difficulty-2.2.1+1.20.1.pw.toml new file mode 100644 index 0000000..3738675 --- /dev/null +++ b/mods/dungeon_difficulty-2.2.1+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "dungeon_difficulty-2.2.1+1.20.1" +filename = "dungeon_difficulty-2.2.1+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ENZmbSFZ/versions/nnllzcQl/dungeon_difficulty-2.2.1%2B1.20.1.jar" +hash = "1dd60539e09d99a3668ce6742ede679e00d655e4feda86cf34c8bca61e58ac21551077c23d01ec33271d365db14e7342929cbafbaf1cf96ac4f6d1f8dc1026cb" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "ENZmbSFZ" +version = "nnllzcQl" diff --git a/mods/dungeons-and-taverns-3.0.3.f.pw.toml b/mods/dungeons-and-taverns-3.0.3.f.pw.toml new file mode 100644 index 0000000..5cb5d4d --- /dev/null +++ b/mods/dungeons-and-taverns-3.0.3.f.pw.toml @@ -0,0 +1,17 @@ +name = "dungeons-and-taverns-3.0.3.f" +filename = "dungeons-and-taverns-3.0.3.f.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/tpehi7ww/versions/d1sY0JqV/dungeons-and-taverns-3.0.3.f.jar" +hash = "73d56095b131f37c01ffde9ff5b495534e2ae0896eeec737e325dbea43644bb440fff5e48088cbf8809b226f1157125658bb68172cd7d4ab0aaf2afa72848146" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "tpehi7ww" +version = "d1sY0JqV" diff --git a/mods/emi-1.1.10+1.20.1+fabric.pw.toml b/mods/emi-1.1.10+1.20.1+fabric.pw.toml new file mode 100644 index 0000000..b9238fb --- /dev/null +++ b/mods/emi-1.1.10+1.20.1+fabric.pw.toml @@ -0,0 +1,17 @@ +name = "emi-1.1.10+1.20.1+fabric" +filename = "emi-1.1.10+1.20.1+fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fRiHVvU7/versions/8KtEM1az/emi-1.1.10%2B1.20.1%2Bfabric.jar" +hash = "affdf42b803cc2311976cb598b44020fb4414ad07015553ef4d84cd2bb6187a9d180618ca7061a576ad5529eda8b718e000a0f05b95f945cd3f27dfb555aeb5c" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "fRiHVvU7" +version = "8KtEM1az" diff --git a/mods/enhancedblockentities-0.9+1.20.pw.toml b/mods/enhancedblockentities-0.9+1.20.pw.toml new file mode 100644 index 0000000..50a0fb4 --- /dev/null +++ b/mods/enhancedblockentities-0.9+1.20.pw.toml @@ -0,0 +1,17 @@ +name = "enhancedblockentities-0.9+1.20" +filename = "enhancedblockentities-0.9+1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/OVuFYfre/versions/i3v1Skck/enhancedblockentities-0.9%2B1.20.jar" +hash = "7e8b402fd25efd396bc7f0f25a663808ae9890accc227850c454dfcdc975657f22afceb15878e781485622434a6f6d60aff2a60264aa4425edd52ebe052a0de5" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "OVuFYfre" +version = "i3v1Skck" diff --git a/mods/entity_model_features_fabric_1.20.1-2.1.3.pw.toml b/mods/entity_model_features_fabric_1.20.1-2.1.3.pw.toml new file mode 100644 index 0000000..e247988 --- /dev/null +++ b/mods/entity_model_features_fabric_1.20.1-2.1.3.pw.toml @@ -0,0 +1,17 @@ +name = "entity_model_features_fabric_1.20.1-2.1.3" +filename = "entity_model_features_fabric_1.20.1-2.1.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/4I1XuqiY/versions/f3RkrLlq/entity_model_features_fabric_1.20.1-2.1.3.jar" +hash = "31820ac89d75c433e9a340c3ee1cc793be4a97a418d9b73a8cc3fcbf6f8e077472e47db2a63092981c80e4200a74f1a21f4c36acf38ecd5b9b8b6036e6b99d5e" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "4I1XuqiY" +version = "f3RkrLlq" diff --git a/mods/entity_texture_features_fabric_1.20.1-6.1.3.pw.toml b/mods/entity_texture_features_fabric_1.20.1-6.1.3.pw.toml new file mode 100644 index 0000000..4e304ba --- /dev/null +++ b/mods/entity_texture_features_fabric_1.20.1-6.1.3.pw.toml @@ -0,0 +1,17 @@ +name = "entity_texture_features_fabric_1.20.1-6.1.3" +filename = "entity_texture_features_fabric_1.20.1-6.1.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/BVzZfTc1/versions/fqFnWIXs/entity_texture_features_fabric_1.20.1-6.1.3.jar" +hash = "bb094e98c1d3192917f66aed12bf3a0e72915ed7f09db0894d148dba34c5c468f3194b8f612a0eef1dd524392b3ba33e775ea9533014c54e1a2a8f832932546b" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "BVzZfTc1" +version = "fqFnWIXs" diff --git a/mods/entityculling-fabric-1.6.6-mc1.20.1.pw.toml b/mods/entityculling-fabric-1.6.6-mc1.20.1.pw.toml new file mode 100644 index 0000000..f013d6a --- /dev/null +++ b/mods/entityculling-fabric-1.6.6-mc1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "entityculling-fabric-1.6.6-mc1.20.1" +filename = "entityculling-fabric-1.6.6-mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/F3RXDl1W/entityculling-fabric-1.6.6-mc1.20.1.jar" +hash = "1e272086c2a63bfaba910d98d1d048629d1f22a953b0caaf7349fd75ec6c80f17219cc67d938c7524d2bade2c0074117091237184f7bf72f30989294f84af66e" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "NNAgCjsB" +version = "F3RXDl1W" diff --git a/mods/epicknightsnmages-0.0.2.pw.toml b/mods/epicknightsnmages-0.0.2.pw.toml new file mode 100644 index 0000000..3e6f9b2 --- /dev/null +++ b/mods/epicknightsnmages-0.0.2.pw.toml @@ -0,0 +1,17 @@ +name = "epicknightsnmages-0.0.2" +filename = "epicknightsnmages-0.0.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/26nL5g7F/versions/hrNxEvik/epicknightsnmages-0.0.2.jar" +hash = "8870ed4bb7a0c3745cd8631d591e1b9dad73b765baa994f4a68dbfb8086bd289891db1934b70b6405f0a51fbcb3926f9c28b8bcc19364a62297272fb3767eae5" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "26nL5g7F" +version = "hrNxEvik" diff --git a/mods/fabric-api-0.92.2+1.20.1.pw.toml b/mods/fabric-api-0.92.2+1.20.1.pw.toml new file mode 100644 index 0000000..f1cc25f --- /dev/null +++ b/mods/fabric-api-0.92.2+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "fabric-api-0.92.2+1.20.1" +filename = "fabric-api-0.92.2+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/P7uGFii0/fabric-api-0.92.2%2B1.20.1.jar" +hash = "a9b461e9e28871002072337adc69e829f5a59c05a39ffe1f6a27df7daff392ac25c8e5a6c01ff340b3eef99cecc42b21c012766a7c87446ca442f9ea1b04aca6" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "P7dR8mSH" +version = "P7uGFii0" diff --git a/mods/fabric-end-remastered-5.2.4.pw.toml b/mods/fabric-end-remastered-5.2.4.pw.toml new file mode 100644 index 0000000..16b2e9c --- /dev/null +++ b/mods/fabric-end-remastered-5.2.4.pw.toml @@ -0,0 +1,17 @@ +name = "fabric-end-remastered-5.2.4" +filename = "fabric-end-remastered-5.2.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ZJTGwAND/versions/4wKvHwVW/fabric-end-remastered-5.2.4.jar" +hash = "7e00e31271ea07328754680c2b81dba36606eb2debb16ce70b75dee5d612f77625cb84c13bd5f9295b34642a46be8b035a3d829e2ed2b819c92f6b4a45097aba" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "ZJTGwAND" +version = "4wKvHwVW" diff --git a/mods/fabric-language-kotlin-1.11.0+kotlin.2.0.0.pw.toml b/mods/fabric-language-kotlin-1.11.0+kotlin.2.0.0.pw.toml new file mode 100644 index 0000000..9e13c13 --- /dev/null +++ b/mods/fabric-language-kotlin-1.11.0+kotlin.2.0.0.pw.toml @@ -0,0 +1,17 @@ +name = "fabric-language-kotlin-1.11.0+kotlin.2.0.0" +filename = "fabric-language-kotlin-1.11.0+kotlin.2.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/afsFajDC/fabric-language-kotlin-1.11.0%2Bkotlin.2.0.0.jar" +hash = "afc292e199869b982f18bbad208fed4a1d95b2f4292e0cc422ee8116d1da1d91132f554ac0608e7c87959d7ede37c20293133c811986dcfc80a8648f29d13028" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "Ha28R6CL" +version = "afsFajDC" diff --git a/mods/fakerlib-0.1.4.pw.toml b/mods/fakerlib-0.1.4.pw.toml new file mode 100644 index 0000000..a48aa61 --- /dev/null +++ b/mods/fakerlib-0.1.4.pw.toml @@ -0,0 +1,17 @@ +name = "fakerlib-0.1.4" +filename = "fakerlib-0.1.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ORX9fPw1/versions/7pRFET6N/fakerlib-0.1.4.jar" +hash = "d6b5b5b0d5cde3cd1ec8eb6ea6c32c48a51b2ece40f240023fff4a620435eb4620fc01e9bde05520ef6f64a9d6eb7b78379ddc1fa9e547086a99173638d3bcd6" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "ORX9fPw1" +version = "7pRFET6N" diff --git a/mods/ferritecore-6.0.1-fabric.pw.toml b/mods/ferritecore-6.0.1-fabric.pw.toml new file mode 100644 index 0000000..1f18fa5 --- /dev/null +++ b/mods/ferritecore-6.0.1-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "ferritecore-6.0.1-fabric" +filename = "ferritecore-6.0.1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/uXXizFIs/versions/unerR5MN/ferritecore-6.0.1-fabric.jar" +hash = "9b7dc686bfa7937815d88c7bbc6908857cd6646b05e7a96ddbdcada328a385bd4ba056532cd1d7df9d2d7f4265fd48bd49ff683f217f6d4e817177b87f6bc457" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "uXXizFIs" +version = "unerR5MN" diff --git a/mods/flowerymooblooms-fabric-mc1.20.1-2.0.2.pw.toml b/mods/flowerymooblooms-fabric-mc1.20.1-2.0.2.pw.toml new file mode 100644 index 0000000..5e43e24 --- /dev/null +++ b/mods/flowerymooblooms-fabric-mc1.20.1-2.0.2.pw.toml @@ -0,0 +1,17 @@ +name = "flowerymooblooms-fabric-mc1.20.1-2.0.2" +filename = "flowerymooblooms-fabric-mc1.20.1-2.0.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ECOSu6pa/versions/D9jX5JX6/flowerymooblooms-fabric-mc1.20.1-2.0.2.jar" +hash = "c5dbbbe19c5395fe40f8ba55b90bc5bdc8f85655222fd1c6d2045fb4fcf7b400ee2990deb8e2f7a3a7b188d722809c02de9e8579afef1d8e62d399b9208da278" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "ECOSu6pa" +version = "D9jX5JX6" diff --git a/mods/friendsandfoes-fabric-mc1.20.1-2.0.15.pw.toml b/mods/friendsandfoes-fabric-mc1.20.1-2.0.15.pw.toml new file mode 100644 index 0000000..fb9850b --- /dev/null +++ b/mods/friendsandfoes-fabric-mc1.20.1-2.0.15.pw.toml @@ -0,0 +1,17 @@ +name = "friendsandfoes-fabric-mc1.20.1-2.0.15" +filename = "friendsandfoes-fabric-mc1.20.1-2.0.15.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/POQ2i9zu/versions/649c8iVS/friendsandfoes-fabric-mc1.20.1-2.0.15.jar" +hash = "97370df4766479d49aea1f3ef488b025151f5d304980d17d35b560d82c239072e31d46a749baa55f637283372724ffa8c927f88b72f881edab532b893a0f2e48" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "POQ2i9zu" +version = "649c8iVS" diff --git a/mods/ftb-essentials-fabric-2001.2.2.jar b/mods/ftb-essentials-fabric-2001.2.2.jar new file mode 100644 index 0000000..ac22319 Binary files /dev/null and b/mods/ftb-essentials-fabric-2001.2.2.jar differ diff --git a/mods/ftb-library-fabric-2001.2.4.jar b/mods/ftb-library-fabric-2001.2.4.jar new file mode 100644 index 0000000..440c127 Binary files /dev/null and b/mods/ftb-library-fabric-2001.2.4.jar differ diff --git a/mods/ftb-quests-fabric-2001.4.8.jar b/mods/ftb-quests-fabric-2001.4.8.jar new file mode 100644 index 0000000..c117496 Binary files /dev/null and b/mods/ftb-quests-fabric-2001.4.8.jar differ diff --git a/mods/ftb-teams-fabric-2001.3.0.jar b/mods/ftb-teams-fabric-2001.3.0.jar new file mode 100644 index 0000000..26f6b0c Binary files /dev/null and b/mods/ftb-teams-fabric-2001.3.0.jar differ diff --git a/mods/fzzy_core-0.5.1+1.20.1.pw.toml b/mods/fzzy_core-0.5.1+1.20.1.pw.toml new file mode 100644 index 0000000..861b9bb --- /dev/null +++ b/mods/fzzy_core-0.5.1+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "fzzy_core-0.5.1+1.20.1" +filename = "fzzy_core-0.5.1+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/LJ5wlCDr/versions/G6CaE33O/fzzy_core-0.5.1%2B1.20.1.jar" +hash = "a5478333e93a7af3267890a775276cd109b3453a31dfa6fededae50af5505e283e207da9ba3e39e10a4f7f55ebda97b069743092e1c9576287eae002397e0f46" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "LJ5wlCDr" +version = "G6CaE33O" diff --git a/mods/gazebo-1.1.1+1.20.1.pw.toml b/mods/gazebo-1.1.1+1.20.1.pw.toml new file mode 100644 index 0000000..445f7ba --- /dev/null +++ b/mods/gazebo-1.1.1+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "gazebo-1.1.1+1.20.1" +filename = "gazebo-1.1.1+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/XIpMGI6r/versions/7OXOb67d/gazebo-1.1.1%2B1.20.1.jar" +hash = "2abfd61675de3c0703528939f87ff8511432b283de2381955b6feac99a486e4d6fd361987264319262a07cea4edea50f485d628a844bb5b5ef38f553c8e6986a" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "XIpMGI6r" +version = "7OXOb67d" diff --git a/mods/gear_core-0.3.8+1.20.1.pw.toml b/mods/gear_core-0.3.8+1.20.1.pw.toml new file mode 100644 index 0000000..f8eb1f2 --- /dev/null +++ b/mods/gear_core-0.3.8+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "gear_core-0.3.8+1.20.1" +filename = "gear_core-0.3.8+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/t7eXC8r7/versions/I4jtbg7D/gear_core-0.3.8%2B1.20.1.jar" +hash = "bb0f51992f42bcc9cd6caa26d1a3c049a4d3df8a2d39a48444b59c468718aafbf4e0accf3d7e1e778b8682d52821ec973d4ec3e509b6363db0d1efbc06db7415" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "t7eXC8r7" +version = "I4jtbg7D" diff --git a/mods/geckolib-fabric-1.20.1-4.4.7.pw.toml b/mods/geckolib-fabric-1.20.1-4.4.7.pw.toml new file mode 100644 index 0000000..7ca5403 --- /dev/null +++ b/mods/geckolib-fabric-1.20.1-4.4.7.pw.toml @@ -0,0 +1,17 @@ +name = "geckolib-fabric-1.20.1-4.4.7" +filename = "geckolib-fabric-1.20.1-4.4.7.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/8BmcQJ2H/versions/BDftClTQ/geckolib-fabric-1.20.1-4.4.7.jar" +hash = "887243bf28d6ba02274ebc23fef889de3beefea6bf483a414eef3795af80a3783994dd317ff275d43ef35f5099d031de8509d6acb2253bf9d92625868c33d60e" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "8BmcQJ2H" +version = "BDftClTQ" diff --git a/mods/gpumemleakfix-fabric-1.20.1-1.8.jar b/mods/gpumemleakfix-fabric-1.20.1-1.8.jar new file mode 100644 index 0000000..91cc77f Binary files /dev/null and b/mods/gpumemleakfix-fabric-1.20.1-1.8.jar differ diff --git a/mods/grapplemod-1.8+1.20(.1).pw.toml b/mods/grapplemod-1.8+1.20(.1).pw.toml new file mode 100644 index 0000000..9690f1e --- /dev/null +++ b/mods/grapplemod-1.8+1.20(.1).pw.toml @@ -0,0 +1,17 @@ +name = "grapplemod-1.8+1.20(.1)" +filename = "grapplemod-1.8+1.20(.1).jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/f4hp6FTb/versions/A6VKCyyT/grapplemod-1.8%2B1.20%28.1%29.jar" +hash = "67c54a25819c6609b8a6f4aa149d7368d065ca70039e7a3f143a801f0bde431d41cb91ebb358c159cb6b31f4e5015ecaf55234275a2709bd3524bae133c41370" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "f4hp6FTb" +version = "A6VKCyyT" diff --git a/mods/guardvillagers-2.0.9-1.20.1.pw.toml b/mods/guardvillagers-2.0.9-1.20.1.pw.toml new file mode 100644 index 0000000..9fadaa4 --- /dev/null +++ b/mods/guardvillagers-2.0.9-1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "guardvillagers-2.0.9-1.20.1" +filename = "guardvillagers-2.0.9-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/59rkB3YY/versions/86pJMC8z/guardvillagers-2.0.9-1.20.1.jar" +hash = "afdb9cac841cb48878b7ff21b9344d047a2f342ed53770ad01d25c0a2b02d33988c14edf1f0e7ca80274cbafb2f0f821571fead16703dfa6e4261c0ba6d8b169" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "59rkB3YY" +version = "86pJMC8z" diff --git a/mods/handcrafted-fabric-1.20.1-3.0.6.pw.toml b/mods/handcrafted-fabric-1.20.1-3.0.6.pw.toml new file mode 100644 index 0000000..e205411 --- /dev/null +++ b/mods/handcrafted-fabric-1.20.1-3.0.6.pw.toml @@ -0,0 +1,17 @@ +name = "handcrafted-fabric-1.20.1-3.0.6" +filename = "handcrafted-fabric-1.20.1-3.0.6.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/pJmCFF0p/versions/NRw0CDAc/handcrafted-fabric-1.20.1-3.0.6.jar" +hash = "92c3b47c635196d0991831ce64e2c47bd9d666ee6213bbba87b8f0214cccbba626a564ad130ec0336e94936568dce462d1ff6ca726a81134518795709632602e" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "pJmCFF0p" +version = "NRw0CDAc" diff --git a/mods/immersive_armors-1.6.1+1.20.1-fabric.pw.toml b/mods/immersive_armors-1.6.1+1.20.1-fabric.pw.toml new file mode 100644 index 0000000..72161d3 --- /dev/null +++ b/mods/immersive_armors-1.6.1+1.20.1-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "immersive_armors-1.6.1+1.20.1-fabric" +filename = "immersive_armors-1.6.1+1.20.1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/eE2Db4YU/versions/Waf0D48D/immersive_armors-1.6.1%2B1.20.1-fabric.jar" +hash = "65b7c29cc9f078c7fe818bb133860ae3edb19c21409d03d86d12889280239a3b88f9623110203611ed69e142bf9acc5e4ff970757d25b954f234241902c35f1e" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "eE2Db4YU" +version = "Waf0D48D" diff --git a/mods/immersivemc-1.5.0-beta1-1.20.1-fabric.pw.toml b/mods/immersivemc-1.5.0-beta1-1.20.1-fabric.pw.toml new file mode 100644 index 0000000..5fde1b0 --- /dev/null +++ b/mods/immersivemc-1.5.0-beta1-1.20.1-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "immersivemc-1.5.0-beta1-1.20.1-fabric" +filename = "immersivemc-1.5.0-beta1-1.20.1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/XJ9is6vj/versions/D5i0F490/immersivemc-1.5.0-beta1-1.20.1-fabric.jar" +hash = "7ad42d42454249d94f9a3525c8c55f260955faa2b3469fd330f06fec43b8a77acde9286e78faedac9022aea18689a0c48bd67a3d2d4dacc4fde4afed72511423" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "XJ9is6vj" +version = "D5i0F490" diff --git a/mods/imst-2.1.0.pw.toml b/mods/imst-2.1.0.pw.toml new file mode 100644 index 0000000..5f532eb --- /dev/null +++ b/mods/imst-2.1.0.pw.toml @@ -0,0 +1,17 @@ +name = "imst-2.1.0" +filename = "imst-2.1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/CVBAErky/versions/C1fCIQSh/imst-2.1.0.jar" +hash = "c5dc394d4bce5561490826c849735a1f685ebd810f2483e97f0d2dc0941b01da62e0d0644a87abda6fa425a318d184fdb4ce8c700bfc982323177f8f59757ae2" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "CVBAErky" +version = "C1fCIQSh" diff --git a/mods/imst_n-1.1.0.zip.pw.toml b/mods/imst_n-1.1.0.zip.pw.toml new file mode 100644 index 0000000..9268576 --- /dev/null +++ b/mods/imst_n-1.1.0.zip.pw.toml @@ -0,0 +1,17 @@ +name = "imst_n-1.1.0.zip" +filename = "imst_n-1.1.0.zip" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fECIioDQ/versions/DQPdL75T/imst_n-1.1.0.zip" +hash = "342dbc107c0c18a153f5391ba469cf8dcd41f3a31697d4fc8408d268237ff7d0d6007d788b292f5a81b263324c4ed4da69d4082109df0ab3c5006a025a7a252a" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "fECIioDQ" +version = "DQPdL75T" diff --git a/mods/indium-1.0.34+mc1.20.1.pw.toml b/mods/indium-1.0.34+mc1.20.1.pw.toml new file mode 100644 index 0000000..d5ee83a --- /dev/null +++ b/mods/indium-1.0.34+mc1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "indium-1.0.34+mc1.20.1" +filename = "indium-1.0.34+mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Orvt0mRa/versions/gofbpynL/indium-1.0.34%2Bmc1.20.1.jar" +hash = "15bb1be71ee8c0455804d38b0e735ce1cd72b6a65ce78199b227dd4806a7726fd5fcf44ea60b382b5d97546c693d289c64f7ef872701ee1ddf1ddab14f2cee74" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "Orvt0mRa" +version = "gofbpynL" diff --git a/mods/invoke-0.2.4.pw.toml b/mods/invoke-0.2.4.pw.toml new file mode 100644 index 0000000..e45e2ab --- /dev/null +++ b/mods/invoke-0.2.4.pw.toml @@ -0,0 +1,17 @@ +name = "invoke-0.2.4" +filename = "invoke-0.2.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/xwHe8V3O/versions/XKDV9Yjr/invoke-0.2.4.jar" +hash = "acf096b04c41b9caa34445e50f7947d78e4939a51b3f30e24955cb3956abc3dc2a03f004b4f65e1b4c6265e3e44c044b36c6731eb2b0bb4b52c56349a0b59d24" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "xwHe8V3O" +version = "XKDV9Yjr" diff --git a/mods/iris-1.7.2+mc1.20.1.pw.toml b/mods/iris-1.7.2+mc1.20.1.pw.toml new file mode 100644 index 0000000..f9c0d32 --- /dev/null +++ b/mods/iris-1.7.2+mc1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "iris-1.7.2+mc1.20.1" +filename = "iris-1.7.2+mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/YL57xq9U/versions/1CMVXDHo/iris-1.7.2%2Bmc1.20.1.jar" +hash = "bb8a8f1ab1b302bbe5d6c5f970d8e781089836fb5e669780cd05fcc5a23e93152ea16e18eead7aa87a7f9e5f7f0197f9de90ea83f7cdebffc2d9a9f6bc9dcad0" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "YL57xq9U" +version = "1CMVXDHo" diff --git a/mods/item-filters-fabric-2001.1.0-build.59.jar b/mods/item-filters-fabric-2001.1.0-build.59.jar new file mode 100644 index 0000000..9ef8020 Binary files /dev/null and b/mods/item-filters-fabric-2001.1.0-build.59.jar differ diff --git a/mods/jei-1.20.1-fabric-15.10.0.29.pw.toml b/mods/jei-1.20.1-fabric-15.10.0.29.pw.toml new file mode 100644 index 0000000..1fd2cf3 --- /dev/null +++ b/mods/jei-1.20.1-fabric-15.10.0.29.pw.toml @@ -0,0 +1,17 @@ +name = "jei-1.20.1-fabric-15.10.0.29" +filename = "jei-1.20.1-fabric-15.10.0.29.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/u6dRKJwZ/versions/kjVUjoA6/jei-1.20.1-fabric-15.10.0.29.jar" +hash = "0f3b02adc4a868973b04fdb4e153a859d348e2c38cc8f8531a89b97f24bbf3b2ae4ee60fc87a3a52ed40c181f0322ffcac009ba61af8f39a1b2aae6321ca2804" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "u6dRKJwZ" +version = "kjVUjoA6" diff --git a/mods/kevsequipmentsets-1.0.5.pw.toml b/mods/kevsequipmentsets-1.0.5.pw.toml new file mode 100644 index 0000000..1a96083 --- /dev/null +++ b/mods/kevsequipmentsets-1.0.5.pw.toml @@ -0,0 +1,17 @@ +name = "kevsequipmentsets-1.0.5" +filename = "kevsequipmentsets-1.0.5.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ZSeB6n9M/versions/HGvWNPM4/kevsequipmentsets-1.0.5.jar" +hash = "8c236f454ee60c6690aac86a2fab2d5543cb7e552ede2d6551f3af33c7b747c6e45bbe3205dbe0b2243be461a0616a77dff56572b41e3860522c88937eba92cc" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "ZSeB6n9M" +version = "HGvWNPM4" diff --git a/mods/kevslibrary-1.1.0.pw.toml b/mods/kevslibrary-1.1.0.pw.toml new file mode 100644 index 0000000..80c1765 --- /dev/null +++ b/mods/kevslibrary-1.1.0.pw.toml @@ -0,0 +1,17 @@ +name = "kevslibrary-1.1.0" +filename = "kevslibrary-1.1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/jq6pHt0U/versions/L6vTMKdJ/kevslibrary-1.1.0.jar" +hash = "5fa8a4656624281ea0c5dc85d5d9ec23d99d60e87e3f5a30e0540e653b4d8d56e22685f5433364134cea8c582b6ccd0e9a394f908c0b423b801459739695af68" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "jq6pHt0U" +version = "L6vTMKdJ" diff --git a/mods/kevstierifymodifiers-1.2.4.jar b/mods/kevstierifymodifiers-1.2.4.jar new file mode 100644 index 0000000..f9e2c86 Binary files /dev/null and b/mods/kevstierifymodifiers-1.2.4.jar differ diff --git a/mods/kobold-outposts-2.0.pw.toml b/mods/kobold-outposts-2.0.pw.toml new file mode 100644 index 0000000..a3d98bb --- /dev/null +++ b/mods/kobold-outposts-2.0.pw.toml @@ -0,0 +1,17 @@ +name = "kobold-outposts-2.0" +filename = "kobold-outposts-2.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/zxQ8fN7I/versions/B4nzmoMh/kobold-outposts-2.0.jar" +hash = "98e2d2cecf43dc4e2567aba9dbb4689cc575e9fba62ee384ea8327de5c6baecde48063b870c52a9cac14358a177382da2639652ac02951a50be00d8d75a03098" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "zxQ8fN7I" +version = "B4nzmoMh" diff --git a/mods/letsdo-camping-fabric-1.0.0.pw.toml b/mods/letsdo-camping-fabric-1.0.0.pw.toml new file mode 100644 index 0000000..58cce81 --- /dev/null +++ b/mods/letsdo-camping-fabric-1.0.0.pw.toml @@ -0,0 +1,17 @@ +name = "letsdo-camping-fabric-1.0.0" +filename = "letsdo-camping-fabric-1.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/uJXTNuf0/versions/w4TC1HEK/letsdo-camping-fabric-1.0.0.jar" +hash = "a5ce5cfbbc19ad274bd4a62ef3ccc46a0a0d26978eb64804d31a6200ac8085ad02e04e137a0b37fc66dfdd522fccd4d572f3d3b8664837dfe33d7ff5ff044de7" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "uJXTNuf0" +version = "w4TC1HEK" diff --git a/mods/lithium-fabric-mc1.20.1-0.11.2.pw.toml b/mods/lithium-fabric-mc1.20.1-0.11.2.pw.toml new file mode 100644 index 0000000..21d52ae --- /dev/null +++ b/mods/lithium-fabric-mc1.20.1-0.11.2.pw.toml @@ -0,0 +1,17 @@ +name = "lithium-fabric-mc1.20.1-0.11.2" +filename = "lithium-fabric-mc1.20.1-0.11.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/gvQqBUqZ/versions/ZSNsJrPI/lithium-fabric-mc1.20.1-0.11.2.jar" +hash = "d1b5c90ba8b4879814df7fbf6e67412febbb2870e8131858c211130e9b5546e86b213b768b912fc7a2efa37831ad91caf28d6d71ba972274618ffd59937e5d0d" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "gvQqBUqZ" +version = "ZSNsJrPI" diff --git a/mods/lithostitched-fabric-1.20.1-1.1.8.pw.toml b/mods/lithostitched-fabric-1.20.1-1.1.8.pw.toml new file mode 100644 index 0000000..9be7b53 --- /dev/null +++ b/mods/lithostitched-fabric-1.20.1-1.1.8.pw.toml @@ -0,0 +1,17 @@ +name = "lithostitched-fabric-1.20.1-1.1.8" +filename = "lithostitched-fabric-1.20.1-1.1.8.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/XaDC71GB/versions/6fbZrlp1/lithostitched-fabric-1.20.1-1.1.8.jar" +hash = "2dfd2e9dd8a5c8d44efa852016b1a28fc16ed2f43b74c1ff8b1b53f4e5ca1e5aa031c26c8b6b3c0ffc9c18ca527fcb9d8e29d9f7a6872183853c27f472bf31d0" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "XaDC71GB" +version = "6fbZrlp1" diff --git a/mods/lmft-1.0.2+1.20-fabric.pw.toml b/mods/lmft-1.0.2+1.20-fabric.pw.toml new file mode 100644 index 0000000..8d2e657 --- /dev/null +++ b/mods/lmft-1.0.2+1.20-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "lmft-1.0.2+1.20-fabric" +filename = "lmft-1.0.2+1.20-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/67kVxsaO/versions/IWpydKCV/lmft-1.0.2%2B1.20-fabric.jar" +hash = "83b2f970095b63856302edc4acd33bd057a0a6b0f2bd0a00ef21218f779852418c4ebe1fea27060b7bf7b7dfcbcc3fafcc8e1283599ea55201a3cbcff5e23f1f" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "67kVxsaO" +version = "IWpydKCV" diff --git a/mods/loadmyresources_fabric_1.0.4-1_MC_1.20.pw.toml b/mods/loadmyresources_fabric_1.0.4-1_MC_1.20.pw.toml new file mode 100644 index 0000000..8128411 --- /dev/null +++ b/mods/loadmyresources_fabric_1.0.4-1_MC_1.20.pw.toml @@ -0,0 +1,17 @@ +name = "loadmyresources_fabric_1.0.4-1_MC_1.20" +filename = "loadmyresources_fabric_1.0.4-1_MC_1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/TqCKvqjC/versions/vO7R2WNi/loadmyresources_fabric_1.0.4-1_MC_1.20.jar" +hash = "41f4157cfc13708dec15a09b09fe4d58809f54fd714b8cde3c1200d26135b2abe3057985a28e70fd925c2d3132782953c60c342cc6844163fe1fea506d7631b5" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "TqCKvqjC" +version = "vO7R2WNi" diff --git a/mods/logprot-fabric-1.20.1-3.4.jar b/mods/logprot-fabric-1.20.1-3.4.jar new file mode 100644 index 0000000..84fbfc4 Binary files /dev/null and b/mods/logprot-fabric-1.20.1-3.4.jar differ diff --git a/mods/lootintegrations-fabric-1.20.1-3.7.jar b/mods/lootintegrations-fabric-1.20.1-3.7.jar new file mode 100644 index 0000000..8d0f509 Binary files /dev/null and b/mods/lootintegrations-fabric-1.20.1-3.7.jar differ diff --git a/mods/mcda-5.0.2.pw.toml b/mods/mcda-5.0.2.pw.toml new file mode 100644 index 0000000..34fd75e --- /dev/null +++ b/mods/mcda-5.0.2.pw.toml @@ -0,0 +1,17 @@ +name = "mcda-5.0.2" +filename = "mcda-5.0.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/oMitr7dU/versions/kOZVEfRn/mcda-5.0.2.jar" +hash = "ff59442744a5da5a740ea4e5fea4320af064b1486729d49bff63db7545d91cb38809f7671bd4714f683f1f48e562dd61afbc302f8ddf42a32291ecc59846befc" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "oMitr7dU" +version = "kOZVEfRn" diff --git a/mods/mcdw-9.0.4.pw.toml b/mods/mcdw-9.0.4.pw.toml new file mode 100644 index 0000000..03623f6 --- /dev/null +++ b/mods/mcdw-9.0.4.pw.toml @@ -0,0 +1,17 @@ +name = "mcdw-9.0.4" +filename = "mcdw-9.0.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/FZmGDE43/versions/S2yuB3CX/mcdw-9.0.4.jar" +hash = "f9c1b28dccde38841f66e492d73bfa72aaaa87a8f83afebff9b636c2ab832ab1bf062e20fe956023929b0af03e42079749e3fb5318073f9feafff0287ce066f0" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "FZmGDE43" +version = "S2yuB3CX" diff --git a/mods/mcw-bridges-3.0.0-mc1.20.1fabric.pw.toml b/mods/mcw-bridges-3.0.0-mc1.20.1fabric.pw.toml new file mode 100644 index 0000000..ce3830f --- /dev/null +++ b/mods/mcw-bridges-3.0.0-mc1.20.1fabric.pw.toml @@ -0,0 +1,17 @@ +name = "mcw-bridges-3.0.0-mc1.20.1fabric" +filename = "mcw-bridges-3.0.0-mc1.20.1fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/GURcjz8O/versions/RmsMXs3r/mcw-bridges-3.0.0-mc1.20.1fabric.jar" +hash = "7f7ef65fd569d2ea6cf3fa49a9b6a1b8f9f5736b143c8a158f765a17424b18a60c254c6c68c23279ff625c740b0028bec7ce26b6804c3e13159251112b24ced7" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "GURcjz8O" +version = "RmsMXs3r" diff --git a/mods/mcw-doors-1.1.1fabric-mc1.20.1.pw.toml b/mods/mcw-doors-1.1.1fabric-mc1.20.1.pw.toml new file mode 100644 index 0000000..9c50b65 --- /dev/null +++ b/mods/mcw-doors-1.1.1fabric-mc1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "mcw-doors-1.1.1fabric-mc1.20.1" +filename = "mcw-doors-1.1.1fabric-mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/kNxa8z3e/versions/vkuwEpj0/mcw-doors-1.1.1fabric-mc1.20.1.jar" +hash = "dd4a1e476aca8b9c56f6eb9575962122ef986c0fc4a7bb11607525c3ad2cfd1447c73932cb00a5da41026851c3ad6d61e4ba85ede7f4271694df6a41c1adb6c8" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "kNxa8z3e" +version = "vkuwEpj0" diff --git a/mods/mcw-fences-1.1.2-mc1.20.1fabric.pw.toml b/mods/mcw-fences-1.1.2-mc1.20.1fabric.pw.toml new file mode 100644 index 0000000..ce30e89 --- /dev/null +++ b/mods/mcw-fences-1.1.2-mc1.20.1fabric.pw.toml @@ -0,0 +1,17 @@ +name = "mcw-fences-1.1.2-mc1.20.1fabric" +filename = "mcw-fences-1.1.2-mc1.20.1fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/GmwLse2I/versions/NxAYnOkJ/mcw-fences-1.1.2-mc1.20.1fabric.jar" +hash = "ff65521044ab275e93d4712bdd20f0d2865c149d1005c2642de1b930250ce47d7240b7617ea0fc3ef9c2e500891056381f95fa6db0cc5899118257f86e38efb7" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "GmwLse2I" +version = "NxAYnOkJ" diff --git a/mods/mcw-furniture-3.3.0-mc1.20.1fabric.pw.toml b/mods/mcw-furniture-3.3.0-mc1.20.1fabric.pw.toml new file mode 100644 index 0000000..e9cb4ad --- /dev/null +++ b/mods/mcw-furniture-3.3.0-mc1.20.1fabric.pw.toml @@ -0,0 +1,17 @@ +name = "mcw-furniture-3.3.0-mc1.20.1fabric" +filename = "mcw-furniture-3.3.0-mc1.20.1fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/dtWC90iB/versions/7aTbV3Sq/mcw-furniture-3.3.0-mc1.20.1fabric.jar" +hash = "6e9adf5dc3005a2e7fa5ebb53500bb7735ee665e1e2c77b3dc2d35c0a55ed3ef8385a6785356572bb4576940c13dc7d63f0afbea9361b97363eafa2ba7dc4876" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "dtWC90iB" +version = "7aTbV3Sq" diff --git a/mods/mcw-lights-1.1.1-mc1.20.1fabric.pw.toml b/mods/mcw-lights-1.1.1-mc1.20.1fabric.pw.toml new file mode 100644 index 0000000..a7de34e --- /dev/null +++ b/mods/mcw-lights-1.1.1-mc1.20.1fabric.pw.toml @@ -0,0 +1,17 @@ +name = "mcw-lights-1.1.1-mc1.20.1fabric" +filename = "mcw-lights-1.1.1-mc1.20.1fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/w4an97C2/versions/D8iZj41A/mcw-lights-1.1.1-mc1.20.1fabric.jar" +hash = "3316d00b72d4f88a4e81b9d97203b056ba7f27c3006b5ce28516d983891eece3c921d30fd9a5967e788c7c838e78c4ffe81f4b423391c4b489f1cb41c1c4679f" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "w4an97C2" +version = "D8iZj41A" diff --git a/mods/mcw-paintings-1.0.5-1.20.1fabric.pw.toml b/mods/mcw-paintings-1.0.5-1.20.1fabric.pw.toml new file mode 100644 index 0000000..bdfcc65 --- /dev/null +++ b/mods/mcw-paintings-1.0.5-1.20.1fabric.pw.toml @@ -0,0 +1,17 @@ +name = "mcw-paintings-1.0.5-1.20.1fabric" +filename = "mcw-paintings-1.0.5-1.20.1fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/okE6QVAY/versions/CwHvP3Pz/mcw-paintings-1.0.5-1.20.1fabric.jar" +hash = "17f928fb5365fd0315fe284b3b3213f5ec0ff14ea70a89c16be8376dd9a1f6ba7faed78a18a674436b78a63df1c8d6de7b04e3e99f8c84d95d4c8a66ae4f2bf8" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "okE6QVAY" +version = "CwHvP3Pz" diff --git a/mods/mcw-paths-1.0.5-1.20.1fabric.pw.toml b/mods/mcw-paths-1.0.5-1.20.1fabric.pw.toml new file mode 100644 index 0000000..1d1ded5 --- /dev/null +++ b/mods/mcw-paths-1.0.5-1.20.1fabric.pw.toml @@ -0,0 +1,17 @@ +name = "mcw-paths-1.0.5-1.20.1fabric" +filename = "mcw-paths-1.0.5-1.20.1fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/VRLhWB91/versions/vusBu5Up/mcw-paths-1.0.5-1.20.1fabric.jar" +hash = "d8246548b80158749ba4a5219768522b4939b6d61d0f4fac292455bdc506f5f9fda30e66a13105e8dc7e3cbcb68716cbe4652ca0b49a43cb86fe7e89a141a62c" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "VRLhWB91" +version = "vusBu5Up" diff --git a/mods/mcw-roofs-2.3.1-mc1.20.1fabric.pw.toml b/mods/mcw-roofs-2.3.1-mc1.20.1fabric.pw.toml new file mode 100644 index 0000000..bd21133 --- /dev/null +++ b/mods/mcw-roofs-2.3.1-mc1.20.1fabric.pw.toml @@ -0,0 +1,17 @@ +name = "mcw-roofs-2.3.1-mc1.20.1fabric" +filename = "mcw-roofs-2.3.1-mc1.20.1fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/B8jaH3P1/versions/EOjhPmTj/mcw-roofs-2.3.1-mc1.20.1fabric.jar" +hash = "e55eb4ee47f61f9acb044388f2da2dd6c844997559ff21855fea8ddf6407ff5d10d6714c27df9df96c236bda5a481cf3ef10ce8be91a5bcd0066bc7f3a395173" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "B8jaH3P1" +version = "EOjhPmTj" diff --git a/mods/mcw-trapdoors-1.1.3-mc1.20.1fabric.pw.toml b/mods/mcw-trapdoors-1.1.3-mc1.20.1fabric.pw.toml new file mode 100644 index 0000000..c40d685 --- /dev/null +++ b/mods/mcw-trapdoors-1.1.3-mc1.20.1fabric.pw.toml @@ -0,0 +1,17 @@ +name = "mcw-trapdoors-1.1.3-mc1.20.1fabric" +filename = "mcw-trapdoors-1.1.3-mc1.20.1fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/n2fvCDlM/versions/1UfQwdWq/mcw-trapdoors-1.1.3-mc1.20.1fabric.jar" +hash = "96cdb3f5710c4a7073b45a47fa4ef231e6cfc153b715046503debf20cc7d266e75f264651e0313fffdcd1e368516ffc72fbb09d3c25acd8eddfc79c4796b9502" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "n2fvCDlM" +version = "1UfQwdWq" diff --git a/mods/mcw-windows-2.3.0-mc1.20.1fabric.pw.toml b/mods/mcw-windows-2.3.0-mc1.20.1fabric.pw.toml new file mode 100644 index 0000000..210e41a --- /dev/null +++ b/mods/mcw-windows-2.3.0-mc1.20.1fabric.pw.toml @@ -0,0 +1,17 @@ +name = "mcw-windows-2.3.0-mc1.20.1fabric" +filename = "mcw-windows-2.3.0-mc1.20.1fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/C7I0BCni/versions/88sYNcv4/mcw-windows-2.3.0-mc1.20.1fabric.jar" +hash = "3a87acdf63fa178096dfed9fdda722d10e98033e1b4bfcdd88b04afa21cb64705cb9861a0056e2940b4815c406207e6f4623d04b972b2bf9f36c191c409e2d30" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "C7I0BCni" +version = "88sYNcv4" diff --git a/mods/memoryleakfix-fabric-1.17+-1.1.5.pw.toml b/mods/memoryleakfix-fabric-1.17+-1.1.5.pw.toml new file mode 100644 index 0000000..d69c34e --- /dev/null +++ b/mods/memoryleakfix-fabric-1.17+-1.1.5.pw.toml @@ -0,0 +1,17 @@ +name = "memoryleakfix-fabric-1.17+-1.1.5" +filename = "memoryleakfix-fabric-1.17+-1.1.5.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/NRjRiSSD/versions/5xvCCRjJ/memoryleakfix-fabric-1.17%2B-1.1.5.jar" +hash = "a7bf7429340d076f4b30602bc714280c3f5cb8e814e76e89296c8155e3355b33304a148e9218378a3383127e95b7ba47402506c687f1d58609704fe8cc60ab93" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "NRjRiSSD" +version = "5xvCCRjJ" diff --git a/mods/minecells-1.8.3.pw.toml b/mods/minecells-1.8.3.pw.toml new file mode 100644 index 0000000..8d31cf3 --- /dev/null +++ b/mods/minecells-1.8.3.pw.toml @@ -0,0 +1,17 @@ +name = "minecells-1.8.3" +filename = "minecells-1.8.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9Qdvz1OV/versions/1Vbpo4ux/minecells-1.8.3.jar" +hash = "718981d5b006630f4144117ff616ca861063e5a4678e3db5f2e38428fbb32a5aede1be9561dfad29c86a9487ab32d6698284cef13c51023033cf34d502d7d9ae" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "9Qdvz1OV" +version = "1Vbpo4ux" diff --git a/mods/mobs_of_mythology-fabric-1.20.1-2.0.2.pw.toml b/mods/mobs_of_mythology-fabric-1.20.1-2.0.2.pw.toml new file mode 100644 index 0000000..5f4959e --- /dev/null +++ b/mods/mobs_of_mythology-fabric-1.20.1-2.0.2.pw.toml @@ -0,0 +1,17 @@ +name = "mobs_of_mythology-fabric-1.20.1-2.0.2" +filename = "mobs_of_mythology-fabric-1.20.1-2.0.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/avrKhvsK/versions/oSJicyN7/mobs_of_mythology-fabric-1.20.1-2.0.2.jar" +hash = "3622a66b01212a54722409f84f129fbf3f8cc096f976cd3c0da8441c2b1832940b25dc98a956554aeae66f1884a60280779e4395075f7be7e281070800bbb576" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "avrKhvsK" +version = "oSJicyN7" diff --git a/mods/modernfix-fabric-5.19.0+mc1.20.1.pw.toml b/mods/modernfix-fabric-5.19.0+mc1.20.1.pw.toml new file mode 100644 index 0000000..04329f7 --- /dev/null +++ b/mods/modernfix-fabric-5.19.0+mc1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "modernfix-fabric-5.19.0+mc1.20.1" +filename = "modernfix-fabric-5.19.0+mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/nmDcB62a/versions/ZYnwHpym/modernfix-fabric-5.19.0%2Bmc1.20.1.jar" +hash = "e98d6bad17d26856cc1c9c3b0f01d894c6e479819995971fa4ad84239243c49adfad94c7e4dfc691ac5adbaa32ce69489fe0dc737453fe3c8b4f050773ce0072" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "nmDcB62a" +version = "ZYnwHpym" diff --git a/mods/modmenu-7.2.2.pw.toml b/mods/modmenu-7.2.2.pw.toml new file mode 100644 index 0000000..165e007 --- /dev/null +++ b/mods/modmenu-7.2.2.pw.toml @@ -0,0 +1,17 @@ +name = "modmenu-7.2.2" +filename = "modmenu-7.2.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/mOgUt4GM/versions/lEkperf6/modmenu-7.2.2.jar" +hash = "9a7837e04bb34376611b207a3b20e5fe1c82a4822b42929d5b410809ec4b88ff3cac8821c4568f880775bafa3c079dfc7800f8471356a4046248b12607e855eb" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "mOgUt4GM" +version = "lEkperf6" diff --git a/mods/more-totems-mod-2.16.0.pw.toml b/mods/more-totems-mod-2.16.0.pw.toml new file mode 100644 index 0000000..8355f13 --- /dev/null +++ b/mods/more-totems-mod-2.16.0.pw.toml @@ -0,0 +1,17 @@ +name = "more-totems-mod-2.16.0" +filename = "more-totems-mod-2.16.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Xt0pMhSq/versions/rOWXHX42/more-totems-mod-2.16.0.jar" +hash = "d453560c0ae9bf361113ec426ed2005d51a411f668c8d9ae9dc127a3b10662099ced5eb45f425fba4360b2b0fbeccb34a88b247a86f0f10835100b9a087b9d54" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "Xt0pMhSq" +version = "rOWXHX42" diff --git a/mods/moreculling-1.20.4-0.24.0.pw.toml b/mods/moreculling-1.20.4-0.24.0.pw.toml new file mode 100644 index 0000000..36f8021 --- /dev/null +++ b/mods/moreculling-1.20.4-0.24.0.pw.toml @@ -0,0 +1,17 @@ +name = "moreculling-1.20.4-0.24.0" +filename = "moreculling-1.20.4-0.24.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/51shyZVL/versions/3m5znPWm/moreculling-1.20.4-0.24.0.jar" +hash = "3a8accedfa48ce86b4091ce7994d63b2c7d1f6654119a5dc8430bd7370084bf04801c71600bb2b1546a58aef972797048f86eebbff2a666905a86c2b1cf7632e" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "51shyZVL" +version = "3m5znPWm" diff --git a/mods/moremobvariants-fabric+1.20.1-1.3.1.pw.toml b/mods/moremobvariants-fabric+1.20.1-1.3.1.pw.toml new file mode 100644 index 0000000..a6244dc --- /dev/null +++ b/mods/moremobvariants-fabric+1.20.1-1.3.1.pw.toml @@ -0,0 +1,17 @@ +name = "moremobvariants-fabric+1.20.1-1.3.1" +filename = "moremobvariants-fabric+1.20.1-1.3.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/JiEhJ3WG/versions/o6yyhzgj/moremobvariants-fabric%2B1.20.1-1.3.1.jar" +hash = "af6b709620be9aee7aa2fca8b85b923a4ad283928dbc5f0287d702e08a6aaa84935844fe5c4f3661c340f411d2ede0889bdb5cf2b095cbb3c3251469c5b77c8c" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "JiEhJ3WG" +version = "o6yyhzgj" diff --git a/mods/mythic-mounts-1.20.1-7.2.pw.toml b/mods/mythic-mounts-1.20.1-7.2.pw.toml new file mode 100644 index 0000000..ff88983 --- /dev/null +++ b/mods/mythic-mounts-1.20.1-7.2.pw.toml @@ -0,0 +1,17 @@ +name = "mythic-mounts-1.20.1-7.2" +filename = "mythic-mounts-1.20.1-7.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/xP7vOoRA/versions/a9GfsY3e/mythic-mounts-1.20.1-7.2.jar" +hash = "48622ee002a8c75073e315e890fd88422e3b68af5ba434317db2ea80bd748fd154b58916e423984a3f0f5bbe2fdf3dc02f7303e7fc3faae86ad073759d0f39bc" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "xP7vOoRA" +version = "a9GfsY3e" diff --git a/mods/mythicupgrades-4.1.3+mc1.20.1.pw.toml b/mods/mythicupgrades-4.1.3+mc1.20.1.pw.toml new file mode 100644 index 0000000..4340b3a --- /dev/null +++ b/mods/mythicupgrades-4.1.3+mc1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "mythicupgrades-4.1.3+mc1.20.1" +filename = "mythicupgrades-4.1.3+mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ERH7cFoy/versions/KkROoKjO/mythicupgrades-4.1.3%2Bmc1.20.1.jar" +hash = "63f6d608494c1e0e1a4b5a36560ab0199e8614ce14b37ff347cf1408d2a30f39241ee0fb9ea8b7a15fa7ec91e61e9fc3bc68ad792646843277c49162b4ef0142" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "ERH7cFoy" +version = "KkROoKjO" diff --git a/mods/mythquest-1.2.pw.toml b/mods/mythquest-1.2.pw.toml new file mode 100644 index 0000000..f2df5df --- /dev/null +++ b/mods/mythquest-1.2.pw.toml @@ -0,0 +1,17 @@ +name = "mythquest-1.2" +filename = "mythquest-1.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9daSQ9Yq/versions/AwRDUZl5/mythquest-1.2.jar" +hash = "5f498c4610a21f793676b1922ec2063d65b221fc905dd79804a88ab09e19e684ac68a40b56c74e7693d56c043f6356b295ddf5dcdcb1167d14e0e489a9bdcedd" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "9daSQ9Yq" +version = "AwRDUZl5" diff --git a/mods/naturalist-fabric-4.0.3-1.20.1.pw.toml b/mods/naturalist-fabric-4.0.3-1.20.1.pw.toml new file mode 100644 index 0000000..e75c84b --- /dev/null +++ b/mods/naturalist-fabric-4.0.3-1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "naturalist-fabric-4.0.3-1.20.1" +filename = "naturalist-fabric-4.0.3-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/F8BQNPWX/versions/dMGBsRgz/naturalist-fabric-4.0.3-1.20.1.jar" +hash = "2598c35680c48d8a5a30c05883cf1c0b3cbada36594ba93f35f3e99555634e64d3b4eea5d1c8beb84ef7019d3d61a32350cdc68368ab0a2b731ab381978492b0" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "F8BQNPWX" +version = "dMGBsRgz" diff --git a/mods/netherdepthsupgrade-fabric-3.1.6-1.20.pw.toml b/mods/netherdepthsupgrade-fabric-3.1.6-1.20.pw.toml new file mode 100644 index 0000000..00fa30f --- /dev/null +++ b/mods/netherdepthsupgrade-fabric-3.1.6-1.20.pw.toml @@ -0,0 +1,17 @@ +name = "netherdepthsupgrade-fabric-3.1.6-1.20" +filename = "netherdepthsupgrade-fabric-3.1.6-1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/vI1QKJro/versions/CdgX1NKy/netherdepthsupgrade-fabric-3.1.6-1.20.jar" +hash = "ef650eaaedcc41d362d84fccedfcc43a6ba723d4ec8dcb74ce64b57a13518238e17adb0ded15df47b8c68f5f4b1704b80541c0009dc36ab7eb2b829aa42774a1" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "vI1QKJro" +version = "CdgX1NKy" diff --git a/mods/netherportalfix-fabric-1.20-13.0.1.jar b/mods/netherportalfix-fabric-1.20-13.0.1.jar new file mode 100644 index 0000000..8ca0ea8 Binary files /dev/null and b/mods/netherportalfix-fabric-1.20-13.0.1.jar differ diff --git a/mods/nicer-skies-1.3.0+1.20.1.pw.toml b/mods/nicer-skies-1.3.0+1.20.1.pw.toml new file mode 100644 index 0000000..566d980 --- /dev/null +++ b/mods/nicer-skies-1.3.0+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "nicer-skies-1.3.0+1.20.1" +filename = "nicer-skies-1.3.0+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/gsJ6q45e/versions/CJ15oCV4/nicer-skies-1.3.0%2B1.20.1.jar" +hash = "3594ad9974e520948e04613485bcebcecae9f83b6bf5879e87965cea0a6b85b80010fe891c99fd159d7e5d854264d203293df5455e591b4aaae099515802cbf3" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "gsJ6q45e" +version = "CJ15oCV4" diff --git a/mods/nomobfarm-1.6.5.jar b/mods/nomobfarm-1.6.5.jar new file mode 100644 index 0000000..fff67f8 Binary files /dev/null and b/mods/nomobfarm-1.6.5.jar differ diff --git a/mods/owo-lib-0.11.2+1.20.pw.toml b/mods/owo-lib-0.11.2+1.20.pw.toml new file mode 100644 index 0000000..f4a2c6a --- /dev/null +++ b/mods/owo-lib-0.11.2+1.20.pw.toml @@ -0,0 +1,17 @@ +name = "owo-lib-0.11.2+1.20" +filename = "owo-lib-0.11.2+1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ccKDOlHs/versions/zyOBB7J4/owo-lib-0.11.2%2B1.20.jar" +hash = "807e4a3daf493e92c5ff0d5657efbba2a4e0cd2a9b753f2d6f153422629415f189345842a6dd258c87d4c02ebf38950a517bcd8a7ed929af6ed6485ae46cf77e" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "ccKDOlHs" +version = "zyOBB7J4" diff --git a/mods/oxidized-1.8.2.pw.toml b/mods/oxidized-1.8.2.pw.toml new file mode 100644 index 0000000..2c12b70 --- /dev/null +++ b/mods/oxidized-1.8.2.pw.toml @@ -0,0 +1,17 @@ +name = "oxidized-1.8.2" +filename = "oxidized-1.8.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/wOZRkmgG/versions/dH4eImYJ/oxidized-1.8.2.jar" +hash = "ce7b21a2c7779dcec878aa2fab71142c3c07fb7399bfb347048666e8803e31795316b2508c72b8e3ce8213a0cd81c2dfd852198ee480f5ca3ded0e1f08a7fc6b" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "wOZRkmgG" +version = "dH4eImYJ" diff --git a/mods/packetfixer-fabric-1.4.2-1.19-to-1.20.1.pw.toml b/mods/packetfixer-fabric-1.4.2-1.19-to-1.20.1.pw.toml new file mode 100644 index 0000000..2bae4c5 --- /dev/null +++ b/mods/packetfixer-fabric-1.4.2-1.19-to-1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "packetfixer-fabric-1.4.2-1.19-to-1.20.1" +filename = "packetfixer-fabric-1.4.2-1.19-to-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/c7m1mi73/versions/djNw6g8u/packetfixer-fabric-1.4.2-1.19-to-1.20.1.jar" +hash = "44b4b4e1743e9e96d9173a898234e07637a2fe03b3c4a449e0f1e0f08146c743c65f4f76dcd85515006a4c3a790e0cb6eeaf3ac45cf111eccfc8b9d56c5c69a4" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "c7m1mi73" +version = "djNw6g8u" diff --git a/mods/paladins-1.3.1+1.20.1.pw.toml b/mods/paladins-1.3.1+1.20.1.pw.toml new file mode 100644 index 0000000..c14d25d --- /dev/null +++ b/mods/paladins-1.3.1+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "paladins-1.3.1+1.20.1" +filename = "paladins-1.3.1+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/FxXkHaLe/versions/9FbzwRpY/paladins-1.3.1%2B1.20.1.jar" +hash = "a9b7e6da3205207a7fce6fe35e17f91a4130089c17c1963fb59a51f7875070e10022bd51347db6e6c5a8ba56f5145ff77dd149a628b323476373947467025806" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "FxXkHaLe" +version = "9FbzwRpY" diff --git a/mods/player-animation-lib-fabric-1.0.2-rc1+1.20.pw.toml b/mods/player-animation-lib-fabric-1.0.2-rc1+1.20.pw.toml new file mode 100644 index 0000000..192e848 --- /dev/null +++ b/mods/player-animation-lib-fabric-1.0.2-rc1+1.20.pw.toml @@ -0,0 +1,17 @@ +name = "player-animation-lib-fabric-1.0.2-rc1+1.20" +filename = "player-animation-lib-fabric-1.0.2-rc1+1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/gedNE4y2/versions/yDqYTUaf/player-animation-lib-fabric-1.0.2-rc1%2B1.20.jar" +hash = "4ed2659c9e9c1a1fa8936523f7d6de1b8012d8e06e6c58ef65ea5c7acef2b3a113afe584b3a31d70eee00423dbe533c06022cc5f169ab5a2ddf8167acf259ec8" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "gedNE4y2" +version = "yDqYTUaf" diff --git a/mods/polymorph-fabric-0.49.5+1.20.1.pw.toml b/mods/polymorph-fabric-0.49.5+1.20.1.pw.toml new file mode 100644 index 0000000..9677189 --- /dev/null +++ b/mods/polymorph-fabric-0.49.5+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "polymorph-fabric-0.49.5+1.20.1" +filename = "polymorph-fabric-0.49.5+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/tagwiZkJ/versions/EYWxtHOI/polymorph-fabric-0.49.5%2B1.20.1.jar" +hash = "75a1318aa382779905c36d323c20d2ee5dd95c09e516d761649386e79adee0f85913d213468abc286957af217c2649fcf983b6297cfbad91b3a0b700cd5f21db" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "tagwiZkJ" +version = "EYWxtHOI" diff --git a/mods/projectile_damage-fabric-3.2.3+1.20.1.pw.toml b/mods/projectile_damage-fabric-3.2.3+1.20.1.pw.toml new file mode 100644 index 0000000..17840b7 --- /dev/null +++ b/mods/projectile_damage-fabric-3.2.3+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "projectile_damage-fabric-3.2.3+1.20.1" +filename = "projectile_damage-fabric-3.2.3+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/AOyJhFvl/versions/TPkj1ZDs/projectile_damage-fabric-3.2.3%2B1.20.1.jar" +hash = "fc402a9ae9464c22fbbd691c4e4e1cddf482dcdfe2e62a954191d7a32004dfa7695f5f5440aa95b5379d9969bafeb8ebf5ed912b01f017c680247969b849436d" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "AOyJhFvl" +version = "TPkj1ZDs" diff --git a/mods/promenade-4.1.1.pw.toml b/mods/promenade-4.1.1.pw.toml new file mode 100644 index 0000000..54fc4bd --- /dev/null +++ b/mods/promenade-4.1.1.pw.toml @@ -0,0 +1,17 @@ +name = "promenade-4.1.1" +filename = "promenade-4.1.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/GuE5FpvB/versions/A5YD9uS3/promenade-4.1.1.jar" +hash = "d8166f7aba9560072d995dc8d23b2345898de4128ff0d57c06473da9cc5537b7022f752a17d0a3e4454e87a628b95f0c2f22f5d858af320fce5dbdc4dda33dc7" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "GuE5FpvB" +version = "A5YD9uS3" diff --git a/mods/puffish_attributes-0.5.0-1.20-fabric.pw.toml b/mods/puffish_attributes-0.5.0-1.20-fabric.pw.toml new file mode 100644 index 0000000..71dd211 --- /dev/null +++ b/mods/puffish_attributes-0.5.0-1.20-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "puffish_attributes-0.5.0-1.20-fabric" +filename = "puffish_attributes-0.5.0-1.20-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/FCFcFw09/versions/l9MXTh4H/puffish_attributes-0.5.0-1.20-fabric.jar" +hash = "c9e58e3d283c8e56acbcdc59443c54b4adeaf0c6ca4feffbc859e8b8f643a0c65a83b1602a967cba32d9180a5c3b593e1ce5dd208530f3a1ffe2afb4dbcbeebf" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "FCFcFw09" +version = "l9MXTh4H" diff --git a/mods/puffish_skills-0.12.2-1.20-fabric.pw.toml b/mods/puffish_skills-0.12.2-1.20-fabric.pw.toml new file mode 100644 index 0000000..74e05f7 --- /dev/null +++ b/mods/puffish_skills-0.12.2-1.20-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "puffish_skills-0.12.2-1.20-fabric" +filename = "puffish_skills-0.12.2-1.20-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/hqQqvaa4/versions/f7O8dT0T/puffish_skills-0.12.2-1.20-fabric.jar" +hash = "3bef3cffa5549e80c5d32f3fb0e364557b01bc8d314a34c5d3abc31e1ec529e02d8cfef87d835beda259a5e5ce558b228b14f243373e9d700130068655cd36a6" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "hqQqvaa4" +version = "f7O8dT0T" diff --git a/mods/ranged_weapon_api-1.1.2+1.20.1.pw.toml b/mods/ranged_weapon_api-1.1.2+1.20.1.pw.toml new file mode 100644 index 0000000..9ac008c --- /dev/null +++ b/mods/ranged_weapon_api-1.1.2+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "ranged_weapon_api-1.1.2+1.20.1" +filename = "ranged_weapon_api-1.1.2+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/AqaIIO6D/versions/R1YG5awX/ranged_weapon_api-1.1.2%2B1.20.1.jar" +hash = "7aa107132124b6d7adf5dd847e9dbce36b38e2457251a69bae5431fbe530086733309ca08a3448ce86cb289e5333a0ba924eb487b097bae1e98d0171fddb0b5c" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "AqaIIO6D" +version = "R1YG5awX" diff --git a/mods/reacharound+1.20-1.3.0.pw.toml b/mods/reacharound+1.20-1.3.0.pw.toml new file mode 100644 index 0000000..404a59f --- /dev/null +++ b/mods/reacharound+1.20-1.3.0.pw.toml @@ -0,0 +1,17 @@ +name = "reacharound+1.20-1.3.0" +filename = "reacharound+1.20-1.3.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/r3VgI4QN/versions/29DyXaiq/reacharound%2B1.20-1.3.0.jar" +hash = "832858a9d546ad343b4ac077d1e9dcd5e1a0be7f7057274e29ca0e1d9594c78f44ffbe0c796118556af529cf431ad8e2800b14cde986f52c0fe8b8f49eeff7d0" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "r3VgI4QN" +version = "29DyXaiq" diff --git a/mods/remove-terralith-intro-message-1.0.pw.toml b/mods/remove-terralith-intro-message-1.0.pw.toml new file mode 100644 index 0000000..66da257 --- /dev/null +++ b/mods/remove-terralith-intro-message-1.0.pw.toml @@ -0,0 +1,17 @@ +name = "remove-terralith-intro-message-1.0" +filename = "remove-terralith-intro-message-1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/sk4iFZGy/versions/2jAppOW4/remove-terralith-intro-message-1.0.jar" +hash = "a18e826a7739d16af46f138c016213cad3f5df16eddf765082ab66d63f76f46c0e0434028eefe1cf5020b37c2993f55bb42c883b864b67bc448029536b89600f" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "sk4iFZGy" +version = "2jAppOW4" diff --git a/mods/repurposed_structures-7.1.15+1.20.1-fabric.pw.toml b/mods/repurposed_structures-7.1.15+1.20.1-fabric.pw.toml new file mode 100644 index 0000000..a6fca24 --- /dev/null +++ b/mods/repurposed_structures-7.1.15+1.20.1-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "repurposed_structures-7.1.15+1.20.1-fabric" +filename = "repurposed_structures-7.1.15+1.20.1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/muf0XoRe/versions/MuqUgLqO/repurposed_structures-7.1.15%2B1.20.1-fabric.jar" +hash = "74e3c624af9fbc446fcd27b4051d4d905b0cbd92dd2f43c26414f47a38c7a28aef1355272116c6b1272121b9c4af51391b03249ac8c6e6ab67d968c9a23e67cc" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "muf0XoRe" +version = "MuqUgLqO" diff --git a/mods/resourcefulconfig-fabric-1.20.1-2.1.2.pw.toml b/mods/resourcefulconfig-fabric-1.20.1-2.1.2.pw.toml new file mode 100644 index 0000000..8494234 --- /dev/null +++ b/mods/resourcefulconfig-fabric-1.20.1-2.1.2.pw.toml @@ -0,0 +1,17 @@ +name = "resourcefulconfig-fabric-1.20.1-2.1.2" +filename = "resourcefulconfig-fabric-1.20.1-2.1.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/M1953qlQ/versions/PlEObkl9/resourcefulconfig-fabric-1.20.1-2.1.2.jar" +hash = "53a6ca7dd4c83963d56b7dc5fbeb9b71090461049931a45b912fda5e09b8aa716d9504f2e97c023995062482df27946d81bbf771252baaca0d6f46333c3947bf" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "M1953qlQ" +version = "PlEObkl9" diff --git a/mods/rogues-1.1.0+1.20.1.pw.toml b/mods/rogues-1.1.0+1.20.1.pw.toml new file mode 100644 index 0000000..be37978 --- /dev/null +++ b/mods/rogues-1.1.0+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "rogues-1.1.0+1.20.1" +filename = "rogues-1.1.0+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/3MKqoGuP/versions/Zv9heBzC/rogues-1.1.0%2B1.20.1.jar" +hash = "619289546554549092c0fedc1bc9893bc8ac9681a81dc640cc5b6f5e7051ffeed3c2765a44f00cceb371e5c32ca03881b90ec845af74e5a958338710fe242fd8" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "3MKqoGuP" +version = "Zv9heBzC" diff --git a/mods/runes-0.9.13+1.20.1.pw.toml b/mods/runes-0.9.13+1.20.1.pw.toml new file mode 100644 index 0000000..19bc4c1 --- /dev/null +++ b/mods/runes-0.9.13+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "runes-0.9.13+1.20.1" +filename = "runes-0.9.13+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/lP9Yrr1E/versions/Z915LCkR/runes-0.9.13%2B1.20.1.jar" +hash = "a4f4de8577788c52ce6264adc0d9f301040bad21c53e3c8a59b159b746bc5181a209250f6982af70830882a278914d98bc1d45f913291b8bed1946b3523aaabf" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "lP9Yrr1E" +version = "Z915LCkR" diff --git a/mods/simplyskills-1.5.0+1.20.1.pw.toml b/mods/simplyskills-1.5.0+1.20.1.pw.toml new file mode 100644 index 0000000..c3b45a7 --- /dev/null +++ b/mods/simplyskills-1.5.0+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "simplyskills-1.5.0+1.20.1" +filename = "simplyskills-1.5.0+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/lyvwxqAy/versions/oWdYf42D/simplyskills-1.5.0%2B1.20.1.jar" +hash = "08c2ad9384e27cc64c6a08128d157cf7e5da75fad88bbb0b7c4ea3f6d5f712f1b60dd7d19462e4bcf3c66d63f40258b00c708633e1afa90f0f204ea24667fd6b" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "lyvwxqAy" +version = "oWdYf42D" diff --git a/mods/simplyswords-fabric-1.55.0-1.20.1.pw.toml b/mods/simplyswords-fabric-1.55.0-1.20.1.pw.toml new file mode 100644 index 0000000..910e9eb --- /dev/null +++ b/mods/simplyswords-fabric-1.55.0-1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "simplyswords-fabric-1.55.0-1.20.1" +filename = "simplyswords-fabric-1.55.0-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/bK3Ubu9p/versions/r5QBtUE9/simplyswords-fabric-1.55.0-1.20.1.jar" +hash = "853fe0e3d7df438e826ff99630c3a1214bd2581e56aea9684bbb40d8173a36b6a1cab92b4744271eb76325f7a8bee1e7510096f3972d47173fa0a12f8d892a25" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "bK3Ubu9p" +version = "r5QBtUE9" diff --git a/mods/smallships-fabric-1.20.1-2.0.0-b1.4.pw.toml b/mods/smallships-fabric-1.20.1-2.0.0-b1.4.pw.toml new file mode 100644 index 0000000..a91d524 --- /dev/null +++ b/mods/smallships-fabric-1.20.1-2.0.0-b1.4.pw.toml @@ -0,0 +1,17 @@ +name = "smallships-fabric-1.20.1-2.0.0-b1.4" +filename = "smallships-fabric-1.20.1-2.0.0-b1.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/rGWEHQrP/versions/gpbYUuEr/smallships-fabric-1.20.1-2.0.0-b1.4.jar" +hash = "a08da465ff2fdd69fea612e33fb209d349925e8b8b268aede484e624949677c1b1a39e281f7aaeb21687d5068bbe0e5319d41b867149a789b4421b5b96136b73" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "rGWEHQrP" +version = "gpbYUuEr" diff --git a/mods/smoothchunk-fabric-1.20.1-3.6.jar b/mods/smoothchunk-fabric-1.20.1-3.6.jar new file mode 100644 index 0000000..03d6d93 Binary files /dev/null and b/mods/smoothchunk-fabric-1.20.1-3.6.jar differ diff --git a/mods/sodium-extra-0.5.4+mc1.20.1-build.115.pw.toml b/mods/sodium-extra-0.5.4+mc1.20.1-build.115.pw.toml new file mode 100644 index 0000000..57e88d7 --- /dev/null +++ b/mods/sodium-extra-0.5.4+mc1.20.1-build.115.pw.toml @@ -0,0 +1,17 @@ +name = "sodium-extra-0.5.4+mc1.20.1-build.115" +filename = "sodium-extra-0.5.4+mc1.20.1-build.115.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/PtjYWJkn/versions/I7ggF6B5/sodium-extra-0.5.4%2Bmc1.20.1-build.115.jar" +hash = "ab561186421776d0db506dcbf1a724f80b345be5769ff00aa4327161c79af6e3f353eb65345ce06da30546ffa6b43e1c4a4c41dd246b7e473b131fd727997a85" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "PtjYWJkn" +version = "I7ggF6B5" diff --git a/mods/sodium-fabric-0.5.11+mc1.20.1.pw.toml b/mods/sodium-fabric-0.5.11+mc1.20.1.pw.toml new file mode 100644 index 0000000..e03d799 --- /dev/null +++ b/mods/sodium-fabric-0.5.11+mc1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "sodium-fabric-0.5.11+mc1.20.1" +filename = "sodium-fabric-0.5.11+mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/AANobbMI/versions/ygf8cVZg/sodium-fabric-0.5.11%2Bmc1.20.1.jar" +hash = "628129702e830fe88d79f0b87ef0591b708fb39045ce3d985703d6a3a78c30c9beb518df8e70151e55ca6c82d9274fea904c016f60085d889a4f7ac431cccd9e" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "AANobbMI" +version = "ygf8cVZg" diff --git a/mods/soulslike-weaponry-1.1.4.1-1.20.1-fabric.pw.toml b/mods/soulslike-weaponry-1.1.4.1-1.20.1-fabric.pw.toml new file mode 100644 index 0000000..cd8ff28 --- /dev/null +++ b/mods/soulslike-weaponry-1.1.4.1-1.20.1-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "soulslike-weaponry-1.1.4.1-1.20.1-fabric" +filename = "soulslike-weaponry-1.1.4.1-1.20.1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/oX6SohLj/versions/1KCOAajo/soulslike-weaponry-1.1.4.1-1.20.1-fabric.jar" +hash = "86c80e74b6f04810b26facdd7cd24fd950d9697e1f890380d69bacc7bbfed8fd8bfa69fb5bf1f627833bfccc9232de09bc35fe3bb5113b0384ed1fa166a3067c" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "oX6SohLj" +version = "1KCOAajo" diff --git a/mods/sound-physics-remastered-fabric-1.20.1-1.4.5.pw.toml b/mods/sound-physics-remastered-fabric-1.20.1-1.4.5.pw.toml new file mode 100644 index 0000000..7df3df8 --- /dev/null +++ b/mods/sound-physics-remastered-fabric-1.20.1-1.4.5.pw.toml @@ -0,0 +1,17 @@ +name = "sound-physics-remastered-fabric-1.20.1-1.4.5" +filename = "sound-physics-remastered-fabric-1.20.1-1.4.5.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/qyVF9oeo/versions/MmKSrFU9/sound-physics-remastered-fabric-1.20.1-1.4.5.jar" +hash = "15236091c5285af328034e0af8c7d76eb8130692dcb32a36a8fbf227f455864374f8e3ce9689431d7061da06028d8931e3f998ce78453224f67babe4f8588eea" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "qyVF9oeo" +version = "MmKSrFU9" diff --git a/mods/spell_engine-0.15.8+1.20.1.pw.toml b/mods/spell_engine-0.15.8+1.20.1.pw.toml new file mode 100644 index 0000000..008a679 --- /dev/null +++ b/mods/spell_engine-0.15.8+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "spell_engine-0.15.8+1.20.1" +filename = "spell_engine-0.15.8+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/XvoWJaA2/versions/eX4YqiVK/spell_engine-0.15.8%2B1.20.1.jar" +hash = "05daab532b0cc030f0ebbd8d0008249ee3f5b2f7bb3b8aedd29842a0be43a200b5600dffee0dee717ee03d1a37d463b3fdcd7ae2f9fd6ca2de426e1e291c0430" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "XvoWJaA2" +version = "eX4YqiVK" diff --git a/mods/spell_power-0.11.1+1.20.1.pw.toml b/mods/spell_power-0.11.1+1.20.1.pw.toml new file mode 100644 index 0000000..e993082 --- /dev/null +++ b/mods/spell_power-0.11.1+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "spell_power-0.11.1+1.20.1" +filename = "spell_power-0.11.1+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/8ooWzSQP/versions/nT0Hl1AE/spell_power-0.11.1%2B1.20.1.jar" +hash = "06766152ef5a9c98cb402afe23a5862be9774900559df04ec8628703abd06a2e0d04cf9ff581924c60b1b383f5a45336928680e548a6d0cd2d6523a4d395ca7f" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "8ooWzSQP" +version = "nT0Hl1AE" diff --git a/mods/starlight-1.1.2+fabric.dbc156f.pw.toml b/mods/starlight-1.1.2+fabric.dbc156f.pw.toml new file mode 100644 index 0000000..0cc9b65 --- /dev/null +++ b/mods/starlight-1.1.2+fabric.dbc156f.pw.toml @@ -0,0 +1,17 @@ +name = "starlight-1.1.2+fabric.dbc156f" +filename = "starlight-1.1.2+fabric.dbc156f.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/H8CaAYZC/versions/XGIsoVGT/starlight-1.1.2%2Bfabric.dbc156f.jar" +hash = "6b0e363fc2d6cd2f73b466ab9ba4f16582bb079b8449b7f3ed6e11aa365734af66a9735a7203cf90f8bc9b24e7ce6409eb04d20f84e04c7c6b8e34f4cc8578bb" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "H8CaAYZC" +version = "XGIsoVGT" diff --git a/mods/starterkit-1.20.1-7.1.pw.toml b/mods/starterkit-1.20.1-7.1.pw.toml new file mode 100644 index 0000000..f23e7e2 --- /dev/null +++ b/mods/starterkit-1.20.1-7.1.pw.toml @@ -0,0 +1,17 @@ +name = "starterkit-1.20.1-7.1" +filename = "starterkit-1.20.1-7.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/6L3ydNi8/versions/nGVvCsgb/starterkit-1.20.1-7.1.jar" +hash = "45458b4f60a4c1bacc1354ce1e9b995c622329f830716bc5d6e42fe9c1ea4ec87db1ca528fb4f85962f48005d2da44967ec29178c04c63fca92ded8e86588a22" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "6L3ydNi8" +version = "nGVvCsgb" diff --git a/mods/tlc-fabric-1.0.1-1.20.X.pw.toml b/mods/tlc-fabric-1.0.1-1.20.X.pw.toml new file mode 100644 index 0000000..1b9262a --- /dev/null +++ b/mods/tlc-fabric-1.0.1-1.20.X.pw.toml @@ -0,0 +1,17 @@ +name = "tlc-fabric-1.0.1-1.20.X" +filename = "tlc-fabric-1.0.1-1.20.X.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/FGlHZl7X/versions/r1kI9nMD/tlc-fabric-1.0.1-1.20.X.jar" +hash = "17a2e32bbe873acf4ba2f15473cd03cb6362200317af7e842caaca9bd86efb2836ebaead1cdf03904df9d785ff6758926e7b4c3285995b4749fa4d15b1da67a3" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "FGlHZl7X" +version = "r1kI9nMD" diff --git a/mods/toofast-fabric-1.20-1.2.0.pw.toml b/mods/toofast-fabric-1.20-1.2.0.pw.toml new file mode 100644 index 0000000..fe0d9de --- /dev/null +++ b/mods/toofast-fabric-1.20-1.2.0.pw.toml @@ -0,0 +1,17 @@ +name = "toofast-fabric-1.20-1.2.0" +filename = "toofast-fabric-1.20-1.2.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/w6JSkKSH/versions/ZyY2Xraw/toofast-fabric-1.20-1.2.0.jar" +hash = "b7f133d04a990f5b03c6cd5b19c2008b6f8e4a40fcd0342f561db2e651f9e4331770ace52ffa40d3d94d3cc7e1e0d1614d682faf24f25fc95c33c38db4677ab9" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "w6JSkKSH" +version = "ZyY2Xraw" diff --git a/mods/trinkets-3.7.2.pw.toml b/mods/trinkets-3.7.2.pw.toml new file mode 100644 index 0000000..bc0bc13 --- /dev/null +++ b/mods/trinkets-3.7.2.pw.toml @@ -0,0 +1,17 @@ +name = "trinkets-3.7.2" +filename = "trinkets-3.7.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/5aaWibi9/versions/AHxQGtuC/trinkets-3.7.2.jar" +hash = "bedf97c87c5e556416410267108ad358b32806448be24ef8ae1a79ac63b78b48b9c851c00c845b8aedfc7805601385420716b9e65326fdab21340e8ba3cc4274" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "5aaWibi9" +version = "AHxQGtuC" diff --git a/mods/valentinesblessing 1.5.0 1.20.1 fabric.pw.toml b/mods/valentinesblessing 1.5.0 1.20.1 fabric.pw.toml new file mode 100644 index 0000000..1e453f2 --- /dev/null +++ b/mods/valentinesblessing 1.5.0 1.20.1 fabric.pw.toml @@ -0,0 +1,17 @@ +name = "valentinesblessing 1.5.0 1.20.1 fabric" +filename = "valentinesblessing 1.5.0 1.20.1 fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/1imrOvDk/versions/gFWULXkY/valentinesblessing%201.5.0%201.20.1%20fabric.jar" +hash = "7d2de42aeab3d9576a2848ecda5128e4a46f50d3b67c01702489d1779b6d7be4b26b4cb1f30470c919087cbda6f11d6caedf77321db228074e60e887b1097eca" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "1imrOvDk" +version = "gFWULXkY" diff --git a/mods/vc_gliders-fabric-1.1.5.pw.toml b/mods/vc_gliders-fabric-1.1.5.pw.toml new file mode 100644 index 0000000..f833524 --- /dev/null +++ b/mods/vc_gliders-fabric-1.1.5.pw.toml @@ -0,0 +1,17 @@ +name = "vc_gliders-fabric-1.1.5" +filename = "vc_gliders-fabric-1.1.5.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/XiC6HzoU/versions/9Qu0MGnH/vc_gliders-fabric-1.1.5.jar" +hash = "ab402975228d7b9bf631e41055685f86e8ffdd8b0a3012b1e9ee004cdf5a2f9dbf9bd13b3ddc6b0d614a815185bc354d21c6a5f8029e15aac4fc8e9b6b99161d" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "XiC6HzoU" +version = "9Qu0MGnH" diff --git a/mods/veinmining-fabric-1.5.0+1.20.1.pw.toml b/mods/veinmining-fabric-1.5.0+1.20.1.pw.toml new file mode 100644 index 0000000..d557125 --- /dev/null +++ b/mods/veinmining-fabric-1.5.0+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "veinmining-fabric-1.5.0+1.20.1" +filename = "veinmining-fabric-1.5.0+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/bRAPbNyF/versions/PFFXEfYV/veinmining-fabric-1.5.0%2B1.20.1.jar" +hash = "f6eeb5d5f9cea999f191b99cbff793a2df60f6cb043fef006a30ab1f8661be35e871c7e558aa698d654995e21f2b9a1c3f889eb6a5d7fe1c8595ccb4b9fc2c04" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "bRAPbNyF" +version = "PFFXEfYV" diff --git a/mods/villagesandpillages-fabric-mc1.20.1-1.0.0.pw.toml b/mods/villagesandpillages-fabric-mc1.20.1-1.0.0.pw.toml new file mode 100644 index 0000000..cdc8c57 --- /dev/null +++ b/mods/villagesandpillages-fabric-mc1.20.1-1.0.0.pw.toml @@ -0,0 +1,17 @@ +name = "villagesandpillages-fabric-mc1.20.1-1.0.0" +filename = "villagesandpillages-fabric-mc1.20.1-1.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/klXONLDA/versions/emWkyeQg/villagesandpillages-fabric-mc1.20.1-1.0.0.jar" +hash = "e67a25d392716448a0da2235c07d99e7965d77defab6645eaef10a9c94f84c5d36c95bfb24acab75f24783f8e29fffa4c897d8b4c043b5a603d421e318cdecb5" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "klXONLDA" +version = "emWkyeQg" diff --git a/mods/villagespawnpoint-1.20.1-4.4.pw.toml b/mods/villagespawnpoint-1.20.1-4.4.pw.toml new file mode 100644 index 0000000..7b317e6 --- /dev/null +++ b/mods/villagespawnpoint-1.20.1-4.4.pw.toml @@ -0,0 +1,17 @@ +name = "villagespawnpoint-1.20.1-4.4" +filename = "villagespawnpoint-1.20.1-4.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/KplTt9Ku/versions/pmuo4Sz9/villagespawnpoint-1.20.1-4.4.jar" +hash = "0706d8338f621056c62196ec7afc36688bfd4d41db8f8b126024f26e858d5b2543603f7e62784b31da47a4ab65e32bb621616f21ebff28cdfae8d517f86b316b" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "KplTt9Ku" +version = "pmuo4Sz9" diff --git a/mods/vivecraft-1.20.1-1.1.11-fabric.pw.toml b/mods/vivecraft-1.20.1-1.1.11-fabric.pw.toml new file mode 100644 index 0000000..3233383 --- /dev/null +++ b/mods/vivecraft-1.20.1-1.1.11-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "vivecraft-1.20.1-1.1.11-fabric" +filename = "vivecraft-1.20.1-1.1.11-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/wGoQDPN5/versions/xC0Vh8WO/vivecraft-1.20.1-1.1.11-fabric.jar" +hash = "a2ca3e534c28efd8dcb2b6da7ca5d2c091732f3c77f26a2dd645998c16f8c4235680672ab0c09aaad5cc77003cc31c7d997b464e024058dc942ebdc507f0e9ae" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "wGoQDPN5" +version = "xC0Vh8WO" diff --git a/mods/voicechat-fabric-1.20.1-2.5.19.pw.toml b/mods/voicechat-fabric-1.20.1-2.5.19.pw.toml new file mode 100644 index 0000000..f4b27a2 --- /dev/null +++ b/mods/voicechat-fabric-1.20.1-2.5.19.pw.toml @@ -0,0 +1,17 @@ +name = "voicechat-fabric-1.20.1-2.5.19" +filename = "voicechat-fabric-1.20.1-2.5.19.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9eGKb6K1/versions/OIOFhV0j/voicechat-fabric-1.20.1-2.5.19.jar" +hash = "25b474a1192d1626672a2d16f4bc7d75824ef0209b24247044908bee65c7b1882d4574f313ed9c8c69c78698755b0da430fdc21a94ae83876ca9d65b6a9d178a" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "9eGKb6K1" +version = "OIOFhV0j" diff --git a/mods/vrapi-3.0.9-1.20.1-fabric.pw.toml b/mods/vrapi-3.0.9-1.20.1-fabric.pw.toml new file mode 100644 index 0000000..4c2b8b3 --- /dev/null +++ b/mods/vrapi-3.0.9-1.20.1-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "vrapi-3.0.9-1.20.1-fabric" +filename = "vrapi-3.0.9-1.20.1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/B3INNxum/versions/4tJF8iTk/vrapi-3.0.9-1.20.1-fabric.jar" +hash = "64e918d5385bc159d22c5cec428ab1d713645acb133cb7174868ef382cf807ddc5ca56d5424129ba99b5c45e60c88ae999eb2a4e8c764d59068f61ae4d80aca4" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "B3INNxum" +version = "4tJF8iTk" diff --git a/mods/walljump-1.20.1-1.2.1-fabric.pw.toml b/mods/walljump-1.20.1-1.2.1-fabric.pw.toml new file mode 100644 index 0000000..cdf9a91 --- /dev/null +++ b/mods/walljump-1.20.1-1.2.1-fabric.pw.toml @@ -0,0 +1,17 @@ +name = "walljump-1.20.1-1.2.1-fabric" +filename = "walljump-1.20.1-1.2.1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/oUoetxfR/versions/xCmWdqxU/walljump-1.20.1-1.2.1-fabric.jar" +hash = "b1df447f7f1d531478d865a53ddeeba371509d32a9c15ef09f5b3c97fd97369bbf639c9dc2c7992b6300750c748552c6ce6a5ba588222b490904d9936d61dc47" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "oUoetxfR" +version = "xCmWdqxU" diff --git a/mods/way2wayfabric-0.0.6.pw.toml b/mods/way2wayfabric-0.0.6.pw.toml new file mode 100644 index 0000000..9df9e2a --- /dev/null +++ b/mods/way2wayfabric-0.0.6.pw.toml @@ -0,0 +1,17 @@ +name = "way2wayfabric-0.0.6" +filename = "way2wayfabric-0.0.6.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/lO0vzQUy/versions/IBsP5dyt/way2wayfabric-0.0.6.jar" +hash = "b1c257fa4332637723e01bc49036d2d0b48f053b50045a20ce2db269fb38d5e1803352426014f1cc7000a910e6b427d9b62122b76670c5ac61d55fcd0f49d60f" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "lO0vzQUy" +version = "IBsP5dyt" diff --git a/mods/wizards-1.3.0+1.20.1.pw.toml b/mods/wizards-1.3.0+1.20.1.pw.toml new file mode 100644 index 0000000..314be84 --- /dev/null +++ b/mods/wizards-1.3.0+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "wizards-1.3.0+1.20.1" +filename = "wizards-1.3.0+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/NkGaQMDA/versions/hMGphtUf/wizards-1.3.0%2B1.20.1.jar" +hash = "44a4c9f7d6d48fd3981178a8a4bb78e1ac6b30f05bc1cd1ed238562f67aec7b5a017435ef79773a5424c6f128322d231264e9996218b4435ce4750d68a63e7c8" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "NkGaQMDA" +version = "hMGphtUf" diff --git a/mods/wraith-waystones-3.3.2+mc1.20.1.pw.toml b/mods/wraith-waystones-3.3.2+mc1.20.1.pw.toml new file mode 100644 index 0000000..08077d7 --- /dev/null +++ b/mods/wraith-waystones-3.3.2+mc1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "wraith-waystones-3.3.2+mc1.20.1" +filename = "wraith-waystones-3.3.2+mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/sTZr7NVo/versions/DZAntbmD/wraith-waystones-3.3.2%2Bmc1.20.1.jar" +hash = "1d7d07e4910670899108a6c4cb570f27dcf0a9502ca477d19be3e0f486e4c0720ef51d4854fed8f7b55823cde63741065aaf6836d849af1ce25e75e54329d999" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "sTZr7NVo" +version = "DZAntbmD" diff --git a/mods/zenith-1.2.3-1.20.1.pw.toml b/mods/zenith-1.2.3-1.20.1.pw.toml new file mode 100644 index 0000000..c800c4d --- /dev/null +++ b/mods/zenith-1.2.3-1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "zenith-1.2.3-1.20.1" +filename = "zenith-1.2.3-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/TLZe11Uj/versions/D3JxTPgz/zenith-1.2.3-1.20.1.jar" +hash = "12203c1689efc9140b19571417f068380b1b44dd8085e2add9b2553e88cae1ec8860dcf208abf1bc7c7535f65b6e1e02ce5c15fd601371ab49cc9a261b736d90" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "TLZe11Uj" +version = "D3JxTPgz" diff --git a/mods/zenith_attributes-0.2.6.pw.toml b/mods/zenith_attributes-0.2.6.pw.toml new file mode 100644 index 0000000..2014a4e --- /dev/null +++ b/mods/zenith_attributes-0.2.6.pw.toml @@ -0,0 +1,17 @@ +name = "zenith_attributes-0.2.6" +filename = "zenith_attributes-0.2.6.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9sxDq6mj/versions/BdMGhfsy/zenith_attributes-0.2.6.jar" +hash = "27082e355bee2921de47aed93a4629d552edbd27e66e6e86e154eccef67afcd61ded280b898b4febf8f3136debe968a80fffb4ed24c6f98f88d31c85eb700203" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "9sxDq6mj" +version = "BdMGhfsy" diff --git a/mods/zephyr-0.5.0+1.20.1.pw.toml b/mods/zephyr-0.5.0+1.20.1.pw.toml new file mode 100644 index 0000000..d2b0060 --- /dev/null +++ b/mods/zephyr-0.5.0+1.20.1.pw.toml @@ -0,0 +1,17 @@ +name = "zephyr-0.5.0+1.20.1" +filename = "zephyr-0.5.0+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/14bALK1y/versions/f9CKJhXU/zephyr-0.5.0%2B1.20.1.jar" +hash = "134824052124b4f5d44a2ae063a023eea6b84f2a5789637f48cd14723e2facff8fcfe81094ec44bfba3f5088349b949afc19e36c86872a359e6907333f59b4d6" +hash-format = "sha512" +mode = "url" + +[option] +optional = false +default = false + +[update.modrinth] +mod-id = "14bALK1y" +version = "f9CKJhXU" diff --git a/options.txt b/options.txt new file mode 100644 index 0000000..e9fdc1f --- /dev/null +++ b/options.txt @@ -0,0 +1,274 @@ +version:3465 +autoJump:false +operatorItemsTab:false +autoSuggestions:true +chatColors:true +chatLinks:true +chatLinksPrompt:true +enableVsync:true +entityShadows:true +forceUnicodeFont:false +discrete_mouse_scroll:false +invertYMouse:false +realmsNotifications:true +reducedDebugInfo:false +showSubtitles:false +directionalAudio:false +touchscreen:false +fullscreen:false +bobView:true +toggleCrouch:false +toggleSprint:false +darkMojangStudiosBackground:false +hideLightningFlashes:false +mouseSensitivity:0.5 +fov:1.0 +screenEffectScale:1.0 +fovEffectScale:1.0 +darknessEffectScale:1.0 +glintSpeed:0.5 +glintStrength:0.75 +damageTiltStrength:1.0 +highContrast:false +gamma:0.5 +renderDistance:12 +simulationDistance:12 +entityDistanceScaling:1.0 +guiScale:0 +particles:0 +maxFps:120 +graphicsMode:1 +ao:true +prioritizeChunkUpdates:0 +biomeBlendRadius:2 +renderClouds:"true" +resourcePacks:["fabric"] +incompatibleResourcePacks:[] +lastServer: +lang:en_us +soundDevice:"" +chatVisibility:0 +chatOpacity:1.0 +chatLineSpacing:0.0 +textBackgroundOpacity:0.5 +backgroundForChatOnly:true +hideServerAddress:false +advancedItemTooltips:false +pauseOnLostFocus:true +overrideWidth:0 +overrideHeight:0 +chatHeightFocused:1.0 +chatDelay:0.0 +chatHeightUnfocused:0.4375 +chatScale:1.0 +chatWidth:1.0 +notificationDisplayTime:1.0 +mipmapLevels:4 +useNativeTransport:true +mainHand:"right" +attackIndicator:1 +narrator:0 +tutorialStep:none +mouseWheelSensitivity:1.0 +rawMouseInput:true +glDebugVerbosity:1 +skipMultiplayerWarning:false +skipRealms32bitWarning:false +hideMatchedNames:true +joinedFirstServer:false +hideBundleTutorial:false +syncChunkWrites:true +showAutosaveIndicator:true +allowServerListing:true +onlyShowSecureChat:false +panoramaScrollSpeed:1.0 +debugifyTelemetry:0 +telemetryOptInExtra:false +onboardAccessibility:false +key_key.attack:key.mouse.left +key_key.use:key.mouse.right +key_key.forward:key.keyboard.w +key_key.left:key.keyboard.a +key_key.back:key.keyboard.s +key_key.right:key.keyboard.d +key_key.jump:key.keyboard.space +key_key.sneak:key.keyboard.left.shift +key_key.sprint:key.keyboard.left.control +key_key.drop:key.keyboard.q +key_key.inventory:key.keyboard.e +key_key.chat:key.keyboard.t +key_key.playerlist:key.keyboard.tab +key_key.pickItem:key.mouse.middle +key_key.command:key.keyboard.slash +key_key.socialInteractions:key.keyboard.p +key_key.screenshot:key.keyboard.f2 +key_key.togglePerspective:key.keyboard.f5 +key_key.smoothCamera:key.keyboard.unknown +key_key.fullscreen:key.keyboard.f11 +key_key.spectatorOutlines:key.keyboard.unknown +key_key.swapOffhand:key.keyboard.f +key_key.saveToolbarActivator:key.keyboard.c +key_key.loadToolbarActivator:key.keyboard.x +key_key.advancements:key.keyboard.l +key_key.hotbar.1:key.keyboard.1 +key_key.hotbar.2:key.keyboard.2 +key_key.hotbar.3:key.keyboard.3 +key_key.hotbar.4:key.keyboard.4 +key_key.hotbar.5:key.keyboard.5 +key_key.hotbar.6:key.keyboard.6 +key_key.hotbar.7:key.keyboard.7 +key_key.hotbar.8:key.keyboard.8 +key_key.hotbar.9:key.keyboard.9 +key_vivecraft.key.rotateLeft:key.keyboard.unknown +key_vivecraft.key.rotateRight:key.keyboard.unknown +key_vivecraft.key.teleport:key.keyboard.unknown +key_vivecraft.key.teleportFallback:key.keyboard.unknown +key_vivecraft.key.toggleMovement:key.keyboard.unknown +key_vivecraft.key.quickTorch:key.keyboard.unknown +key_vivecraft.key.swapMirrorView:key.keyboard.unknown +key_vivecraft.key.exportWorld:key.keyboard.unknown +key_vivecraft.key.moveThirdPersonCam:key.keyboard.unknown +key_vivecraft.key.togglePlayerList:key.keyboard.unknown +key_vivecraft.key.toggleHandheldCam:key.keyboard.unknown +key_vivecraft.key.quickHandheldCam:key.keyboard.unknown +key_vivecraft.key.toggleKeyboard:key.keyboard.unknown +key_vivecraft.key.quickcommand1:key.keyboard.unknown +key_vivecraft.key.quickcommand2:key.keyboard.unknown +key_vivecraft.key.quickcommand3:key.keyboard.unknown +key_vivecraft.key.quickcommand4:key.keyboard.unknown +key_vivecraft.key.quickcommand5:key.keyboard.unknown +key_vivecraft.key.quickcommand6:key.keyboard.unknown +key_vivecraft.key.quickcommand7:key.keyboard.unknown +key_vivecraft.key.quickcommand8:key.keyboard.unknown +key_vivecraft.key.quickcommand9:key.keyboard.unknown +key_vivecraft.key.quickcommand10:key.keyboard.unknown +key_vivecraft.key.quickcommand11:key.keyboard.unknown +key_vivecraft.key.quickcommand12:key.keyboard.unknown +key_key.ftbquests.quests:key.keyboard.unknown +key_key.ftbteams.open_gui:key.keyboard.unknown +key_key.immersivemc.backpack:key.keyboard.f23 +key_key.immersivemc.config:key.keyboard.comma +key_key.immersivemc.ranged_grab:key.keyboard.f24 +key_key.adventurez.dragonflydown:key.keyboard.left.alt +key_key.adventurez.dragonfirebreath:key.keyboard.grave.accent +key_key.archon.infernal_coat:key.keyboard.period +key_artifacts.key.helium_flamingo.activate:key.keyboard.unknown +key_artifacts.key.night_vision_goggles.toggle:key.keyboard.unknown +key_artifacts.key.universal_attractor.toggle:key.keyboard.unknown +key_key.azurelib.reload:key.keyboard.r +key_key.azurelib.scope:key.keyboard.left.alt +key_key.azurelib.fire:key.keyboard.unknown +key_keybinds.bettercombat.feint:key.keyboard.unknown +key_keybinds.bettercombat.toggle_mine_with_weapons:key.keyboard.unknown +key_key.camping.open:key.keyboard.b +key_keybinds.combatroll.roll:key.keyboard.r +key_key.entityculling.toggle:key.keyboard.unknown +key_fakerlib.toggleWings:key.keyboard.keypad.8 +key_fakerlib.toggleTrails:key.keyboard.keypad.9 +key_key.boththrow.desc:key.mouse.right +key_key.leftthrow.desc:key.keyboard.unknown +key_key.rightthrow.desc:key.keyboard.unknown +key_key.motoronoff.desc:key.keyboard.left.shift +key_key.jumpanddetach.desc:key.keyboard.space +key_key.slow.desc:key.keyboard.left.shift +key_key.climb.desc:key.keyboard.left.shift +key_key.climbup.desc:key.keyboard.unknown +key_key.climbdown.desc:key.keyboard.unknown +key_key.enderlaunch.desc:key.mouse.left +key_key.rocket.desc:key.mouse.left +key_key.slide.desc:key.keyboard.left.shift +key_key.jade.config:key.keyboard.keypad.0 +key_key.jade.show_overlay:key.keyboard.keypad.1 +key_key.jade.toggle_liquid:key.keyboard.keypad.2 +key_key.jade.show_recipes:key.keyboard.keypad.3 +key_key.jade.show_uses:key.keyboard.keypad.4 +key_key.jade.narrate:key.keyboard.keypad.5 +key_key.jade.show_details_alternative:key.keyboard.unknown +key_key.mcda.firetrail.toggle:key.keyboard.semicolon +key_key.togglePlaques:key.keyboard.j +key_key.modmenu.open_menu:key.keyboard.unknown +key_key.presencefootsteps.settings:key.keyboard.f10 +key_key.presencefootsteps.toggle:key.keyboard.unknown +key_key.puffish_skills.open:key.keyboard.k +key_key.simplyskills.ability1:key.keyboard.v +key_key.simplyskills.ability2:key.keyboard.r +key_key.smallships.ship_sail:key.keyboard.r +key_key.soulsweapons.return_freyr_sword:key.keyboard.r +key_key.soulsweapons.freyr_sword_stationary:key.keyboard.z +key_key.soulsweapons.collect_summons_soul_reaper:key.keyboard.v +key_key.soulsweapons.switch_weapon:key.keyboard.b +key_key.soulsweapons.keybind_ability:key.keyboard.left.alt +key_key.soulsweapons.parry:key.keyboard.right.alt +key_key.soulsweapons.effect_shoot_moonlight:key.keyboard.h +key_key.soulsweapons.return_thrown_weapon:key.keyboard.n +key_keybindings.spell_engine.bypass_spell_hotbar:key.keyboard.left.alt +key_keybindings.spell_engine.spell_hotbar_1:key.keyboard.unknown +key_keybindings.spell_engine.spell_hotbar_2:key.keyboard.unknown +key_keybindings.spell_engine.spell_hotbar_3:key.keyboard.unknown +key_keybindings.spell_engine.spell_hotbar_4:key.keyboard.unknown +key_keybindings.spell_engine.spell_hotbar_5:key.keyboard.unknown +key_keybindings.spell_engine.spell_hotbar_6:key.keyboard.unknown +key_keybindings.spell_engine.spell_hotbar_7:key.keyboard.unknown +key_keybindings.spell_engine.spell_hotbar_8:key.keyboard.unknown +key_keybindings.spell_engine.spell_hotbar_9:key.keyboard.unknown +key_key.veinmining.activate.desc:key.keyboard.unknown +key_key.push_to_talk:key.keyboard.unknown +key_key.whisper:key.keyboard.unknown +key_key.mute_microphone:key.keyboard.m +key_key.disable_voice_chat:key.keyboard.n +key_key.hide_icons:key.keyboard.h +key_key.voice_chat:key.keyboard.v +key_key.voice_chat_settings:key.keyboard.unknown +key_key.voice_chat_group:key.keyboard.g +key_key.voice_chat_toggle_recording:key.keyboard.unknown +key_key.voice_chat_adjust_volumes:key.keyboard.unknown +key_key.walljump.walljump:key.keyboard.left.shift +key_gui.xaero_switch_waypoint_set:key.keyboard.unknown +key_gui.xaero_instant_waypoint:key.keyboard.keypad.add +key_gui.xaero_toggle_slime:key.keyboard.unknown +key_gui.xaero_toggle_grid:key.keyboard.unknown +key_gui.xaero_toggle_waypoints:key.keyboard.unknown +key_gui.xaero_toggle_map_waypoints:key.keyboard.unknown +key_gui.xaero_toggle_map:key.keyboard.unknown +key_gui.xaero_enlarge_map:key.keyboard.z +key_gui.xaero_waypoints_key:key.keyboard.u +key_gui.xaero_zoom_in:key.keyboard.unknown +key_gui.xaero_zoom_out:key.keyboard.unknown +key_gui.xaero_new_waypoint:key.keyboard.b +key_gui.xaero_display_all_sets:key.keyboard.unknown +key_gui.xaero_toggle_light_overlay:key.keyboard.unknown +key_gui.xaero_toggle_entity_radar:key.keyboard.unknown +key_gui.xaero_reverse_entity_radar:key.keyboard.unknown +key_gui.xaero_toggle_manual_cave_mode:key.keyboard.unknown +key_gui.xaero_alternative_list_players:key.keyboard.unknown +key_gui.xaero_toggle_tracked_players:key.keyboard.unknown +key_gui.xaero_toggle_pac_chunk_claims:key.keyboard.unknown +key_gui.xaero_minimap_settings:key.keyboard.y +key_gui.xaero_open_map:key.keyboard.m +key_gui.xaero_open_settings:key.keyboard.right.bracket +key_gui.xaero_map_zoom_in:key.keyboard.unknown +key_gui.xaero_map_zoom_out:key.keyboard.unknown +key_gui.xaero_quick_confirm:key.keyboard.right.shift +key_gui.xaero_toggle_dimension:key.keyboard.unknown +key_key.zenith.toggle_radial_mining:key.keyboard.o +key_iris.keybind.reload:key.keyboard.keypad.9 +key_iris.keybind.toggleShaders:key.keyboard.k +key_iris.keybind.shaderPackSelection:key.keyboard.o +key_iris.keybind.wireframe:key.keyboard.unknown +soundCategory_master:1.0 +soundCategory_music:1.0 +soundCategory_record:1.0 +soundCategory_weather:1.0 +soundCategory_block:1.0 +soundCategory_hostile:1.0 +soundCategory_neutral:1.0 +soundCategory_player:1.0 +soundCategory_ambient:1.0 +soundCategory_voice:1.0 +modelPart_cape:true +modelPart_jacket:true +modelPart_left_sleeve:true +modelPart_right_sleeve:true +modelPart_left_pants_leg:true +modelPart_right_pants_leg:true +modelPart_hat:true diff --git a/pack.toml b/pack.toml new file mode 100644 index 0000000..f3a784d --- /dev/null +++ b/pack.toml @@ -0,0 +1,11 @@ +name = "vrgcraft" +pack-format = "packwiz:1.1.0" + +[index] +file = "index.toml" +hash-format = "sha256" +hash = "7dedf7eb3c7b9272a7a943100aa3c505bd1beb3df32084a22221b2eceff440c9" + +[versions] +fabric = "0.16.0" +minecraft = "1.20.1"