commit 8c1f1dad07f6fc164ecfcff77e7777558800c845 Author: gabetoo Date: Fri Dec 27 19:13:24 2024 -0500 final diff --git a/README.md b/README.md new file mode 100644 index 0000000..d5d2d25 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# DHTest + diff --git a/Vanilla Plus Plus-1.0.0.mrpack b/Vanilla Plus Plus-1.0.0.mrpack new file mode 100644 index 0000000..c2b8de7 Binary files /dev/null and b/Vanilla Plus Plus-1.0.0.mrpack differ diff --git a/config/DistantHorizons.toml b/config/DistantHorizons.toml new file mode 100644 index 0000000..a5463be --- /dev/null +++ b/config/DistantHorizons.toml @@ -0,0 +1,776 @@ +_version = 3 + +[server] + # + # Defines the distance the player will receive updates around. + realTimeUpdateDistanceRadiusInChunks = 256 + # + # Maximum speed for uploading LODs to the clients, in KB/s. + # Value of 0 disables the limit. + maxDataTransferSpeed = 500 + # + # Prefix of the level keys sent to the clients. + # If the mod is running behind a proxy, each backend should use a unique value. + # If this value is empty, level key will be based on the server's seed hash. + levelKeyPrefix = "" + # + # Defines the distance allowed to be synchronized around the player. + # Should be the same or larger than maxGenerationRequestDistance in most cases. + maxSyncOnLoadRequestDistance = 4096 + # + # If true, clients will receive updated LODs when joining or loading new LODs. + synchronizeOnLoad = true + # + # Defines the distance allowed to generate around the player. + maxGenerationRequestDistance = 4096 + # + # If true, clients will receive real-time LOD updates for chunks outside the client's render distance. + enableRealTimeUpdates = true + # + # Makes the server send level keys for each world. + # Disable this if you use alternative ways to send level keys. + sendLevelKeys = true + # + # How many LOD generation requests per second should a client send? + # Also limits the number of client requests allowed to stay in the server's queue. + generationRequestRateLimit = 20 + # + # How many LOD sync requests per second should a client send? + # Also limits the amount of player's requests allowed to stay in the server's queue. + syncOnLoadRateLimit = 50 + +[common] + + [common.lodBuilding] + # + # How should block data be compressed when creating LOD data? + # This setting will only affect new or updated LOD data, + # any data already generated when this setting is changed will be + # unaffected until it is modified or re-loaded. + # + # MERGE_SAME_BLOCKS + # Every block/biome change is recorded in the database. + # This is what DH 2.0 and 2.0.1 all used by default and will store a lot of data. + # Expected Compression Ratio: 1.0 + # + # VISUALLY_EQUAL + # Only visible block/biome changes are recorded in the database. + # Hidden blocks (IE ores) are ignored. + # Expected Compression Ratio: 0.7 + worldCompression = "VISUALLY_EQUAL" + # + # If true LOD generation for pre-existing chunks will attempt to pull the lighting data + # saved in Minecraft's Region files. + # If false DH will pull in chunks without lighting and re-light them. + # + # Setting this to true will result in faster LOD generation + # for already generated worlds, but is broken by most lighting mods. + # + # Set this to false if LODs are black. + pullLightingForPregeneratedChunks = 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" + # + # Normally DH will attempt to skip creating LODs for chunks it's already seen + # and that haven't changed. + # + # However sometimes that logic incorrecly prevents LODs from being updated. + # Disabling this check may fix issues where LODs aren't updated after + # blocks have been changed. + disableUnchangedChunkCheck = false + # + # True: Recalculate chunk height maps before chunks can be used by DH. + # This can fix problems with worlds created by World Painter or + # other external tools where the heightmap format may be incorrect. + # False: Assume any height maps handled by Minecraft are correct. + # + # Fastest: False + # Most Compatible: True + recalculateChunkHeightmaps = false + + [common.multiThreading] + # + # How many threads should be used when building LODs? + # + # These threads run when terrain is generated, when + # certain graphics settings are changed, and when moving around the world. + # + # Multi-threading Note: + # If the total thread count in Distant Horizon's config is more threads than your CPU has cores, + # CPU performance may suffer if Distant Horizons has a lot to load or generate. + # This can be an issue when first loading into a world, when flying, and/or when generating new terrain. + numberOfLodBuilderThreads = 2 + # + # 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 + # + # How many threads should be used when (de)compressing LODs + # that are received/sent over the network? + # + # This pool doesn't do anything in singleplayer or when connected + # to a server that doesn't support DH networking. + # + # 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. + numberOfNetworkCompressionThreads = 5 + # + # A value between 1.0 and 0.0 that represents the 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" + # + # A value between 1.0 and 0.0 that represents the 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" + # + # A value between 1.0 and 0.0 that represents the percentage + # of time each thread can run before going idle. + # + # This can be used to reduce CPU usage if the thread count + # is already set to 1 for the given option, or more finely + # tune CPU performance. + runTimeRatioForFileHandlerThreads = "1.0" + # + # A value between 1.0 and 0.0 that represents the 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" + # + # A value between 1.0 and 0.0 that represents the 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. + runTimeRatioForNetworkCompressionThreads = "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 + # + # 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 + # + # 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 + + [common.logging] + # + # If enabled, the mod will log information about the renderer OpenGL process. + # This can be useful for debugging. + logRendererGLEvent = "LOG_ERROR_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_ERROR_TO_CHAT_AND_INFO_TO_FILE" + # + # If enabled, the mod will log information about network operations. + # This can be useful for debugging. + logNetworkEvent = "LOG_ERROR_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_ERROR_TO_CHAT_AND_INFO_TO_FILE" + # + # If enabled, the mod will log information about the world generation process. + # This can be useful for debugging. + logWorldGenEvent = "LOG_ERROR_TO_CHAT_AND_INFO_TO_FILE" + # + # If enabled, the mod will log information about the world generation process. + # This can be useful for debugging. + logWorldGenLoadEvent = "LOG_ERROR_TO_CHAT_AND_INFO_TO_FILE" + + [common.logging.warning] + # + # If enabled, a chat message will be displayed when DH has too many chunks + # queued for updating. + showUpdateQueueOverloadedChatWarning = false + # + # If enabled, a chat message will be displayed if Java doesn't have enough + # memory allocated to run DH well. + showLowMemoryWarningOnStartup = true + # + # If enabled, a chat message will be displayed when a replay is started + # giving some basic information about how DH will function. + showReplayWarningOnStartup = true + # + # If enabled, a chat message will be displayed when a potentially problematic + # mod is installed alongside DH. + showModCompatibilityWarningsOnStartup = false + + [common.worldGenerator] + # + # How detailed should LODs be generated outside the vanilla render distance? + # + # PRE_EXISTING_ONLY + # Only create LOD data for already generated chunks. + # + # + # SURFACE + # Generate the world surface, + # this does NOT include trees, + # or structures. + # + # FEATURES + # Generate everything except structures. + # WARNING: This may cause world generator bugs or instability when paired with certain world generator mods. + # + # INTERNAL_SERVER + # Ask the local server to generate/load each chunk. + # This is the most compatible and will generate structures correctly, + # but may cause server/simulation lag. + # Note: unlike other modes this option DOES save generated chunks to + # Minecraft's region files. + distantGeneratorMode = "FEATURES" + # + # Should Distant Horizons slowly generate LODs + # outside the vanilla render distance? + enableDistantGeneration = false + +[client] + # + # Should Distant Horizon's config button appear in Minecraft's options screen next to the fov slider? + showDhOptionsButtonInMinecraftUi = true + + [client.advanced] + + [client.advanced.autoUpdater] + # + # 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" + # + # Automatically check for updates on game launch? + enableAutoUpdater = false + # + # Should Distant Horizons silently, automatically download and install new versions? + enableSilentUpdates = false + + [client.advanced.debugging] + # + # If enabled this will disable (most) vanilla Minecraft rendering. + # + # NOTE: Do not report any issues when this mode is on! + # This setting is only for fun and debugging. + # Mod compatibility is not guaranteed. + lodOnlyMode = false + # + # Stops vertex colors from being passed. + # Useful for debugging shaders + enableWhiteWorld = false + # + # What renderer is active? + # + # DEFAULT: Default lod renderer + # DEBUG: Debug testing renderer + # DISABLED: Disable rendering + rendererMode = "DEFAULT" + # + # If enabled the LODs will render as wireframe. + renderWireframe = false + # + # If true the F8 key can be used to cycle through the different debug modes. + # and the F6 key can be used to enable and disable LOD rendering. + enableDebugKeybindings = false + # + # If true overlapping quads will be rendered as bright red for easy identification. + # If false the quads will be rendered normally. + showOverlappingQuadErrors = false + # + # Should specialized colors/rendering modes be used? + # + # OFF: LODs will be drawn with their normal colors. + # SHOW_DETAIL: LODs' color will be based on their detail level. + # SHOW_BLOCK_MATERIAL: LODs' color will be based on their material. + # SHOW_OVERLAPPING_QUADS: LODs will be drawn with total white, but overlapping quads will be drawn with red. + debugRendering = "OFF" + # + # If true OpenGL Buffer garbage collection will be logged + # this also includes the number of live buffers. + logBufferGarbageCollection = false + + [client.advanced.debugging.debugWireframe] + # + # Render LOD section status? + showRenderSectionStatus = false + # + # Render full data update/lock status? + showFullDataUpdateStatus = false + # + # Render queued world gen tasks? + showWorldGenQueue = false + # + # A white box will be drawn when an LOD starts rendering + # and a purple box when an LOD stops rendering. + # + # This can be used to debug Quad Tree holes. + showRenderSectionToggling = false + # + # Render Quad Tree Rendering status? + showQuadTreeRenderStatus = false + # + # If enabled, various wireframes for debugging internal functions will be drawn. + # + # NOTE: There WILL be performance hit! + # Additionally, only stuff that's loaded after you enable this + # will render their debug wireframes. + enableRendering = false + + [client.advanced.debugging.openGl] + # + # Requires a reboot to change. + overrideVanillaGLLogger = true + # + # Defines how OpenGL errors are handled. + # May incorrectly catch OpenGL errors thrown by other mods. + # + # IGNORE: Do nothing. + # LOG: write an error to the log. + # LOG_THROW: write to the log and throw an exception. + # Warning: this should only be enabled when debugging the LOD renderer + # as it may break Minecraft's renderer when an exception is thrown. + glErrorHandlingMode = "LOG" + + [client.advanced.debugging.exampleConfigScreen] + shortTest = "69" + mapTest = "{}" + byteTest = "8" + longTest = "42069" + listTest = ["option 1", "option 2", "option 3"] + boolTest = false + doubleTest = "420.69" + floatTest = "0.42069" + linkableTest = 420 + intTest = 69420 + stringTest = "Test input box" + + [client.advanced.graphics] + + [client.advanced.graphics.culling] + # + # If false all beacons near the camera won't be drawn to prevent vanilla overdraw. + # If true all beacons will be rendered. + # + # Generally this should be left as true. It's main purpose is for debugging + # beacon updating/rendering. + disableBeaconDistanceCulling = true + # + # 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" + # + # If enabled caves will be culled + # + # NOTE: This feature is under development and + # it is VERY experimental! Please don't report + # any issues related to this feature. + # + # Additional Info: Currently this cull all faces + # with skylight value of 0 in dimensions that + # does not have a ceiling. + enableCaveCulling = true + # + # Identical to the other frustum culling option + # only used when a shader mod is present using the DH API + # and the shadow pass is being rendered. + # + # Disable this if shadows render incorrectly. + disableShadowPassFrustumCulling = false + # + # At what Y value should cave culling start? + # Lower this value if you get walls for areas with 0 light. + caveCullingHeight = 60 + # + # A comma separated list of block resource locations that shouldn't be rendered + # if they are in a 0 sky light underground area. + # Note: air is always included in this list. + ignoredRenderCaveBlockCsv = "minecraft:glow_lichen,minecraft:rail,minecraft:water,minecraft:lava,minecraft:bubble_column" + # + # A comma separated list of block resource locations that won't be rendered by DH. + # Note: air is always included in this list. + ignoredRenderBlockCsv = "minecraft:barrier,minecraft:structure_void,minecraft:light,minecraft:tripwire,minecraft:brown_mushroom" + # + # If true LODs outside the player's camera + # aren't drawn, increasing GPU performance. + # + # If false all LODs are drawn, even those behind + # the player's camera, decreasing GPU performance. + # + # Disable this if you see LODs disappearing at the corners of your vision. + disableFrustumCulling = false + + [client.advanced.graphics.ssao] + # + # Determines how many points in space are sampled for the occlusion test. + # Higher numbers will improve quality and reduce banding, but will increase GPU load. + sampleCount = 6 + # + # Determines how dark the Screen Space Ambient Occlusion effect will be. + strength = "0.2" + # + # The radius, measured in pixels, that blurring is calculated for the SSAO. + # Higher numbers will reduce banding at the cost of GPU performance. + blurRadius = 2 + # + # Increasing the value can reduce banding at the cost of reducing the strength of the effect. + bias = "0.02" + # + # Determines how dark the occlusion shadows can be. + # 0 = totally black at the corners + # 1 = no shadow + minLight = "0.25" + # + # Enable Screen Space Ambient Occlusion + enableSsao = true + # + # Determines the radius Screen Space Ambient Occlusion is applied, measured in blocks. + radius = "4.0" + + [client.advanced.graphics.noiseTexture] + # + # Should a noise texture be applied to LODs? + # + # This is done to simulate textures and make the LODs appear more detailed. + enableNoiseTexture = true + # + # Defines how far should the noise texture render before it fades away. (in blocks) + # Set to 0 to disable noise from fading away + noiseDropoff = 1024 + # + # How many steps of noise should be applied to LODs? + noiseSteps = 4 + # + # How intense should the noise should be? + noiseIntensity = "5.0" + + [client.advanced.graphics.experimental] + # + # 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 + + [client.advanced.graphics.genericRendering] + # + # If true LOD clouds will be rendered. + enableCloudRendering = true + # + # If true LOD beacon beams will be rendered. + enableBeaconRendering = true + # + # If true non terrain objects will be rendered in DH's terrain. + # This includes beacon beams and clouds. + enableGenericRendering = true + # + # Can be disabled to use much slower but more compatible direct rendering. + # Disabling this can be used to fix some crashes on Mac. + enableInstancedRendering = true + + [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" + # + # If true LODs will fade away as you get closer to them. + # If false LODs will cut off abruptly at a set distance from the camera. + # This setting is affected by the vanilla overdraw prevention config. + ditherDhFade = true + # + # How bright LOD colors are. + # + # 0 = black + # 1 = normal + # 2 = near white + brightnessMultiplier = "1.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" + # + # How saturated LOD colors are. + # + # 0 = black and white + # 1 = normal + # 2 = very saturated + saturationMultiplier = "1.0" + # + # This indicates how well LODs will represent + # overhangs, caves, floating islands, etc. + # Higher options will make the world more accurate, butwill increase memory and GPU usage. + # + # Lowest Quality: HEIGHT_MAP + # Highest Quality: EXTREME + verticalQuality = "MEDIUM" + # + # What blocks shouldn't be rendered as LODs? + # + # NONE: Represent all blocks in the LODs + # NON_COLLIDING: Only represent solid blocks in the LODs (tall grass, torches, etc. won't count for a LOD's height) + blocksToIgnore = "NON_COLLIDING" + # + # The radius of the mod's render distance. (measured in chunks) + lodChunkRenderDistanceRadius = 256 + # + # What the value should vanilla Minecraft's texture LodBias be? + # If set to 0 the mod wont overwrite vanilla's default (which so happens to also be 0) + lodBias = "0.0" + # + # How should the sides and bottom of grass block LODs render? + # + # AS_GRASS: all sides of dirt LOD's render using the top (green) color. + # FADE_TO_DIRT: sides fade from grass to dirt. + # AS_DIRT: sides render entirely as dirt. + grassSideRendering = "FADE_TO_DIRT" + # + # Should the blocks underneath avoided blocks gain the color of the avoided block? + # + # True: a red flower will tint the grass below it red. + # False: skipped blocks will not change color of surface below them. + tintWithAvoidedBlocks = true + # + # This indicates how quickly LODs decrease in quality the further away they are. + # Higher settings will render higher quality fake chunks farther away, + # but will increase memory and GPU usage. + horizontalQuality = "MEDIUM" + # + # How should LOD transparency be handled. + # + # COMPLETE: LODs will render transparent. + # FAKE: LODs will be opaque, but shaded to match the blocks underneath. + # DISABLED: LODs will be opaque. + transparency = "COMPLETE" + # + # How should vanilla Minecraft fade into Distant Horizons LODs? + # + # NONE: Fastest, there will be a pronounced border between DH and MC rendering. + # SINGLE_PASS: Fades after MC's transparent pass, opaque blocks underwater won't be faded. + # DOUBLE_PASS: Slowest, fades after both MC's opaque and transparent passes, provides the smoothest transition. + vanillaFadeMode = "DOUBLE_PASS" + + [client.advanced.graphics.fog] + # + # Should Minecraft's fog render? + # Note: Other mods may conflict with this setting. + enableVanillaFog = false + # + # What is the maximum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + farFogMax = "1.0" + # + # Determines if fog is drawn on DH LODs. + enableDhFog = true + # + # 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.4" + # + # What is the minimum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + farFogMin = "0.0" + # + # 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" + # + # How should the fog thickness should be calculated? + # + # LINEAR: Linear based on distance (will ignore 'density') + # EXPONENTIAL: 1/(e^(distance*density)) + # EXPONENTIAL_SQUARED: 1/(e^((distance*density)^2) + farFogFalloff = "EXPONENTIAL_SQUARED" + # + # Used in conjunction with the Fog Falloff. + farFogDensity = "2.5" + # + # Where should the far fog end? + # + # 0.0: Fog ends at player's position. + # 1.0: Fog ends at the closest edge of the vanilla render distance. + # 1.414: Fog ends at the corner of the vanilla render distance. + farFogEnd = "1.0" + + [client.advanced.graphics.fog.heightFog] + # + # 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 + heightFogDirection = "BELOW_SET_HEIGHT" + # + # What is the minimum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + heightFogMin = "0.0" + # + # If the height fog is calculated around a set height, what is that height position? + heightFogBaseHeight = "80.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 = "20.0" + # + # How should height effect the fog thickness? + # Note: height fog is combined with the other fog settings. + # + # SPHERICAL: Fog is calculated based on camera distance. + # CYLINDRICAL: Ignore height, fog is calculated based on horizontal distance. + # + # MAX: max(heightFog, farFog) + # ADDITION: 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 + heightFogMixMode = "SPHERICAL" + # + # 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 = "0.6" + + [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" + diff --git a/config/NoChatReports/NCR-Client.json b/config/NoChatReports/NCR-Client.json new file mode 100644 index 0000000..d5b520a --- /dev/null +++ b/config/NoChatReports/NCR-Client.json @@ -0,0 +1,20 @@ +{ + "defaultSigningMode": "PROMPT", + "enableMod": true, + "showNCRButton": true, + "showReloadButton": true, + "verifiedIconEnabled": true, + "showServerSafety": false, + "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/aileron.json b/config/aileron.json new file mode 100644 index 0000000..0426ec2 --- /dev/null +++ b/config/aileron.json @@ -0,0 +1,8 @@ +{ + "fireworkChanges": true, + "doCameraRoll": false, + "cameraRollScale": 1.0, + "cameraRollSpeed": 0.1, + "campfiresPushPlayers": true, + "smokeStackChargeTicks": 20 +} diff --git a/config/ambientsounds-client.json b/config/ambientsounds-client.json new file mode 100644 index 0000000..c749ee5 --- /dev/null +++ b/config/ambientsounds-client.json @@ -0,0 +1,222 @@ +{ + "general": { + "engines": 0, + "volume": 1, + "useSoundMasterSource": false, + "scanStepAmount": 100, + "playSoundWithOffset": false + }, + "dimensions": { + "abyssalcraft": 1, + "betweenlands": 1, + "cave": 1, + "end": 1, + "galacticraft": 1, + "galacticraft.planets": 1, + "midnight": 1, + "nether": 1, + "surface": 1, + "twilightforest": 1, + "void": 1 + }, + "regions": { + "abyssalcraft_dark": { + "overall": 1, + "suspense.suspense": 1 + }, + "end_unknown": { + "overall": 1, + "suspense.suspense": 1 + }, + "galacticraft_planets_wind": { + "overall": 1, + "wind.light-wind": 1 + }, + "nether_suspense": { + "overall": 1, + "nether": 1 + }, + "twilightforest_unknown": { + "overall": 1, + "suspense.suspense": 1 + }, + "void_dark": { + "overall": 1, + "suspense.suspense": 1 + }, + "beach": { + "overall": 1, + "beach": 1, + "seagull": 1, + "seagull-long": 1 + }, + "cave_ambience": { + "overall": 1, + "cave": 1, + "cave-water": 1, + "cave-deep": 1, + "cave-large": 1 + }, + "cave_deep-dark": { + "overall": 1, + "deep-dark": 1, + "water-droplets": 1 + }, + "cave": { + "overall": 1 + }, + "cave_lush": { + "overall": 1, + "cave-lush": 1, + "frog": 1 + }, + "cold_artic": { + "overall": 1, + "heavy-wind": 1 + }, + "cold": { + "overall": 1, + "wind.light-wind": 1 + }, + "desert": { + "overall": 1, + "cicadas-desert": 1, + "wind.light-wind": 1 + }, + "forest_cold": { + "overall": 1, + "crow": 1 + }, + "forest": { + "overall": 1, + "bird-ambience": 1, + "owl": 1 + }, + "forest_roofed": { + "overall": 1, + "bird-ambience-spooky": 1 + }, + "grass": { + "overall": 1, + "cricket": 1, + "cricket-night": 1, + "cicadas-night": 1 + }, + "highland": { + "overall": 1, + "heavy-wind": 1, + "wind-in-leaves": 1 + }, + "jungle": { + "overall": 1, + "cricket-jungle": 1, + "cricket-jungle-night": 1, + "bird-ambience-jungle": 1, + "bird-ambience-jungle-night": 1 + }, + "mesa": { + "overall": 1, + "wind-mesa": 1 + }, + "mushroom_fields": { + "overall": 1, + "cicadas-mushroom-fields": 1, + "special-mushroom-fields": 1 + }, + "ocean": { + "overall": 1, + "ocean": 1, + "wind.light-wind": 1 + }, + "ocean_deep": { + "overall": 1, + "whale": 1 + }, + "plains": { + "overall": 1, + "cricket": 1, + "cricket-night": 1, + "cicadas-night": 1 + }, + "rain": { + "overall": 1, + "rain": 1 + }, + "savanna": { + "overall": 1, + "cricket": 1, + "cicadas": 1, + "cicadas-desert": 1, + "cricket-warm-night": 1, + "wolf": 1, + "long-wolf": 1, + "bird-warm": 1 + }, + "sky": { + "overall": 1, + "wind.light-wind": 1 + }, + "space": { + "overall": 1 + }, + "storm_away": { + "overall": 1, + "storm-away": 1, + "howling-wind": 1 + }, + "storm_close": { + "overall": 1, + "storm-close": 1, + "wind": 1 + }, + "surface": { + "overall": 1 + }, + "swamp": { + "overall": 1, + "cricket-swamp": 1, + "cricket-warm-night": 1, + "frog": 1, + "mouring_dove": 1 + }, + "taiga": { + "overall": 1, + "bird-ambience-huge": 1 + }, + "underwater": { + "overall": 1, + "underwater": 1, + "underwater-deep": 1 + }, + "underworld": { + "overall": 1, + "underworld": 1 + }, + "warden": { + "overall": 1, + "warden": 1 + } + }, + "categories": { + "animal": { + "animal": 1, + "bird": { + "bird": 1, + "bird_day": 1, + "bird_night": 1 + }, + "cicadas": 1, + "cricket": { + "cricket": 1, + "cricket_day": 1, + "cricket_night": 1 + } + }, + "cave": 1, + "weather": 1, + "wind": 1 + }, + "fade-volume": 0.005, + "fade-pitch": 0.005, + "silent-dimensions": [] +} \ No newline at end of file diff --git a/config/bclib/client.json b/config/bclib/client.json new file mode 100644 index 0000000..6ed14ec --- /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]": false, + "notTheDonorType [default: true]": true + }, + "auto_sync": { + "enabled [default: true]": true, + "acceptConfigs [default: true]": true, + "acceptFiles [default: true]": true, + "acceptMods [default: true]": true, + "displayModInfo [default: true]": true, + "debugHashes [default: false]": false + }, + "rendering": { + "customFogRendering [default: true]": 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/itemswapper.json b/config/itemswapper.json new file mode 100644 index 0000000..15fe863 --- /dev/null +++ b/config/itemswapper.json @@ -0,0 +1,24 @@ +{ + "configVersion": 1, + "showTooltips": true, + "toggleMode": false, + "showCursor": true, + "serverPreventModUsage": false, + "editMode": false, + "creativeCheatMode": true, + "ignoreHotbar": true, + "unlockListMouse": false, + "disableShulkers": false, + "controllerSpeed": 8.0, + "mouseSpeed": 1.0, + "fallbackInventory": true, + "vivecraftCompat": true, + "allowWalkingWithUI": true, + "startOnItem": false, + "pickblockOnToolsWeapons": "VANILLA_ON_TOOL", + "experimentalAutoPalette": false, + "alwaysInventory": false, + "showHotbar": false, + "rememberPalette": false, + "showOpenInventoryButton": true +} \ No newline at end of file diff --git a/config/openloader/resources/pixel-twemoji-9x.pw.toml b/config/openloader/resources/pixel-twemoji-9x.pw.toml new file mode 100644 index 0000000..3a7af73 --- /dev/null +++ b/config/openloader/resources/pixel-twemoji-9x.pw.toml @@ -0,0 +1,13 @@ +name = "Pixel Twemoji 9x" +filename = "PixelTwemojiMC-9.zip" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/q2fYGCpL/versions/1p9aSzAY/PixelTwemojiMC-9.zip" +hash-format = "sha512" +hash = "cddaa185ab934b6772ada3c5845afcc340bbb004d83d05685c851aea1b6bfcd7b0d4a3050ba48a8823d7077f9cf22b138da6cb8e12392bbc7de370684fd62108" + +[update] +[update.modrinth] +mod-id = "q2fYGCpL" +version = "1p9aSzAY" diff --git a/config/openloader/resources/what.zip b/config/openloader/resources/what.zip new file mode 100644 index 0000000..1565db0 Binary files /dev/null and b/config/openloader/resources/what.zip differ diff --git a/config/rolling_down_in_the_deep-client.json b/config/rolling_down_in_the_deep-client.json new file mode 100644 index 0000000..55ebee8 --- /dev/null +++ b/config/rolling_down_in_the_deep-client.json @@ -0,0 +1,15 @@ +{ + "enabled": false, + "strafeRollStrength": 2.5, + "strafeYawStrength": 1.0, + "strafeDoStrafe": true, + "smoothing": { + "smoothingEnabled": true, + "strafeSmoothingEnabled": true, + "values": { + "pitch": 0.5, + "yaw": 0.5, + "roll": 0.5 + } + } +} \ No newline at end of file diff --git a/config/sound_physics_remastered/soundphysics.properties b/config/sound_physics_remastered/soundphysics.properties new file mode 100644 index 0000000..7c3b5ac --- /dev/null +++ b/config/sound_physics_remastered/soundphysics.properties @@ -0,0 +1,96 @@ +# 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 +# The maximum distance a sound can be processed +max_sound_processing_distance=512.0 +# 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=true diff --git a/config/tectonic.json b/config/tectonic.json new file mode 100644 index 0000000..7c74e63 --- /dev/null +++ b/config/tectonic.json @@ -0,0 +1,27 @@ +{ + "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": true, + "terrain_scale": 1.125 + }, + "features": { + // Enabling deeper oceans will lower vanilla ocean monuments to compensate for lower depth. + // Snow start offset moves where snow starts, preventing biomes like Taigas looking weird next to mountain ranges. + "deeper_oceans": true, + "desert_dunes": true, + "lava_rivers": true, + "snow_start_offset": 128, + "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 +} diff --git a/config/tips.json b/config/tips.json new file mode 100644 index 0000000..a1258a7 --- /dev/null +++ b/config/tips.json @@ -0,0 +1,13 @@ +{ + "defaultCycleTime": 5000, + "ignoredNamespaces": [], + "ignoredTips": [], + "hideUnlocalizedTips": false, + "tipRenderWidthPercent": 0.35, + "defaultTitle": { + "bold": true, + "underlined": true, + "color": "yellow", + "translate": "tipsmod.title.default" + } +} \ No newline at end of file diff --git a/config/treechop-client.toml b/config/treechop-client.toml new file mode 100644 index 0000000..9cf7db0 --- /dev/null +++ b/config/treechop-client.toml @@ -0,0 +1,36 @@ + +[chopping] + #Default setting for the effect that sneaking has on chopping (can be cycled in-game) + #Allowed Values: NONE, INVERT_CHOPPING, INVERT_FELLING + sneakBehavior = "INVERT_CHOPPING" + #Ignore trees without connected leaves (can be toggled in-game) + treesMustHaveLeaves = true + #Enable chopping in creative mode (even when false, sneaking can still enable chopping) (can be toggled in-game) + chopInCreativeMode = false + #Default setting for whether or not the user wishes to chop (can be toggled in-game) + choppingEnabled = true + #Default setting for whether or not the user wishes to fell tree when chopping (can be toggled in-game) + fellingEnabled = true + +[visuals] + #Visually replace the interior sides of logs with a chopped texture instead of bark + removeBarkOnInteriorLogs = true + + [visuals.choppingIndicator] + #Vertical location of the indicator relative to the player's crosshairs; positive values move the indicator down + #Range: -256 ~ 256 + yOffset = 0 + #Horizontal location of the indicator relative to the player's crosshairs; positive values move the indicator to the right + #Range: -256 ~ 256 + xOffset = 16 + #Show an on-screen indicator when a block will be chopped instead of broken (can be toggled in-game) + enabled = true + +[settingsScreen] + #Show chat confirmations when using hotkeys to change chop settings (can be toggled in-game) + showFeedbackMessages = true + #Show in-game options for enabling and disable felling (can be toggled in-game) + showFellingOptions = false + #Show tooltips in the settings screen (can be toggled in-game) + showTooltips = true + diff --git a/config/voicechat/voicechat-client.properties b/config/voicechat/voicechat-client.properties new file mode 100644 index 0000000..3123781 --- /dev/null +++ b/config/voicechat/voicechat-client.properties @@ -0,0 +1,90 @@ +# Simple Voice Chat client config v1.20.1-2.5.27 + +# If the voice chat onboarding process has been finished +onboarding_finished=false +# The voice chat volume +voice_chat_volume=1.0 +# The threshold for the voice activation method (in dB) +voice_activation_threshold=-50.0 +# The voice chat microphone amplification +microphone_amplification=1.0 +# The microphone activation method +# Valid values are 'PTT' and 'VOICE' +microphone_activation_type=PTT +# The size of the audio output buffer (in packets) +# Higher values mean a higher latency but less crackling +# Increase this value if you have an unstable internet connection +output_buffer_size=5 +# The maximum number of audio packets that should be held back if a packet arrives out of order or is dropped +# This prevents audio packets that are only slightly out of order from being discarded +# 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, and so on +voice_deactivation_delay=25 +# The microphone used by the voice chat +# Leave blank to use the default device +microphone= +# The speaker used by the voice chat +# Leave blank to use the default device +speaker= +# If the microphone is muted (only relevant for the voice activation method) +muted=true +# If the voice chat is disabled (both sound and microphone off) +disabled=false +# If the voice chat HUD, group chat HUD, and other in-game icons should be hidden +hide_icons=false +# If the group chat HUD should be visible +show_group_hud=true +# If your own player icon should be displayed in the group chat HUD when you are in a group +show_own_group_icon=true +# The scale of the player icons in the group chat HUD +group_hud_icon_scale=2.0 +# The orientation of the player icons in the group chat HUD +# Valid values are 'VERTICAL' and 'HORIZONTAL' +group_player_icon_orientation=VERTICAL +# The X position of the player icons in the group chat HUD +# Negative values mean anchoring to the right instead +group_player_icon_pos_x=4 +# The Y position of the player icons in the group chat HUD +# Negative values mean anchoring to the bottom instead +group_player_icon_pos_y=4 +# The X position of the icons in the voice chat HUD +# Negative values mean anchoring to the right instead +hud_icon_pos_x=16 +# The Y position of the icons in the voice chat HUD +# Negative values mean anchoring to the bottom instead +hud_icon_pos_y=-16 +# The scale of the icons in the voice chat HUD, such as microphone or connection status +hud_icon_scale=1.0 +# The location where recordings should be saved +# Leave blank to use the default location +recording_destination= +# The quality of the recorded voice chat audio +# 0 = highest quality, 9 = lowest quality +recording_quality=2 +# If noise suppression should be enabled +denoiser=true +# If the voice chat should work in singleplayer or in worlds shared over LAN +run_local_server=true +# Whether to use the Java implementation of microphone capture 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 interface should also display offline players +offline_player_volume_adjustment=false +# The 3D audio type +# Valid values are 'NORMAL', 'REDUCED', and 'OFF' +audio_type=NORMAL +# If the mod should load native libraries on the client +# When disabled, the Java Opus implementation will be used instead, the denoiser won't be available, and you won't be able to record the voice chat audio +use_natives=true +# How listening to other players should work when using freecam mods +# Valid values are 'CAMERA' and 'PLAYER' +# CAMERA: You will hear the voice chat around your camera. Whether you will still be able to hear the voice chat when the camera is far away from your character depends on the voice chat broadcast range of the server +# PLAYER: You will hear the voice chat around your character no matter where your camera is +freecam_mode=PLAYER +# If enabled, you will be automatically muted when joining a world +mute_on_join=false diff --git a/index.toml b/index.toml new file mode 100644 index 0000000..86177ba --- /dev/null +++ b/index.toml @@ -0,0 +1,1480 @@ +hash-format = "sha256" + +[[files]] +file = "README.md" +hash = "cd3ae2905b00991d369bc681be56fe2a6c132731eccee3f79fd5f05f8bd4e511" + +[[files]] +file = "config/DistantHorizons.toml" +hash = "da2034687d2a8a2ecfb0c1ca07f756e02b3b2266b1f11a5566d9dcaa5af3118a" + +[[files]] +file = "config/NoChatReports/NCR-Client.json" +hash = "be88d44466fd4d68eeead41352fecd920243858ee4ca18dcd6b5f9a728108412" + +[[files]] +file = "config/aileron.json" +hash = "0acf51cddc16eacd4ff54239f6413f7ff651129bec6fd8c50c8c1836e5702a79" + +[[files]] +file = "config/ambientsounds-client.json" +hash = "a5a48d2e3b9e851be1a0e7b99a518b34fbb2b47ecff4ee06a4261d84ab50655e" + +[[files]] +file = "config/bclib/client.json" +hash = "51ea41bb630e8879457254ffc4967e3942dc75a9643b689373a745d1f47f3bb2" + +[[files]] +file = "config/itemswapper.json" +hash = "f4800ff252692c27fef48552f202466b09a452226871bbccc77b5c73ca557eaa" + +[[files]] +file = "config/openloader/resources/pixel-twemoji-9x.pw.toml" +hash = "51a5764db61a0378ef2e36ae214a99aaa6ce0ac920c4b603f75201f97fb0a388" +metafile = true + +[[files]] +file = "config/openloader/resources/what.zip" +hash = "7f995abd928962f16f4a90030d128c6965358e5b2044944858fdd48441a55d06" + +[[files]] +file = "config/rolling_down_in_the_deep-client.json" +hash = "ea32ed173ef2e077b8c93bba37b168b675b379279b0380f1ac7223ae4d489aee" + +[[files]] +file = "config/sound_physics_remastered/soundphysics.properties" +hash = "b5d28290c541cbefb299864d6081715d82611b996649c2630140efd9db11d609" + +[[files]] +file = "config/tectonic.json" +hash = "218ea6c228b0df801483570b610481acdb9591037cad7cc074e41c839e4020c9" + +[[files]] +file = "config/tips.json" +hash = "af85f2909fde8c0dbea201fb6fb4afc5070be875c24266b47887f33f03c19321" + +[[files]] +file = "config/treechop-client.toml" +hash = "b03b349044903a4e07956a31142161b8f6eb2c6ea161f3a4ebfaf90f7644c4f2" + +[[files]] +file = "config/voicechat/voicechat-client.properties" +hash = "72fb8efcf83899e98a113ac72a95d9580ba59a9b923ab0c511b598afc37a1f88" + +[[files]] +file = "mods/advancement-frames.pw.toml" +hash = "7ce890cee57c2c46044b9b999bdf786ade69e26a08ef820fdd6e9d4eef5eecc1" +metafile = true + +[[files]] +file = "mods/aileron.pw.toml" +hash = "8dfd5c5edebebb525b6c2bd9365bd7a3869ce98fb5b1329a7fee8094e98d13dc" +metafile = true + +[[files]] +file = "mods/almost-unified.pw.toml" +hash = "f00be18ade67ea33c5b1e8eb27a151b6a4507e5d01455f33eff5329420db2d98" +metafile = true + +[[files]] +file = "mods/ambientsounds.pw.toml" +hash = "6738823249960d898563d1f715f9db5eab9164ed7af1bf40a3328e93e6e0129a" +metafile = true + +[[files]] +file = "mods/amendments.pw.toml" +hash = "f9278d338d0fc16a343206fdce858d5d57adb84a2ee12eb815053695f37a1886" +metafile = true + +[[files]] +file = "mods/another-furniture.pw.toml" +hash = "e8d8fda7893c13e034a09b33d0a1258a54b0445d533f90d00a50d9a8d862921a" +metafile = true + +[[files]] +file = "mods/antique-atlas-4.pw.toml" +hash = "999898de55bf75c6ca35908cbecf65947fb3cc2caf42e5a21b0ef0a9775b9c2c" +metafile = true + +[[files]] +file = "mods/appleskin.pw.toml" +hash = "7d44149b8b22e0b19b082f49809edfc1b5f170e5d1d297cd73ae88c0b432c3ab" +metafile = true + +[[files]] +file = "mods/aquamirae.pw.toml" +hash = "d48e943c59dd7c5c0c20b80afd23e18e05385ed79b37e80238f949ec0f5e8d9c" +metafile = true + +[[files]] +file = "mods/archers.pw.toml" +hash = "b977041d4ddd1f03e5be5c27cbae9fcfc8a6a5255edbb2933d6dea46651e86db" +metafile = true + +[[files]] +file = "mods/architectury-api.pw.toml" +hash = "e12dce3e543168379a2856c66064ee2001e6420a9dfc6163f37b78e518947456" +metafile = true + +[[files]] +file = "mods/athena-ctm.pw.toml" +hash = "db0cf0e8fa916c1f982e0e3b84f3bed423b7f68e24446508e6dd4374d578fdab" +metafile = true + +[[files]] +file = "mods/audioplayer.pw.toml" +hash = "51fc6770999b30492643e31053c99069fc0eee276ba6337dfc10e185a3681b8f" +metafile = true + +[[files]] +file = "mods/azurelib-armor.pw.toml" +hash = "26a5cee35b797140d098a3e8c039b868edd1779e28d4a2cba1cd73e8ed32ca34" +metafile = true + +[[files]] +file = "mods/badstdout.pw.toml" +hash = "cafbf8251105b30df416906866ab036547c0c95f61dd02f9d2db8490e2fded0b" +metafile = true + +[[files]] +file = "mods/bclib.pw.toml" +hash = "ab1e22cc66189067e002a204c70c553cc7cc0e738bd602f405d7cc37561260be" +metafile = true + +[[files]] +file = "mods/beans-backpacks.pw.toml" +hash = "edfae8ace7b7739b977de09f1983bfd6159de77c02b3197248199a98ac0bd29f" +metafile = true + +[[files]] +file = "mods/beautify-refabricated.pw.toml" +hash = "724353a7730f54b29378ba8e374c78372c8a8f072e578b5758b11fc150f470b7" +metafile = true + +[[files]] +file = "mods/beetlebox.pw.toml" +hash = "b9be041e30dc9554bb3038a9550126c3fa88ccec8c85d9b9fb1d4c72055f8fab" +metafile = true + +[[files]] +file = "mods/bellsandwhistles.pw.toml" +hash = "bee459c3b3739a46717f04675ba175d8a5d26fc00a8683acd4ef5bdfb73a9066" +metafile = true + +[[files]] +file = "mods/better-archeology.pw.toml" +hash = "d7dcbb9489b17fbe221d3a59ab2503293b219cee29d07a08aefbe32c5f3bf160" +metafile = true + +[[files]] +file = "mods/better-clouds.pw.toml" +hash = "39ac47983e2ab30d032bd76128ed8811615833de6ad81ba762124c36b1de180c" +metafile = true + +[[files]] +file = "mods/better-fabric-console.pw.toml" +hash = "aed440afc32d47c984b3829033d384db636afcafa5e4097ee1e5ece10e766a94" +metafile = true + +[[files]] +file = "mods/better-stats.pw.toml" +hash = "c4c11bc748458978b676b2a5cef87b5b8548c2289e9c199f225f941fb1593c9d" +metafile = true + +[[files]] +file = "mods/better-third-person.pw.toml" +hash = "6d7c5793f88c52421dc11f48b3bf12400e7a451b9297e80fe33b776cc2af2c1d" +metafile = true + +[[files]] +file = "mods/betterend.pw.toml" +hash = "dd8057c40ff94e9a21a121583884f71c9a6b1eaa6f913ef46c5d1f9b37fe487f" +metafile = true + +[[files]] +file = "mods/betternether.pw.toml" +hash = "2e8023b4e1107227e4adadabdcb48d96b6659134f9174d476899e077c1621a12" +metafile = true + +[[files]] +file = "mods/birds-boids-addon.pw.toml" +hash = "3984fe02651f6f479e8b1f61f6fbad6fe83a2051c281f2cdcb47786ee20f9727" +metafile = true + +[[files]] +file = "mods/boids.pw.toml" +hash = "40c32f75869847aaa6dacab310dc84fc4aa509cba65d60c27688605750a4036e" +metafile = true + +[[files]] +file = "mods/bookshelf-lib.pw.toml" +hash = "0b5feeae74fe992084ec5cb12eab3404ddd5054e85c9006f7ba4d65f209de13f" +metafile = true + +[[files]] +file = "mods/borderless-mining.pw.toml" +hash = "b7ad39c3b4094f76d4e31899c662a0295c851a89819fce7f47afbab5257b39d7" +metafile = true + +[[files]] +file = "mods/botarium.pw.toml" +hash = "2f57caef93731338be19b1e14065978eb3e14dbfc0c1f9699dfcc2f201e2c23b" +metafile = true + +[[files]] +file = "mods/bountiful.pw.toml" +hash = "88d4b6472c19d1a2afe1b287c052d17559ac96603b8bbbcf82ad7a9068d953e6" +metafile = true + +[[files]] +file = "mods/c2me-fabric.pw.toml" +hash = "066bcf27ce64eeaeb8e595f3768743c02e3a5fa2f7338357a523b8a72f0814df" +metafile = true + +[[files]] +file = "mods/cat-loaf.pw.toml" +hash = "5937a705a044b790a79e4d8f7a5239b7b4361eba464c828846e7a335bba818b6" +metafile = true + +[[files]] +file = "mods/cat_jam.pw.toml" +hash = "84f06484c12f1322f6761fcbb43b12a2202ece777157b3025b3e3010016aef05" +metafile = true + +[[files]] +file = "mods/cc-tweaked.pw.toml" +hash = "61fe0368e62d8926d1c7429532f74d22afc3e7044bee9385452095bd492976ef" +metafile = true + +[[files]] +file = "mods/cccbridge.pw.toml" +hash = "2674266f233fb1e453d04642d6f04e8d6e0676a51951b81716a7aa8d5d4b817b" +metafile = true + +[[files]] +file = "mods/chalk-colorful-addon.pw.toml" +hash = "0392dc43f2a743dfe67119aa6b43b0967e83dfb78240855da1a97d4ba78bf458" +metafile = true + +[[files]] +file = "mods/chalk.pw.toml" +hash = "e0fe3a15675b2f6ad147699a546a09bccd45492df57f721ffa524a2f5b380595" +metafile = true + +[[files]] +file = "mods/charm-of-undying.pw.toml" +hash = "687e83844c7fec1b390fa6d5228068d3e4e84906f0743165fa48ff42cd713ed6" +metafile = true + +[[files]] +file = "mods/chat-heads.pw.toml" +hash = "732bc85d460b6399677e5b768318a0d6cc02822b9d005015ec4e16d9730e260a" +metafile = true + +[[files]] +file = "mods/chefs-delight.pw.toml" +hash = "363871fd295dea51044b822da58b99319f65de44259432283e42233154222bcc" +metafile = true + +[[files]] +file = "mods/chested-companions.pw.toml" +hash = "25743b6d3cda9ef04ef2c29697cbee40462334ac99a26c128d7e30b761f4745b" +metafile = true + +[[files]] +file = "mods/chimes.pw.toml" +hash = "83eeb853e25dbc170868cb1c4d7893512f4e755eec073c77dde260963a8ed7cd" +metafile = true + +[[files]] +file = "mods/chipped-x-create-fabric.pw.toml" +hash = "5e744e05446b1cf72416c034eae174827ad62f3db55f29600306d8b183b37ba5" +metafile = true + +[[files]] +file = "mods/chipped.pw.toml" +hash = "58d6861337626edf09635b6bc0bc45f49286c2517a234cb50baee9a23c538fc6" +metafile = true + +[[files]] +file = "mods/chunky.pw.toml" +hash = "b1581bbfae9d16690f4022536da6567f000130c4ea5e04d92177c1bc61fea709" +metafile = true + +[[files]] +file = "mods/cicada.pw.toml" +hash = "fe764a97501bdf3e01430a426128e34d087e65c0e8806bbaacbdcfbc8278a750" +metafile = true + +[[files]] +file = "mods/cloth-config.pw.toml" +hash = "41a3dc271859b118417946d2fdb2408523563b2f4f49048073672a342fb1aebf" +metafile = true + +[[files]] +file = "mods/comforts.pw.toml" +hash = "8c933ef723f868cef57b91da98e8eae4f394a6e51defc2b1fdd706f23b945549" +metafile = true + +[[files]] +file = "mods/continuity.pw.toml" +hash = "ca80c5f6b0faca95bbc06192a3da36446ff396b5e6e0304f6779269b60bbdd9d" +metafile = true + +[[files]] +file = "mods/copper-horns.pw.toml" +hash = "8124a427c47da646c66180b5ab0c46417a0cfb239c08663203a0a395d374b946" +metafile = true + +[[files]] +file = "mods/coroutil.pw.toml" +hash = "429284603e4c5ca44777cb4ce2455477fcc1eee4dc9a4ae2f759c4895bf332e7" +metafile = true + +[[files]] +file = "mods/cozys-improved-cats.pw.toml" +hash = "f1d05ef542a3ab899d59329b5df713d2e35027cf74e6af274584b57bfca45950" +metafile = true + +[[files]] +file = "mods/cozys-improved-wolves.pw.toml" +hash = "4c6c277b52e6865f8e153db8a7dfc697a06b073765d7a747e5670cfe97c7c29c" +metafile = true + +[[files]] +file = "mods/craft-slabs-back-into-blocks.pw.toml" +hash = "ff06740862ba5efac66f52173db463fd879b41aa67ac5a40a786e086abe6a21c" +metafile = true + +[[files]] +file = "mods/craftify.pw.toml" +hash = "800fa9bd83d47d78dddd57854d8ca95fe4b71a0a1cfdf6996544e1e6591d9470" +metafile = true + +[[files]] +file = "mods/crate-delight.pw.toml" +hash = "ecb15182468c40f833164c8975bf85e7d913266412f8da1ff031ae664703b076" +metafile = true + +[[files]] +file = "mods/create-big-cannons.pw.toml" +hash = "b63f6fed9bc9df3c4aca0e53b568e346830c73fe20fc4f658cf500821a519cb8" +metafile = true + +[[files]] +file = "mods/create-crystal-clear.pw.toml" +hash = "d441200178f8ef0e87a872a495fa0a502139ddd48036b2ede516f4fcd8660be1" +metafile = true + +[[files]] +file = "mods/create-deco.pw.toml" +hash = "023532063fbf310dd047a33cf1afd06b0c4baf72da4dc23e78d1d599ad5dcccd" +metafile = true + +[[files]] +file = "mods/create-dynamic-lights.pw.toml" +hash = "f38dc6a87e6d7c5d6055364dbba6954df4c67c73fcc5e887426e9e79bd91fcfd" +metafile = true + +[[files]] +file = "mods/create-fabric.pw.toml" +hash = "7d227ef90b1918ceb348ade235a5d17c7894acbf387575e96c08920a5bad1bbb" +metafile = true + +[[files]] +file = "mods/create-food.pw.toml" +hash = "fde0ef47a710b60530f684eda6e547b13e29e85406259fa6659c5985154cbd76" +metafile = true + +[[files]] +file = "mods/create-pattern-schematics.pw.toml" +hash = "46203599fb9e439b5ff23ab3f6f3f18f2a54e29ba7fa04c9c067b8d635320c8f" +metafile = true + +[[files]] +file = "mods/create-steam-n-rails.pw.toml" +hash = "b79bc9976d5958f4b88ca23575e0d0dc677a2b06931108f6f7bc3fd3e46bb22c" +metafile = true + +[[files]] +file = "mods/create-structures.pw.toml" +hash = "916c17614ec51da73e173b7249118b473e479c370a48378bc7f91eb5e5abfa9d" +metafile = true + +[[files]] +file = "mods/creativecore.pw.toml" +hash = "6957ba2519b78040639a1368df90ec5197cb3e0cd24764aed30efce4cb182e6c" +metafile = true + +[[files]] +file = "mods/cristel-lib.pw.toml" +hash = "1eb94c241ed2d519e5bde972b0a7966041684d75cbfc724c3ec55227830316a1" +metafile = true + +[[files]] +file = "mods/ct-overhaul-village.pw.toml" +hash = "fd12590fb8c8f24d47d79d0fe8313a8dc39c579fbdbae39163855eabd0b3819e" +metafile = true + +[[files]] +file = "mods/ctov-beautify-compat.pw.toml" +hash = "85823e6c3eccc199df1cfd11c4855ff09f5607d0c1c50bf2e7fb531c99a35171" +metafile = true + +[[files]] +file = "mods/ctov-chefs-delight-compat.pw.toml" +hash = "3e41df25fbf26489935cba33f8522f0358765425da4159e895218f12b6976d2b" +metafile = true + +[[files]] +file = "mods/ctov-create-structures.pw.toml" +hash = "d0114dcd9e7b204c1d2438b902faa1561763d8bd5b3130080895a16e106f06af" +metafile = true + +[[files]] +file = "mods/ctov-farmers-delight-compat.pw.toml" +hash = "ec327ba7471215f9816ab868a11a1eab1cc5361458528b06eb666677b77bb3c8" +metafile = true + +[[files]] +file = "mods/ctov-friends-and-foes-compat.pw.toml" +hash = "afcd4470f08c342d9c09af255d113736906d2d2c739f5277951eb7ebde9446b9" +metafile = true + +[[files]] +file = "mods/ctov-gazebo-compat.pw.toml" +hash = "4257b2031d444ae2d34448217c2b46d31416f3137469def77077360f5bc0b7ef" +metafile = true + +[[files]] +file = "mods/ctov-paladins-n-priests-compat.pw.toml" +hash = "744cff2fb142e4558497347e7017e53e3e80c3da8cb960848220b5629cf9e2e5" +metafile = true + +[[files]] +file = "mods/dahmersdelight.pw.toml" +hash = "e074c954c5ec253cb85b396f8d08839d32f4453cde297e65ba83e8e188ca4db4" +metafile = true + +[[files]] +file = "mods/damage-incorporated.pw.toml" +hash = "9f75a18437059605e5eef21b06327437bfbd38c55362dd8cc456a00104907cd1" +metafile = true + +[[files]] +file = "mods/damageful.pw.toml" +hash = "10f4a462290ab29f432b3a8a1911cb26c9fa4cd05f62ac3af5e526733fcb3e44" +metafile = true + +[[files]] +file = "mods/dark-loading-screen.pw.toml" +hash = "5f7537e9f19357e3a5bcc077725f15a1694fb9f67c4cdfd96f3b993a85e397f1" +metafile = true + +[[files]] +file = "mods/dark-paintings.pw.toml" +hash = "f573688fbb16fe890b1e1ce09490ae76725fcbee8c7caf705e0ae83d05a9f035" +metafile = true + +[[files]] +file = "mods/delightful-creators-fabric.pw.toml" +hash = "03f632e9f51e58ce8b8ce7c5b28166e251e1cdbc743f404f65712fd46dd0f251" +metafile = true + +[[files]] +file = "mods/distanthorizons.pw.toml" +hash = "b99e9c635fb262a6dee28d6d09fa78eac25e0d5d3cad4517c68f2f6f23b7a1fc" +metafile = true + +[[files]] +file = "mods/do-a-barrel-roll.pw.toml" +hash = "a8aa09f4f156506ed902620637557fb3623084d5d994f7b4f1f01eb4a19916b6" +metafile = true + +[[files]] +file = "mods/dungeons-and-taverns.pw.toml" +hash = "0bcc0df994ebbe98efc2f87c653cd0ae0a81bb0ca47b5adacba0974c5c6406c5" +metafile = true + +[[files]] +file = "mods/durability-tooltip.pw.toml" +hash = "ab0a2eb7d496c659af26dd31070a778f84a7f88b17fc75fea4ad3e31075bf319" +metafile = true + +[[files]] +file = "mods/dusty-decorations.pw.toml" +hash = "8d436f2eee5122206d406c846a64fe6882c3bfa9477790d42249e471c150b74b" +metafile = true + +[[files]] +file = "mods/dwdsb.pw.toml" +hash = "127dd74d075b5fb5c733a695c21a4e196f09c7dc0d969343f39002631ef23334" +metafile = true + +[[files]] +file = "mods/dynamic-fps.pw.toml" +hash = "6aca4f1c5a15dbdc330844e09ce700ad82cd96c409c78447aa7fcb85ac226ba2" +metafile = true + +[[files]] +file = "mods/eating-animation.pw.toml" +hash = "5af1714d668d18cf7c500218ad61a9e904fbfce74884c5ae5364434a6c9dc43f" +metafile = true + +[[files]] +file = "mods/edf-remastered.pw.toml" +hash = "b8f4c6a7a6ca91737bdae663eebc6315dcf2a4fcb0ad7715aa8730bb6f0c1382" +metafile = true + +[[files]] +file = "mods/elytra-trims.pw.toml" +hash = "730277ea82f283cbb7812857e13129b4c65359b5bd3e163d4461bf6749f06a35" +metafile = true + +[[files]] +file = "mods/emi.pw.toml" +hash = "cb84025b57a3c1d575299c82858235cc555867d14d06aca4388302edcdb46281" +metafile = true + +[[files]] +file = "mods/endrem.pw.toml" +hash = "34a07ff5c170cd95eb586e3e40e65636eb4bbf283c24762055db6094b91de494" +metafile = true + +[[files]] +file = "mods/ends-delight.pw.toml" +hash = "c169e427c31fb1a75e3b59681c5a42504859b6dc0cedf226868c28515f5bfe81" +metafile = true + +[[files]] +file = "mods/enhanced-groups.pw.toml" +hash = "ff3397f18a901a8a461f5aef2cdece5ea12ddebdc56c2993e9edfc09f7b92ecc" +metafile = true + +[[files]] +file = "mods/entityculling.pw.toml" +hash = "c3bf7d6d25260b023f8cd2906527bf2ddfe36eb7929894ac0ae6d61abe2328cd" +metafile = true + +[[files]] +file = "mods/estrogen.pw.toml" +hash = "157d7826377eefc4746e7f8037e2169a90571c3c34d4d2ce1505c7767c6fbbb9" +metafile = true + +[[files]] +file = "mods/eugenes-whistle-spur.pw.toml" +hash = "5dc4649d0dac84ff5fd29c2422e943614c69c68d194afc2d6bccb661b8e4513b" +metafile = true + +[[files]] +file = "mods/every-compat.pw.toml" +hash = "93699d551daeaedfe6adf5098fe58a37879321e761a60b119b47e6b8956d4f0f" +metafile = true + +[[files]] +file = "mods/explosive-enhancement.pw.toml" +hash = "85e012f1e3fa929ed32f3ce347c9f26606e80393ed30988553a656fd8003900b" +metafile = true + +[[files]] +file = "mods/extended-cogwheels.pw.toml" +hash = "49f7a553eb7bd1c0be5b488276b8c12ae0b3bed828e3605ad238295f00190916" +metafile = true + +[[files]] +file = "mods/extraalchemy.pw.toml" +hash = "62bbd9149492723b96e11078e6284dfa4db42ca659ea130a0d8a9d28a15f2fd6" +metafile = true + +[[files]] +file = "mods/fabric-seasons-delight-compat.pw.toml" +hash = "ca6466a711561f431038af2698dfaa4e683703f74908655a5742adbc0f5433ef" +metafile = true + +[[files]] +file = "mods/fabric-seasons-extras.pw.toml" +hash = "e374551967a4fc99edb9fc60ba96845aa0252b4a12236e7591d921c1664f6001" +metafile = true + +[[files]] +file = "mods/fabric-seasons-terralith-compat.pw.toml" +hash = "751b5e7213feb2072ee728327dcbb58134add5c5b0441c866dc0aa9fa1255e3b" +metafile = true + +[[files]] +file = "mods/fabric-seasons.pw.toml" +hash = "ce276e188fa22c4b8e4a99a0558844284fff7d49af2c5e6683290eaa598a7c61" +metafile = true + +[[files]] +file = "mods/farmers-delight-expansion.pw.toml" +hash = "9cfd6a7c8859130b51a25a5ad72faf4b91722fb7cd09f13151664655431f9eab" +metafile = true + +[[files]] +file = "mods/farmers-delight-refabricated.pw.toml" +hash = "16de61b32acb724fc130debd459ffec5366d7a4fa428852aab26bf0d99ba2d97" +metafile = true + +[[files]] +file = "mods/farmers-knives.pw.toml" +hash = "fb431ca2b3ff4fb5e8a2d310e34adcb188264c15809965133f817ae3f451517c" +metafile = true + +[[files]] +file = "mods/farmers-respite-fabric.pw.toml" +hash = "9c227262ccd3fd4bbc6337fe29e5146ab14c76e6fc64d09454f836d34de9a53e" +metafile = true + +[[files]] +file = "mods/fastback.pw.toml" +hash = "5af15318e5df9f6dbaea6ee97d361b9acdb2c2f736cba315b08e10df7b0157db" +metafile = true + +[[files]] +file = "mods/faster-random.pw.toml" +hash = "605fe60f2ada4333e88ec2fa66cb57d0635292d83eee8d1ad40f2485d72ef013" +metafile = true + +[[files]] +file = "mods/fence_on_slab.pw.toml" +hash = "92432e5680b01ffc3194e43afff3c02d38e2d9a6b085ecae4325c052f4b42970" +metafile = true + +[[files]] +file = "mods/ferrite-core.pw.toml" +hash = "86cbfa8adbbb8be527f95aca49b427f892aa780773df141dfd7f4ffd02740bbd" +metafile = true + +[[files]] +file = "mods/fog.pw.toml" +hash = "0dd6a98258783de2b2d6dd2e825edb02008a4d9801e18ef57030e1bbfd314d49" +metafile = true + +[[files]] +file = "mods/forge-config-api-port.pw.toml" +hash = "d5db994a9bdf835c0bda791ef6a0eed315f77a1dc5bab1ce04003a9ab5a4b01f" +metafile = true + +[[files]] +file = "mods/framework.pw.toml" +hash = "0673fc42b2d2fe78cc60c8fbc2a51a731a73404bde3a11f91d65bd234d59ff91" +metafile = true + +[[files]] +file = "mods/freecam.pw.toml" +hash = "5fc9b21fe0e237586219cc94d4428ff43d38a235609591b9d25cd38d7893abf5" +metafile = true + +[[files]] +file = "mods/friends-and-foes.pw.toml" +hash = "a72cc43ba88e8192e1c1ca42df76c4cc4739fe482985ed1e3259a28647c22fe7" +metafile = true + +[[files]] +file = "mods/gazebos.pw.toml" +hash = "dfc072c1d0e103acc7ecaf1e5778daf7a3cbce9069460f9990b46fd6b9cca4d5" +metafile = true + +[[files]] +file = "mods/geckolib.pw.toml" +hash = "b5101554156ef1298ba8e68cc2dfbc6e05723b0fb6226081593a129e85a347a5" +metafile = true + +[[files]] +file = "mods/goblintraders-fabric.pw.toml" +hash = "32ee7a7170ed798a1e4d8b4bd98d3659566615f8c189f70ea58419a39dce1c42" +metafile = true + +[[files]] +file = "mods/goml-reserved.pw.toml" +hash = "bfd0ea6caa041a335d9da15b121726a0587dbbdabea6b3c34fc1db5c4facb650" +metafile = true + +[[files]] +file = "mods/handcrafted.pw.toml" +hash = "f6629a3c5e023a96cb5d78d66e93b47245996c46a079921b3f6a6094209dc1b0" +metafile = true + +[[files]] +file = "mods/heartstone.pw.toml" +hash = "e2498119a15da59808d830c271354c841673c7a62f06289186e38f9b82de024a" +metafile = true + +[[files]] +file = "mods/hexalia.pw.toml" +hash = "1a11a6d0258e3daddf30e908771a3959dc2e03c10c5720f7b0d1700a2e643413" +metafile = true + +[[files]] +file = "mods/horsebuff.pw.toml" +hash = "9d01b15947083410d7978e231f4abd836525d3aa180f22061c271fed678539b8" +metafile = true + +[[files]] +file = "mods/horseshoes.pw.toml" +hash = "965877522ca6dcbe627fe097374fb45e2fb66e12a5ccb338e446f0dc66ceb74a" +metafile = true + +[[files]] +file = "mods/iceberg.pw.toml" +hash = "f669b069214a8e88d17066ff6715fe131568cd190450ba408b4c2c5479a1a263" +metafile = true + +[[files]] +file = "mods/immediatelyfast.pw.toml" +hash = "2e441b5e21e8db1cd9102216ce4b8d1a25d77a026182e00f6324aadda402f715" +metafile = true + +[[files]] +file = "mods/immersive-weathering.pw.toml" +hash = "5d8b13b77f6ec67102e5b5bce19a54b888cd68ba9ec95a88526ef90946fbe813" +metafile = true + +[[files]] +file = "mods/immersivethunder.pw.toml" +hash = "1e7626658f151f660110a788c0e3771f08a023992a62c38aacb272fd9559dd94" +metafile = true + +[[files]] +file = "mods/indium.pw.toml" +hash = "3d41978dc3fd1d7b7eebe51a7c04e49707e7e7c66f764a1bed0cc214e4032995" +metafile = true + +[[files]] +file = "mods/interiors.pw.toml" +hash = "b9fa4052f55fb11d52dcd0825cfa1b0341b741b1fe9029fbcc79abede25ccf56" +metafile = true + +[[files]] +file = "mods/iris.pw.toml" +hash = "ebeee6677698f4d8d13c52097e88c15289f4c19aa87873eb3a40fbc5ecb915c8" +metafile = true + +[[files]] +file = "mods/item-highlighter.pw.toml" +hash = "80264d11a93ffb63f1592be06f8dcdf276bc5a6d2b666dfa9a5d2d10dfb29282" +metafile = true + +[[files]] +file = "mods/item-obliterator.pw.toml" +hash = "5dbbebb1be98bfa055096c70fcbf668553b736ad2f9d20a5ff2d2cafc40968c1" +metafile = true + +[[files]] +file = "mods/items-displayed.pw.toml" +hash = "1628de23a97f4e74afc44a2af86cc362ecd44741f310d8e2d47c3beb846ab1e9" +metafile = true + +[[files]] +file = "mods/itemswapper.pw.toml" +hash = "b01be64c12224484aba1537260acf28a5bf8f57d6f3c8baaf3b420f344e42ccb" +metafile = true + +[[files]] +file = "mods/jade-addons-fabric.pw.toml" +hash = "fd806713c4bd32080e12e65c012ad93de6a6fae53484fa13a72603c39f3eae63" +metafile = true + +[[files]] +file = "mods/jade.pw.toml" +hash = "390c9242cd4bc9eac27379a72081e5e60b6af0ba39706bb4b43dd55399c664f8" +metafile = true + +[[files]] +file = "mods/jamlib.pw.toml" +hash = "fbf8ed68da06af1014e46752b0a925c01b87dcd2c7c98d3c110d907ab7900220" +metafile = true + +[[files]] +file = "mods/jewelry.pw.toml" +hash = "9f85ee9a48da4ead32ea56a7ea064a7002a406d1d87130ca60a41610285afa2b" +metafile = true + +[[files]] +file = "mods/joy-of-painting.pw.toml" +hash = "d05198eff022c2e1e750da3fef268dc0bacfbfbac3a2da72b630acb451311be1" +metafile = true + +[[files]] +file = "mods/kambrik.pw.toml" +hash = "a06e2f058ccc09999d2437517969b248bc7008ea9e990996b11d7458253784f7" +metafile = true + +[[files]] +file = "mods/krypton.pw.toml" +hash = "9063bac3fdf585a43d318e3f9773475a28ecb8fe80bc7689cc480851eef97420" +metafile = true + +[[files]] +file = "mods/labels.pw.toml" +hash = "6777da0e008bfc3685837aa5637e45f931b7b8f35116f504245078c17d11e6f2" +metafile = true + +[[files]] +file = "mods/lambdynamiclights.pw.toml" +hash = "62dcbd50ca504de26da23305b6e1578298b6cfd14fb98118fcd471cf128d4337" +metafile = true + +[[files]] +file = "mods/leaf-me-alone.pw.toml" +hash = "443ec5c37984c9f0076b2059543f2113a43d1f029aaa9a5e20c59dfa804b965d" +metafile = true + +[[files]] +file = "mods/lithium.pw.toml" +hash = "470d30cd94b769b646f714432ba4cd01969910f6016957a6b218d2d2900d914c" +metafile = true + +[[files]] +file = "mods/lithostitched.pw.toml" +hash = "ac2c12d8d2b21dcdf511b01404c304a4b033f4e98f122455e58d989a5b3f4cac" +metafile = true + +[[files]] +file = "mods/malilib.pw.toml" +hash = "6bfb82960a27af2c360036e01c0131c3ad9c778b4ba5e3df51bafe4f175317db" +metafile = true + +[[files]] +file = "mods/mavapi.pw.toml" +hash = "5d525f8b62a89302057f57e4faf7e2b14300947faba5c2591a1d31fb2d36cfef" +metafile = true + +[[files]] +file = "mods/mavm.pw.toml" +hash = "38647b64ad7940709a693965b08a5a3e783e9aab1824ad99ec1c70ee597580c9" +metafile = true + +[[files]] +file = "mods/mc-dungeons-enchanting.pw.toml" +hash = "dc71f076aa85ac34035d4f504d65344478d90c01e1468186c3eacb6a07701152" +metafile = true + +[[files]] +file = "mods/mclo-gs.pw.toml" +hash = "4d24538c96ff7e6dcd8c3e32a334dabcac3dc35b8cb8291908addc83475989c9" +metafile = true + +[[files]] +file = "mods/memoryleakfix.pw.toml" +hash = "ede2f61d6b592f44294fa8790c2f050729c487aa86aba09034f2ef30d45e0e93" +metafile = true + +[[files]] +file = "mods/minihud.pw.toml" +hash = "e5bf9057e940554a9d6f653af4118d64f09040871c7ada034a697d630fedcab5" +metafile = true + +[[files]] +file = "mods/minimotd.pw.toml" +hash = "bad9b4eab9840941885c1e907df4e5ff8cb4147c043a18e50200fb18409b7b8c" +metafile = true + +[[files]] +file = "mods/mmmmmmmmmmmm.pw.toml" +hash = "93d9e9fc1f240892eed9ab8ddea01261fda6273cbb5370a4486fa59f5144cd24" +metafile = true + +[[files]] +file = "mods/modelfix.pw.toml" +hash = "435267c3230ba1439f50fa32c3ed3993a4123f870681451aa95acdde5d52622e" +metafile = true + +[[files]] +file = "mods/modernfix.pw.toml" +hash = "e2ebf7eefe0119002329c02a7121e262821b0f6d9d6e164f818b07aeeec1c396" +metafile = true + +[[files]] +file = "mods/modmenu.pw.toml" +hash = "d7145fd1bd8b4bb6a3b84652a96a68870fb3ab32230f27520bb9362fd17ec39f" +metafile = true + +[[files]] +file = "mods/moonlight.pw.toml" +hash = "16b74cef991fc37eb137b36ad8f2c991401c7c2c4d1f2d61f32f87e3fee1eea5" +metafile = true + +[[files]] +file = "mods/more-chest-variants-lieonlion.pw.toml" +hash = "f545f624a693f87a495c94451be8275d9e83778d9f35dcf6253b4d84c49d0c84" +metafile = true + +[[files]] +file = "mods/more-delight.pw.toml" +hash = "7cc091c25fd4331407e55dad98d3f15ce1f5308cf51bb59ae3df278d017384e9" +metafile = true + +[[files]] +file = "mods/morechathistory.pw.toml" +hash = "3dc86c0b4d31199f6f8579b8460686201ce8b9c87e1be5afaf50be9995add1e0" +metafile = true + +[[files]] +file = "mods/mouse-wheelie.pw.toml" +hash = "b71ebab572583fcca1a864236e233a84c637bf00c78f0d1240b742763c0375d8" +metafile = true + +[[files]] +file = "mods/moyai.pw.toml" +hash = "8a80af48bb06e3fd000fc6c3f222877a9995769ae1e1aa58f48325290fbede4d" +metafile = true + +[[files]] +file = "mods/mru.pw.toml" +hash = "10430695ad67fd14a9e208c0ebe6efaf073cc78e3292f52159b2d04b75b87214" +metafile = true + +[[files]] +file = "mods/music-maker-mod.pw.toml" +hash = "aa86abe04dd191d715a3b70cf29b9ba593b0dec852bcff6c30312c9af3efb85f" +metafile = true + +[[files]] +file = "mods/mystical-oak-tree.pw.toml" +hash = "77b1b462c5717cf66d59f9a1a906b6afb526488a7d16c109082d4a64b1e4967d" +metafile = true + +[[files]] +file = "mods/naturalist.pw.toml" +hash = "cdc3b40078ef395c5b4863a74dd58f6c3cd1a4f5eeea7e3782318ef28d99438c" +metafile = true + +[[files]] +file = "mods/natures-compass.pw.toml" +hash = "3f678c4ade25a4b4b54aacf25db155658c1ec605bbeaf0ea6b8ed5d0dbc062e1" +metafile = true + +[[files]] +file = "mods/necronomicon.pw.toml" +hash = "0a51aa853f7ec0323cabc98e9c6957e35f8e8581f1ee5ce12eb95d0e98665fc2" +metafile = true + +[[files]] +file = "mods/nerb.pw.toml" +hash = "da71f6ffad46b9e77bf5a7180e5b41dac48e2c42cd9ac58e6cb0bd96af37082c" +metafile = true + +[[files]] +file = "mods/nethers-delight-refabricated.pw.toml" +hash = "80b0b7333c6c4235d840800afc8583a1e03f5fe493dd8085bf46dbf18e48eab3" +metafile = true + +[[files]] +file = "mods/nightlights.pw.toml" +hash = "5075cd65e52c9e626435bbe88c572d1131cd919cbe3fda48c4734d2b1820313f" +metafile = true + +[[files]] +file = "mods/no-chat-reports.pw.toml" +hash = "9ce6efc7149cdae2deb751b4ebf2d220700cc1b204e7a1d026275203387f106b" +metafile = true + +[[files]] +file = "mods/noisium.pw.toml" +hash = "e94cfc8b72a467d63c5d7593a433edaf698a3792e0c9b95274751ba6d8435288" +metafile = true + +[[files]] +file = "mods/not-enough-animations.pw.toml" +hash = "f03e6e9ed18e510f7ee6671a984cbdda3fabf1f5e037163f76264e8f0cbb5198" +metafile = true + +[[files]] +file = "mods/notenoughcrashes.pw.toml" +hash = "752c3a959b3876308515a053d90ee632b4ebedc2f021f9ee79c57f1eafdbdff8" +metafile = true + +[[files]] +file = "mods/nullscape.pw.toml" +hash = "e5e76b305f6e8fd611fb70695f42014c62e5f46b926d626eaf5ca0c78e394c5c" +metafile = true + +[[files]] +file = "mods/obscure-api.pw.toml" +hash = "8f6b83625e06798510048832addd6b1bf709b5d5e7dba438d002fe2dc110981b" +metafile = true + +[[files]] +file = "mods/octo-lib.pw.toml" +hash = "d990dfc4a164992f280ded4b755fd9096408000bf7645d12717408d044c4eeab" +metafile = true + +[[files]] +file = "mods/open-loader.pw.toml" +hash = "42859d4c3139386a13680aeca58a407ff7686734791c6b3bb67c98cd105b6257" +metafile = true + +[[files]] +file = "mods/orthocamera.pw.toml" +hash = "162e847ba3d2120bbc685bd4a868b5f37715ee417db136ea3cdd8db96e17c855" +metafile = true + +[[files]] +file = "mods/owo-lib.pw.toml" +hash = "df4c4fe3aff1792aa7d19d097d5d1bc0c6e958e6e4ee32dbf148ecac62e1274d" +metafile = true + +[[files]] +file = "mods/paladins-and-priests.pw.toml" +hash = "dbe8f55f70f126ec9cc237b4309c42ccaad0ed9d867ab06c4f737060e3e629af" +metafile = true + +[[files]] +file = "mods/particular.pw.toml" +hash = "63a2011c75cdaf07c0a537c1f5c0661b7e5e0471c81625273634f88fed05b9c4" +metafile = true + +[[files]] +file = "mods/patchouli.pw.toml" +hash = "8fe7a1882593ac153622e5c2bdf8133157f5638040bf10ea3dc9ffcf2ec1930a" +metafile = true + +[[files]] +file = "mods/perspective-mod-redux.pw.toml" +hash = "a13e0021a80a4c74bf4da112b4f029e5f5e299d06112b342ad391e1e4dc14ccc" +metafile = true + +[[files]] +file = "mods/pick-up-notifier.pw.toml" +hash = "9ad63ddb4586e2650aca101712f9d0f5efa14e5959965cb6e6fc6ad300e8c3ee" +metafile = true + +[[files]] +file = "mods/pick-your-poison.pw.toml" +hash = "0cb9b00b492d8dac3931eac50e9583622a183ab95cb5531858c1d92048680110" +metafile = true + +[[files]] +file = "mods/picohud.pw.toml" +hash = "e141522f4ff4b547422a997fcf18c75676eb1405673d9c2124c2b1763f9fdf44" +metafile = true + +[[files]] +file = "mods/ping-wheel.pw.toml" +hash = "f0e65744b24c6472047c1141e3970c87e6cdb822ac0b3b9e68f813c185340fbd" +metafile = true + +[[files]] +file = "mods/playeranimator.pw.toml" +hash = "7ad4ca488da13998ce660729167eef71ce1bdfb57ef1c5d593096fa459cec0f8" +metafile = true + +[[files]] +file = "mods/pneumono_core.pw.toml" +hash = "7377ce5957f537b30a66d18bf5ae6306c8c9640fd2f2ba757c0e5da4598992b6" +metafile = true + +[[files]] +file = "mods/pneumono_gravestones.pw.toml" +hash = "514803406c8b9e0450e965ff253662867c20cc3bffc0c122fee2c0021687d785" +metafile = true + +[[files]] +file = "mods/projectsavethepets.pw.toml" +hash = "99922209cd74d6dbff54615364e64b06f5245c437e5a3fc071e30dc21834f491" +metafile = true + +[[files]] +file = "mods/puzzles-lib.pw.toml" +hash = "974fc9a82d211049b57b4d9dd0b7bb2e203d5a9b88d20a3f8ce2c3a16ee4426b" +metafile = true + +[[files]] +file = "mods/qkl.pw.toml" +hash = "2c15a7ba78e8d8abbc612e55cfdb3df7c002a90d8fa467d88e28fe875ccaa3e9" +metafile = true + +[[files]] +file = "mods/qsl.pw.toml" +hash = "f2644c0b7c14e9f76afc4e042970f010636e98a116ed92e624e87f01a782aab6" +metafile = true + +[[files]] +file = "mods/quad.pw.toml" +hash = "6bdd9d1dc74b38676c4fc6829246bb613a4ac3c8e4d4a3acae685bd3153a3ff4" +metafile = true + +[[files]] +file = "mods/ranged-weapon-api.pw.toml" +hash = "c350fccb98a0ea4c3637bbcab7cb94fb9c504251e96d744712660966f7820f5b" +metafile = true + +[[files]] +file = "mods/reeses-sodium-options.pw.toml" +hash = "4a7d1e46795d2d83b18db85d8dbc63740a1d337e12d2b9e550378de59f2b23ab" +metafile = true + +[[files]] +file = "mods/resourceful-lib.pw.toml" +hash = "3f9e020fb15e1c2ede36d50b40c72d536f6de3f817bd703d26805a747175c8bc" +metafile = true + +[[files]] +file = "mods/respite-creators-fabric.pw.toml" +hash = "43a85795afb0c789af3286172ae1688c410015972a87545872effddffdb5c509" +metafile = true + +[[files]] +file = "mods/ribbits.pw.toml" +hash = "dbc0b5ce2ab4043c9965072e7e269867b895253289eeba6cf21da9c92207e14a" +metafile = true + +[[files]] +file = "mods/rightclickharvest.pw.toml" +hash = "9cc9633e5617b3b83f2aaa0d2206948e5d69d0dc7ae500406a317be958ac65c3" +metafile = true + +[[files]] +file = "mods/rogues-and-warriors.pw.toml" +hash = "1061b10b95291b700063999eafbf4d4dd5f7e7c07edb1e55ecb5a73dfb29b449" +metafile = true + +[[files]] +file = "mods/rolling-down-in-the-deep.pw.toml" +hash = "46267a57bd24603183c5909adc667706bc4ce688c7fa70cf154ed589058ccd78" +metafile = true + +[[files]] +file = "mods/runes.pw.toml" +hash = "d873b4bc94bc5cfe1bdfab5c965264f3183cd66c6f8f22a395e449962cb4d5a3" +metafile = true + +[[files]] +file = "mods/satin-api.pw.toml" +hash = "1187343aa841668df480b95c643936686c12ba1906edc47e24d92c091d60401b" +metafile = true + +[[files]] +file = "mods/separatedleaves.pw.toml" +hash = "3e4e75703a1575a8f3a5033a10d1c503fbcca8357775eb6e816355779885d1c0" +metafile = true + +[[files]] +file = "mods/servux.pw.toml" +hash = "9e2386a9331d747b64f30f3854dda2c458cb417768af2a26f418ecd43588fea3" +metafile = true + +[[files]] +file = "mods/shield-api.pw.toml" +hash = "b09902f82578ffc80dbf1d84aee798c53de0ac8c8b89a5e6284b74e6e32c690a" +metafile = true + +[[files]] +file = "mods/shulkerboxtooltip.pw.toml" +hash = "539f2968d3ddc434abc40c12becaea92bea9f9373b27bd7ff75b67938a56a552" +metafile = true + +[[files]] +file = "mods/simple-voice-chat-radio.pw.toml" +hash = "c192b9b04d3826dfd980874d5e589dd0051fcdf5baf679bbab6f32a0c376ce40" +metafile = true + +[[files]] +file = "mods/simple-voice-chat.pw.toml" +hash = "21a3f8cf390ee03bf3d55d467e82a20279ad0f84078b950930f3beabf5268364" +metafile = true + +[[files]] +file = "mods/smartbrainlib.pw.toml" +hash = "3f46e3aeb46331bd999c099da6b07a5d161ccbd791b6f8317feaa3a8a4275d45" +metafile = true + +[[files]] +file = "mods/smooth-scroll.pw.toml" +hash = "25d3b51b6da339f881c52fef43c02358020ed709eb9292f251efa69305bf2edd" +metafile = true + +[[files]] +file = "mods/sn0wfrogscapybaras.pw.toml" +hash = "20b2f9130c30a634b804348dd7bf1fc839c81cf7b5fd2b067066c6f35d196a4f" +metafile = true + +[[files]] +file = "mods/snowball-and-egg-knockback.pw.toml" +hash = "6e360a0219c64fc5e66f241993a0f6e9bf898b3c9a68b366a37e07e3ac841bbf" +metafile = true + +[[files]] +file = "mods/snowy-spirit.pw.toml" +hash = "c7f87fa4a0fb66266880aebfd5c1afe13e6532037cdbfd6c29ed28021977bde5" +metafile = true + +[[files]] +file = "mods/sodium-extra.pw.toml" +hash = "6b7e9ed619297a29eb6db95f860734144876aa68922de63a05409b65ad8bd163" +metafile = true + +[[files]] +file = "mods/sodium-shadowy-path-blocks.pw.toml" +hash = "85d1d46ce862ad175082a0fd7839d497ba066c053630dbd159c223a0e4646a6c" +metafile = true + +[[files]] +file = "mods/sodium.pw.toml" +hash = "350cd01b8b55cea244c2b0ea7bb3c9a6ba873cea4701528c62101c63af6b027a" +metafile = true + +[[files]] +file = "mods/sound-physics-remastered.pw.toml" +hash = "8fa4fd7d6da644f5fa814ba598101d3b33cf48a9b0dbabd1377248b495df25d3" +metafile = true + +[[files]] +file = "mods/spark.pw.toml" +hash = "f010bbe486733738e92241d10f403e28a8feeb40b45ec3af3b2270523f955216" +metafile = true + +[[files]] +file = "mods/sparsestructures.pw.toml" +hash = "36e01db593f1e01ad0e6cb2d437f6e6b60a982997ff1cc1cfde197d84a7c8505" +metafile = true + +[[files]] +file = "mods/spell-engine.pw.toml" +hash = "6677b688d4d6ac20c1e9fe5df29f1e48931aca9275e0baa946fa278bf0f9f15d" +metafile = true + +[[files]] +file = "mods/spell-power.pw.toml" +hash = "b4db824c83bb9476a4b9b13d9a4af28998d9fbf1ad24071514662fd0c81190be" +metafile = true + +[[files]] +file = "mods/storage-delight.pw.toml" +hash = "747adc942b2c0cd87491f4354236621d1f720632bb7a4872cfe860e66dc0d1bf" +metafile = true + +[[files]] +file = "mods/structure-pool-api.pw.toml" +hash = "0714532ce3dc614172e9dcbafbfb0f1a2321f3e49c9ec97d3d701dafb6f9029d" +metafile = true + +[[files]] +file = "mods/styled-chat.pw.toml" +hash = "7a79b956ae03dc5f12cc66eaa5ddac541e50ada2e20340c06ea665a2d696c18b" +metafile = true + +[[files]] +file = "mods/styled-nicknames.pw.toml" +hash = "df3dab0a368d87080cf735e0c0a253962e47a9ed6b40054736b52e375a471e2d" +metafile = true + +[[files]] +file = "mods/styledplayerlist.pw.toml" +hash = "1bffb178939b0d524650e480efb38f419310b08e24c6fdb7eeb1d3a0038e5c8e" +metafile = true + +[[files]] +file = "mods/superb-steeds.pw.toml" +hash = "92821a5c18c398f65acc988da3475e54d5b2a6943028fe1b9d55fd45b2247af7" +metafile = true + +[[files]] +file = "mods/supermartijn642s-config-lib.pw.toml" +hash = "caa507edc23c21df56cda8b40d30d74eaa999b19bf2fe4e2b53cf9a256e1ac76" +metafile = true + +[[files]] +file = "mods/supplementaries-squared.pw.toml" +hash = "6beeb6ee9c6003b06e6d9ab5ab0aaf90f6fb32d3a791d72c932a04c189e6c05d" +metafile = true + +[[files]] +file = "mods/supplementaries.pw.toml" +hash = "4e8767147d197f0cdfe9e3f35b2ffa792a6cb45ba0de7146b91320bc44e59416" +metafile = true + +[[files]] +file = "mods/surveyor.pw.toml" +hash = "9f37f04384bd80a9c5d0dd72aa55cc7884ec18818d5657b7ec2c0dad4ff1358a" +metafile = true + +[[files]] +file = "mods/sushi-bar.pw.toml" +hash = "6bfb09a5bf731cd8d347b8e77b0379c254b2e2dd2763c8051b6bfe122a22b7fb" +metafile = true + +[[files]] +file = "mods/symbol-chat.pw.toml" +hash = "554cf9b66823e7681394b23933e3d1659b6e7ae35cdc7721e402a762d7e332c6" +metafile = true + +[[files]] +file = "mods/tcdcommons.pw.toml" +hash = "dd91661737679e7beca29723f2ae3730febb87eba59c905bbad311755749a31c" +metafile = true + +[[files]] +file = "mods/tectonic.pw.toml" +hash = "4ca11e8b2f08020232bce98e6329e0831b95c9f4be962126ab865aee503a9724" +metafile = true + +[[files]] +file = "mods/terrablender.pw.toml" +hash = "fadb1aaba6c522a2cfccbc04366ebbf49bcfc336ea1f96f3ff59781ce8b94d2d" +metafile = true + +[[files]] +file = "mods/terralith-andesite-patch.pw.toml" +hash = "190aa88d2db3157e402bdfff931a7da87a3d909f07825a0070b2c8dacd46b3d3" +metafile = true + +[[files]] +file = "mods/terralith.pw.toml" +hash = "3b61fcf1c80cfdd79282be71ddfa9cce02fc13f8d87a760db455e2a97b801f40" +metafile = true + +[[files]] +file = "mods/tide.pw.toml" +hash = "652e0771ca8ea946b8a8a356c1e6e6571c5d29f833168d2f6eb38ba083fe3096" +metafile = true + +[[files]] +file = "mods/tinkerers-smithing.pw.toml" +hash = "a67428b929aff24f6ae728600ee7d5f1ab814d7e3e362e16b59660c48151d50b" +metafile = true + +[[files]] +file = "mods/tips.pw.toml" +hash = "853312c952ce0cd1535ff6b0989d4776822d2f65feb5899d7a059ef020568a49" +metafile = true + +[[files]] +file = "mods/towns-and-towers.pw.toml" +hash = "72c0e1d4d8eb05e6c82c8959885ee5f08b8c7ede63b438e22a7422246679cc46" +metafile = true + +[[files]] +file = "mods/treechop.pw.toml" +hash = "d4973af17081ec2f1d5aabad778331459612fc95617cda5fbcafa79ea9384c43" +metafile = true + +[[files]] +file = "mods/trinkets.pw.toml" +hash = "ffdb79f5bc29f990e5889f5d159a043c7046b8cd8d79f17f54b44d7ccc2b242a" +metafile = true + +[[files]] +file = "mods/ubes-delight.pw.toml" +hash = "df33cf433b05d1a409bb912befd8f19f220e33d80fa9c5eda66ded335f625717" +metafile = true + +[[files]] +file = "mods/village-healthcare.pw.toml" +hash = "549a1870f9d6f7f3180e380ef27ae0711cdd47d65be4c364c6f4c344711caf94" +metafile = true + +[[files]] +file = "mods/villager-transportation.pw.toml" +hash = "ef151bea9f016b49a5721c42909f2a81f5e2708c3cab3e50d84fb321ffb74c05" +metafile = true + +[[files]] +file = "mods/visual-workbench.pw.toml" +hash = "c28f21e5e16aa98001e982453e1b2b8f99302497c645bca4a02a708cfc16577d" +metafile = true + +[[files]] +file = "mods/voice-chat-interaction.pw.toml" +hash = "021d42f729c7fba0ddca97369323325002ecb8437e2948d82478e682bb340e58" +metafile = true + +[[files]] +file = "mods/what-are-they-up-to.pw.toml" +hash = "ffb2cfcb24ac65c753f6b877b7b6c67cddf56055cc7585faedd5e7b96b64c392" +metafile = true + +[[files]] +file = "mods/what-the-bucket.pw.toml" +hash = "4bf0031eb59b0f18bce2495c5f768dec644cf4f72477a39fbbba7753c7f47b92" +metafile = true + +[[files]] +file = "mods/wizards.pw.toml" +hash = "df8ce26718912ee7e8edc542d71936fad942746d3136aa2d58c4c14ab379f125" +metafile = true + +[[files]] +file = "mods/yacl.pw.toml" +hash = "88121fbabab3563f8dbb84a32347c753d23eec466c1df3225570cdb42e251029" +metafile = true + +[[files]] +file = "mods/you-shall-not-spawn.pw.toml" +hash = "f3fb9b0e7de54343acbcfc4b612ff85cf5462c5366067503233a5d9cf4085f24" +metafile = true + +[[files]] +file = "mods/yungs-api.pw.toml" +hash = "95940b5fc72e8df82ab3adb72b43d10a37e6d926fbb37c405c9fe50bda27a991" +metafile = true + +[[files]] +file = "mods/yungs-better-desert-temples.pw.toml" +hash = "7dd536d000999274472fa6762bcd49deaeb301fd0889c32723c1129db2400561" +metafile = true + +[[files]] +file = "mods/yungs-better-dungeons.pw.toml" +hash = "0958d9f10d0e8fb282b8e684b05b37b29aca826d48deeec3e44171857c99aca5" +metafile = true + +[[files]] +file = "mods/yungs-better-jungle-temples.pw.toml" +hash = "a837a0028b1e1bbb6c4e5d31bf3cb04d6f6dccae90fc93df46f9a60a8b2c53c1" +metafile = true + +[[files]] +file = "mods/yungs-better-mineshafts.pw.toml" +hash = "cf708ff146f867df2153b3f27482e80769c7032b10037e4a752d31fbb5668eaf" +metafile = true + +[[files]] +file = "mods/yungs-better-nether-fortresses.pw.toml" +hash = "8bc20a4cf22bdd4406a64126647cfe3c704e80a3197031c9154032905a276705" +metafile = true + +[[files]] +file = "mods/yungs-better-ocean-monuments.pw.toml" +hash = "f23d28e95b21a9655e615390a560bc66f3cb87610ac38cd9d849129d0600a766" +metafile = true + +[[files]] +file = "mods/yungs-better-strongholds.pw.toml" +hash = "b2af03e504a1827f2f6fc09597e7d51f4ecd64ab1ebb329a9eb9ffb98372673a" +metafile = true + +[[files]] +file = "mods/yungs-better-witch-huts.pw.toml" +hash = "0b5eb310353cce6e94ffb0558cb713815b63328e6e96f804f147b5291c237a98" +metafile = true + +[[files]] +file = "mods/yungs-bridges.pw.toml" +hash = "7e89ac9ea56f87a811a289d474b8ab4fe46d7a235b4c6ef4767e5099967d656e" +metafile = true + +[[files]] +file = "mods/yungs-extras.pw.toml" +hash = "d201155cab7c2a2cf940d91f240be769ac12046c2fc6a0774e225a8e51423ed0" +metafile = true + +[[files]] +file = "mods/yungs-menu-tweaks.pw.toml" +hash = "318069e00a76ad4ff9e65daf829f43b03f0c9495046ba2f6f80dce4cb442c9d8" +metafile = true + +[[files]] +file = "mods/zoomify.pw.toml" +hash = "548772ed4c11f15dfac400681ba5893e73956b6daa9762ed57f5ad4bee05e041" +metafile = true + +[[files]] +file = "options.txt" +hash = "cc684d40decbe635909c8c613acbbfca2b3a5675618e68149611f6cca5978e6e" + +[[files]] +file = "servers.dat" +hash = "dc0f2377ee8fe27c1df8272094a97f0f48e9e8848a3eeb201a51857e02c059d7" diff --git a/mods/advancement-frames.pw.toml b/mods/advancement-frames.pw.toml new file mode 100644 index 0000000..1ac1af9 --- /dev/null +++ b/mods/advancement-frames.pw.toml @@ -0,0 +1,13 @@ +name = "Advancement Frames" +filename = "advancementframes-1.20-2.2.7-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/zUBn5hHr/versions/DxfoqvJs/advancementframes-1.20-2.2.7-fabric.jar" +hash-format = "sha512" +hash = "06faf0126b59c0ea55bb0df9375f3eb8c5646620d77d437ea1475c2bc3efdae2e89759e36af28face5719c3de9ae04a7c61a08b12a6676b55fabf3beb175583c" + +[update] +[update.modrinth] +mod-id = "zUBn5hHr" +version = "DxfoqvJs" diff --git a/mods/aileron.pw.toml b/mods/aileron.pw.toml new file mode 100644 index 0000000..f7aebf2 --- /dev/null +++ b/mods/aileron.pw.toml @@ -0,0 +1,13 @@ +name = "Aileron" +filename = "aileron-1.20.1-fabric-1.0.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/b8kG1VGq/versions/AsJWwz7I/aileron-1.20.1-fabric-1.0.3.jar" +hash-format = "sha512" +hash = "f9de22f75f1063d6ad8515046a5576883bebc579940df5b5a8a9fa13c187d606fd7002c34d2f2002cd224ae749d8f4f771d23eb679858fb4ca8a321067fce9df" + +[update] +[update.modrinth] +mod-id = "b8kG1VGq" +version = "AsJWwz7I" diff --git a/mods/almost-unified.pw.toml b/mods/almost-unified.pw.toml new file mode 100644 index 0000000..8c4b180 --- /dev/null +++ b/mods/almost-unified.pw.toml @@ -0,0 +1,13 @@ +name = "Almost Unified" +filename = "almostunified-fabric-1.20.1-0.9.4.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "0b80c820186244667e9f3f326ad864355cc1407b" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5517425 +project-id = 633823 diff --git a/mods/ambientsounds.pw.toml b/mods/ambientsounds.pw.toml new file mode 100644 index 0000000..6ca5136 --- /dev/null +++ b/mods/ambientsounds.pw.toml @@ -0,0 +1,13 @@ +name = "AmbientSounds" +filename = "AmbientSounds_FABRIC_v6.1.4_mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/fM515JnW/versions/KRg74QMN/AmbientSounds_FABRIC_v6.1.4_mc1.20.1.jar" +hash-format = "sha512" +hash = "42746a254a5c61dc5ae1182ec41e9ddec8200f49f8e076ef74e2ad524163a922a35984fd96f5f1dcd5bdae090a0356df3be4f4e6e41fbb57302603d97911e83c" + +[update] +[update.modrinth] +mod-id = "fM515JnW" +version = "KRg74QMN" diff --git a/mods/amendments.pw.toml b/mods/amendments.pw.toml new file mode 100644 index 0000000..91583e8 --- /dev/null +++ b/mods/amendments.pw.toml @@ -0,0 +1,13 @@ +name = "Amendments" +filename = "amendments-1.20-1.2.12-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/6iTJugQR/versions/jJplEQRv/amendments-1.20-1.2.12-fabric.jar" +hash-format = "sha512" +hash = "cd1e4dbd5148b454566a4dc48f1d6f29280c5b8147c3768cabf24e909c2676c8a9826bcd330fc3cb61d08d0b7da6492a379c1026ffd6b88f64b794ced717324c" + +[update] +[update.modrinth] +mod-id = "6iTJugQR" +version = "jJplEQRv" diff --git a/mods/another-furniture.pw.toml b/mods/another-furniture.pw.toml new file mode 100644 index 0000000..ed589b2 --- /dev/null +++ b/mods/another-furniture.pw.toml @@ -0,0 +1,13 @@ +name = "Another Furniture" +filename = "another_furniture-fabric-1.20.1-3.0.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ulloLmqG/versions/YKKY0UDo/another_furniture-fabric-1.20.1-3.0.1.jar" +hash-format = "sha512" +hash = "eb3f7d7eed6dae4bf90794cb3d7688a2b366304fe0027198428b154a827a17b817a1a75ba7d3a581ec5ea9436c487effac5edc938791a4211ad546ff65257437" + +[update] +[update.modrinth] +mod-id = "ulloLmqG" +version = "YKKY0UDo" diff --git a/mods/antique-atlas-4.pw.toml b/mods/antique-atlas-4.pw.toml new file mode 100644 index 0000000..73cd7ac --- /dev/null +++ b/mods/antique-atlas-4.pw.toml @@ -0,0 +1,13 @@ +name = "Antique Atlas 4" +filename = "antique-atlas-2.10.0+1.20.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/Y5Ve4Ui4/versions/lFYHSK5X/antique-atlas-2.10.0%2B1.20.jar" +hash-format = "sha512" +hash = "55d29b653658a557f06f59bf95a634f18f5570066be06ae77f37b9b8e4e1d79279a1ff2f3ab0fc479a4f860ddfff84a311f46338bb7c695bddee5a28b2cefbd9" + +[update] +[update.modrinth] +mod-id = "Y5Ve4Ui4" +version = "lFYHSK5X" diff --git a/mods/appleskin.pw.toml b/mods/appleskin.pw.toml new file mode 100644 index 0000000..5efd3a6 --- /dev/null +++ b/mods/appleskin.pw.toml @@ -0,0 +1,13 @@ +name = "AppleSkin" +filename = "appleskin-fabric-mc1.20.1-2.5.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/EsAfCjCV/versions/xcauwnEB/appleskin-fabric-mc1.20.1-2.5.1.jar" +hash-format = "sha512" +hash = "1544c3705133694a886233bdf75b0d03c9ab489421c1f9f30e51d8dd9f4dcab5826edbef4b7d477b81ac995253c6258844579a54243422b73446f6fb8653b979" + +[update] +[update.modrinth] +mod-id = "EsAfCjCV" +version = "xcauwnEB" diff --git a/mods/aquamirae.pw.toml b/mods/aquamirae.pw.toml new file mode 100644 index 0000000..c9e6ff5 --- /dev/null +++ b/mods/aquamirae.pw.toml @@ -0,0 +1,13 @@ +name = "Aquamirae" +filename = "Aquamirae-6.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/k23mNPhZ/versions/ouUaC54p/Aquamirae-6.jar" +hash-format = "sha512" +hash = "c047063fb7b54cf107554992a9341470c622c178a89a1135c9204b347034bf9dfc757f09f1f96fcc20852868c0c11fb18ca7151ec0e2b87556f516011b0f59b1" + +[update] +[update.modrinth] +mod-id = "k23mNPhZ" +version = "ouUaC54p" diff --git a/mods/archers.pw.toml b/mods/archers.pw.toml new file mode 100644 index 0000000..5c2b9f2 --- /dev/null +++ b/mods/archers.pw.toml @@ -0,0 +1,13 @@ +name = "Archers (RPG Series)" +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-format = "sha512" +hash = "dde9c908c61a247ddf6505d1b7338b864428c743dfde582db7f26e0701eb197818ce0304a20613380c17328676595ef1dbecf41390920758f0a9eb94fe6549f2" + +[update] +[update.modrinth] +mod-id = "QgooUXAJ" +version = "SOJ4DVD4" diff --git a/mods/architectury-api.pw.toml b/mods/architectury-api.pw.toml new file mode 100644 index 0000000..8257e1b --- /dev/null +++ b/mods/architectury-api.pw.toml @@ -0,0 +1,13 @@ +name = "Architectury API" +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-format = "sha512" +hash = "4cb8f009fd522d68a795d2cf5a657bdbe248b32ba7c33cd968f5ab521e9d60e198f8a3f6c50e7d960a2b8f50375116be0db1fd44b5710ea758697d8ea70d15de" + +[update] +[update.modrinth] +mod-id = "lhGA9TYQ" +version = "WbL7MStR" diff --git a/mods/athena-ctm.pw.toml b/mods/athena-ctm.pw.toml new file mode 100644 index 0000000..4771b9b --- /dev/null +++ b/mods/athena-ctm.pw.toml @@ -0,0 +1,13 @@ +name = "Athena" +filename = "athena-fabric-1.20.1-3.1.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/b1ZV3DIJ/versions/mXJWSwbJ/athena-fabric-1.20.1-3.1.2.jar" +hash-format = "sha512" +hash = "e55d49348a9d944bbd19390c64a4f42a1375eaaf0cbd4d69b4f523e441d9d23ce9498c912db724260cde32a43b776832cb867161e0989995d974de7e19e12389" + +[update] +[update.modrinth] +mod-id = "b1ZV3DIJ" +version = "mXJWSwbJ" diff --git a/mods/audioplayer.pw.toml b/mods/audioplayer.pw.toml new file mode 100644 index 0000000..52701a4 --- /dev/null +++ b/mods/audioplayer.pw.toml @@ -0,0 +1,13 @@ +name = "AudioPlayer" +filename = "audioplayer-fabric-1.20.1-1.13.1.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/SRlzjEBS/versions/7LsFhSCP/audioplayer-fabric-1.20.1-1.13.1.jar" +hash-format = "sha512" +hash = "c0f895773b34ecb05b9563a75b4a66171372eb65a63be6e32b4858e27f3bf08d468288b85e7c25d2927a1535f587b072a6d30f85fa347170327e2e170edd54dc" + +[update] +[update.modrinth] +mod-id = "SRlzjEBS" +version = "7LsFhSCP" diff --git a/mods/azurelib-armor.pw.toml b/mods/azurelib-armor.pw.toml new file mode 100644 index 0000000..5755ee9 --- /dev/null +++ b/mods/azurelib-armor.pw.toml @@ -0,0 +1,13 @@ +name = "AzureLib Armor" +filename = "azurelibarmor-fabric-1.20.1-2.0.14.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/pduQXSbl/versions/tSxCdYXC/azurelibarmor-fabric-1.20.1-2.0.14.jar" +hash-format = "sha512" +hash = "ee9905b4b73ea042c39ab96203c98620dad5a3befe8ef5a605e1b18d0910c3f96bfcb8520102a09ae34d2c9b4ccc498928218c879629f122a8f5decb6a6b96df" + +[update] +[update.modrinth] +mod-id = "pduQXSbl" +version = "tSxCdYXC" diff --git a/mods/badstdout.pw.toml b/mods/badstdout.pw.toml new file mode 100644 index 0000000..bf85b1d --- /dev/null +++ b/mods/badstdout.pw.toml @@ -0,0 +1,13 @@ +name = "BadStdOut" +filename = "badstdout-1.1.1-1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9Y8sMRVG/versions/RSjDPkRp/badstdout-1.1.1-1.20.jar" +hash-format = "sha512" +hash = "c207cda59ab17a01c53266a8230bc911562028031b8dc5bf75b6c6ec6fcd35ccd84087fb197f31fb1f40952722d862a824c245d655225893a19118aa2523b175" + +[update] +[update.modrinth] +mod-id = "9Y8sMRVG" +version = "RSjDPkRp" diff --git a/mods/bclib.pw.toml b/mods/bclib.pw.toml new file mode 100644 index 0000000..a9a39c6 --- /dev/null +++ b/mods/bclib.pw.toml @@ -0,0 +1,13 @@ +name = "BCLib" +filename = "bclib-3.0.14.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/BgNRHReB/versions/TPC86Pyz/bclib-3.0.14.jar" +hash-format = "sha512" +hash = "bc35cc37a221fbc6f7fca293e72aad0877d8c9d07067ff0b4c8f51dcddbb82ac7cbbb86d1550eef7690bcd1ecf09625f0389f39ae9a252eec5d8511ba7deec4a" + +[update] +[update.modrinth] +mod-id = "BgNRHReB" +version = "TPC86Pyz" diff --git a/mods/beans-backpacks.pw.toml b/mods/beans-backpacks.pw.toml new file mode 100644 index 0000000..7f62fd0 --- /dev/null +++ b/mods/beans-backpacks.pw.toml @@ -0,0 +1,13 @@ +name = "Beans Backpacks (Legacy)" +filename = "BeansBackpacks-fabric-1.20.1-2.0.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/kYt0MSgT/versions/tRrZGZ5U/BeansBackpacks-fabric-1.20.1-2.0.2.jar" +hash-format = "sha512" +hash = "ddf60f44c5b368ea17f6fa232410be738dcee2336f5ec0e2539d97399ed7cabd328c10fe2cd401d402d3643950f6a18d42d9be02c4148151d18ead50c0e344c7" + +[update] +[update.modrinth] +mod-id = "kYt0MSgT" +version = "tRrZGZ5U" diff --git a/mods/beautify-refabricated.pw.toml b/mods/beautify-refabricated.pw.toml new file mode 100644 index 0000000..5e40a81 --- /dev/null +++ b/mods/beautify-refabricated.pw.toml @@ -0,0 +1,13 @@ +name = "Beautify: Refabricated" +filename = "beautify-1.2.0+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/DhSSvaxs/versions/6tIaagwA/beautify-1.2.0%2B1.20.1.jar" +hash-format = "sha512" +hash = "2d6fc3c9a3a53328e56771ff60852b6913975ef167f369993a42d3bc657dc60eb662bbfb0e60fa54ac1d091dc4cb1ecf08902c85fcf9ca4a1d36df27011a776f" + +[update] +[update.modrinth] +mod-id = "DhSSvaxs" +version = "6tIaagwA" diff --git a/mods/beetlebox.pw.toml b/mods/beetlebox.pw.toml new file mode 100644 index 0000000..b0e0570 --- /dev/null +++ b/mods/beetlebox.pw.toml @@ -0,0 +1,13 @@ +name = "Beetlebox" +filename = "beetlebox-1.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/N1P4KKDZ/versions/NbugcenK/beetlebox-1.2.jar" +hash-format = "sha512" +hash = "4f081f67daa289cc8c8fd2ee9be9adddb1f6b7538a1b6074e0d62fc4a42c7638be6043127cd073205b5e2956eb9947df9cc183d97b32bff098c4513754bf879d" + +[update] +[update.modrinth] +mod-id = "N1P4KKDZ" +version = "NbugcenK" diff --git a/mods/bellsandwhistles.pw.toml b/mods/bellsandwhistles.pw.toml new file mode 100644 index 0000000..f960a3b --- /dev/null +++ b/mods/bellsandwhistles.pw.toml @@ -0,0 +1,13 @@ +name = "Create: Bells & Whistles" +filename = "bellsandwhistles-0.4.5+1.20.1-FABRIC.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/gJ5afkVv/versions/m0GUubvz/bellsandwhistles-0.4.5%2B1.20.1-FABRIC.jar" +hash-format = "sha512" +hash = "5c7207da3badad77a394e54d18cc38f5933ddec60a2d86b223ed3c0dbd89b6fd135774215d79190157b2f60ee5bd644dca81c4e225db2d1ebde1bcdab3e8dcca" + +[update] +[update.modrinth] +mod-id = "gJ5afkVv" +version = "m0GUubvz" diff --git a/mods/better-archeology.pw.toml b/mods/better-archeology.pw.toml new file mode 100644 index 0000000..32cff08 --- /dev/null +++ b/mods/better-archeology.pw.toml @@ -0,0 +1,13 @@ +name = "Better Archeology" +filename = "betterarcheology-1.2.1-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/zCh7omyG/versions/QNQXrdhi/betterarcheology-1.2.1-1.20.1.jar" +hash-format = "sha512" +hash = "adde77f1e5bcd7092dc7f769fe573ac06a168ad1de4b914ef688f6ab2247093fc38f64518980f28e381096281444058ab5dbadf6d86a4a8e5645c246b289c696" + +[update] +[update.modrinth] +mod-id = "zCh7omyG" +version = "QNQXrdhi" diff --git a/mods/better-clouds.pw.toml b/mods/better-clouds.pw.toml new file mode 100644 index 0000000..3384d18 --- /dev/null +++ b/mods/better-clouds.pw.toml @@ -0,0 +1,13 @@ +name = "Better Clouds" +filename = "better-clouds-1.3.25+1.20.1-fabric.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/5srFLIaK/versions/qAYDvCSj/better-clouds-1.3.25%2B1.20.1-fabric.jar" +hash-format = "sha512" +hash = "c729f84cbe0eb5c65ddc3a8b3ff9a77be09c455f6f4c84eac5d040ecd7e18f4b90bf006032cff8d76750a1865bc1bfadd8a34f5e48ec1c2fd985e20c201e0f20" + +[update] +[update.modrinth] +mod-id = "5srFLIaK" +version = "qAYDvCSj" diff --git a/mods/better-fabric-console.pw.toml b/mods/better-fabric-console.pw.toml new file mode 100644 index 0000000..c22d83d --- /dev/null +++ b/mods/better-fabric-console.pw.toml @@ -0,0 +1,13 @@ +name = "Better Fabric Console" +filename = "better-fabric-console-mc1.20.1-1.1.6.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/Y8o1j1Sf/versions/8YUqYot0/better-fabric-console-mc1.20.1-1.1.6.jar" +hash-format = "sha512" +hash = "2a82b76b75d58482b6e21d5c18b74a9856bb2be2bb6a6224b8a28fe0306258e96abbfc0e7b48b60be0b5b2e5aa573f887559f7f02f8367a7328d568017c4b8aa" + +[update] +[update.modrinth] +mod-id = "Y8o1j1Sf" +version = "8YUqYot0" diff --git a/mods/better-stats.pw.toml b/mods/better-stats.pw.toml new file mode 100644 index 0000000..279a6c9 --- /dev/null +++ b/mods/better-stats.pw.toml @@ -0,0 +1,13 @@ +name = "Better Statistics Screen" +filename = "betterstats-3.12.6+fabric-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/n6PXGAoM/versions/Ktw36uDC/betterstats-3.12.6%2Bfabric-1.20.1.jar" +hash-format = "sha512" +hash = "412824d45c63dec7a629b9efc16ed9fe08c256a8754b54f8052b2a346c7f0febe359757077d5683321b8fffb059707b29a385ae171d6dfaf6e3fb2db26c9a0de" + +[update] +[update.modrinth] +mod-id = "n6PXGAoM" +version = "Ktw36uDC" diff --git a/mods/better-third-person.pw.toml b/mods/better-third-person.pw.toml new file mode 100644 index 0000000..4997a51 --- /dev/null +++ b/mods/better-third-person.pw.toml @@ -0,0 +1,13 @@ +name = "Better Third Person" +filename = "BetterThirdPerson-Fabric-1.20-1.9.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/G1s2WpNo/versions/1yJzEpzh/BetterThirdPerson-Fabric-1.20-1.9.0.jar" +hash-format = "sha512" +hash = "cfc22f3247dea81f5782f88b8cb72debb41025f575a97618f8ce667d31f8903bbbcb80955e7e378defa9eb447a725424170b63e5415157faed6f2e79198c10af" + +[update] +[update.modrinth] +mod-id = "G1s2WpNo" +version = "1yJzEpzh" diff --git a/mods/betterend.pw.toml b/mods/betterend.pw.toml new file mode 100644 index 0000000..de677f7 --- /dev/null +++ b/mods/betterend.pw.toml @@ -0,0 +1,13 @@ +name = "BetterEnd" +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-format = "sha512" +hash = "5faae5cb3d8759837ec341c605dd9c8b6b32a908e7e1f1248b3b2567c5f9969079df33694cdfb6c743a732bfc9d5824843a93edec07f09e68f8b408e355d15e7" + +[update] +[update.modrinth] +mod-id = "gc8OEnCC" +version = "7QwyTILr" diff --git a/mods/betternether.pw.toml b/mods/betternether.pw.toml new file mode 100644 index 0000000..082b865 --- /dev/null +++ b/mods/betternether.pw.toml @@ -0,0 +1,13 @@ +name = "BetterNether" +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-format = "sha512" +hash = "0ef96b8409904c0ce1b9a875260f252615d7b46704082cfd10ffee88d2d506984ad0c31a91e5cb3392f454bc646b7676c392ac94d78474f156aa519f9501f3d0" + +[update] +[update.modrinth] +mod-id = "MpzVLzy5" +version = "IG7kgtJH" diff --git a/mods/birds-boids-addon.pw.toml b/mods/birds-boids-addon.pw.toml new file mode 100644 index 0000000..588bd95 --- /dev/null +++ b/mods/birds-boids-addon.pw.toml @@ -0,0 +1,13 @@ +name = "Birds | Boids Addon" +filename = "birdsboids-1.1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/CvX6rOtB/versions/JK2QzDCr/birdsboids-1.1.0.jar" +hash-format = "sha512" +hash = "46df525e4523facfb286a882f6d3c38a1cf01c63e632ce70438d5307d3b2e94841ceaacabe02edff679bd1361c1ba1a20fb6fc219f4fab3535c9215dfb3cc5f9" + +[update] +[update.modrinth] +mod-id = "CvX6rOtB" +version = "JK2QzDCr" diff --git a/mods/boids.pw.toml b/mods/boids.pw.toml new file mode 100644 index 0000000..aca10ff --- /dev/null +++ b/mods/boids.pw.toml @@ -0,0 +1,13 @@ +name = "Boids" +filename = "Boids-1.2.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/2OckSy74/versions/14pDAJuk/Boids-1.2.2.jar" +hash-format = "sha512" +hash = "6dad511e8cc523d82ab64005664a65ebc1b3c4ab594c4c6da5966d59a825a7ab2157f4ca8cef2fc6bef2bbcf0130300a046b80f0f0390a2c9cdc6f6b26ed60d3" + +[update] +[update.modrinth] +mod-id = "2OckSy74" +version = "14pDAJuk" diff --git a/mods/bookshelf-lib.pw.toml b/mods/bookshelf-lib.pw.toml new file mode 100644 index 0000000..4e1c3e1 --- /dev/null +++ b/mods/bookshelf-lib.pw.toml @@ -0,0 +1,13 @@ +name = "Bookshelf" +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-format = "sha512" +hash = "6cc0536833c4f1922711da91c3baf3a79b4bf8c72aa548a34e8f4852fc9b1cb51f21729c58544fbe05909fd3e1da316d1f885033af5844024cea936c3626e3d2" + +[update] +[update.modrinth] +mod-id = "uy4Cnpcm" +version = "CBnLZwRS" diff --git a/mods/borderless-mining.pw.toml b/mods/borderless-mining.pw.toml new file mode 100644 index 0000000..509b0e9 --- /dev/null +++ b/mods/borderless-mining.pw.toml @@ -0,0 +1,13 @@ +name = "Borderless Mining" +filename = "borderless-mining-1.1.8+1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/kYq5qkSL/versions/lhrW53q7/borderless-mining-1.1.8%2B1.20.1.jar" +hash-format = "sha512" +hash = "ca30d3fea6cae4c206789d7461edeedfb294a96e5eaebf60075baf3326e1021979cd94e29ade9096f25bfeb8cb36b6c6659d480ad24b1572c0c79efc6ee5e420" + +[update] +[update.modrinth] +mod-id = "kYq5qkSL" +version = "lhrW53q7" diff --git a/mods/botarium.pw.toml b/mods/botarium.pw.toml new file mode 100644 index 0000000..181f342 --- /dev/null +++ b/mods/botarium.pw.toml @@ -0,0 +1,13 @@ +name = "Botarium" +filename = "botarium-fabric-1.20.1-2.3.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/2u6LRnMa/versions/f3ATcSfq/botarium-fabric-1.20.1-2.3.4.jar" +hash-format = "sha512" +hash = "03589a8d05c17dbb4271c212d0eb00c53d9d5c0705f63c7816ff9e099245db71f94e7c544e323beaeac28d30bd3807eeccb1352792cb6d778ff6ecf68f4635c7" + +[update] +[update.modrinth] +mod-id = "2u6LRnMa" +version = "f3ATcSfq" diff --git a/mods/bountiful.pw.toml b/mods/bountiful.pw.toml new file mode 100644 index 0000000..97f6206 --- /dev/null +++ b/mods/bountiful.pw.toml @@ -0,0 +1,13 @@ +name = "Bountiful" +filename = "Bountiful-6.0.4+1.20.1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/BpwWFOVM/versions/E9PUxeM9/Bountiful-6.0.4%2B1.20.1-fabric.jar" +hash-format = "sha512" +hash = "71716ad25123ccef2b7b7b5ff435e6585510c569060762d666ceedc6f03d28afc2ed762f6b415a01ed3b09ab1180ac0f39efe250811e4cb2304c3bb5f1415903" + +[update] +[update.modrinth] +mod-id = "BpwWFOVM" +version = "E9PUxeM9" diff --git a/mods/c2me-fabric.pw.toml b/mods/c2me-fabric.pw.toml new file mode 100644 index 0000000..cc98019 --- /dev/null +++ b/mods/c2me-fabric.pw.toml @@ -0,0 +1,13 @@ +name = "Concurrent Chunk Management Engine (Fabric)" +filename = "c2me-fabric-mc1.20.1-0.2.0+alpha.11.13.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/VSNURh3q/versions/LRL5QAZY/c2me-fabric-mc1.20.1-0.2.0%2Balpha.11.13.jar" +hash-format = "sha512" +hash = "b4ea87f710dbe1703f68611cfbbc3dac11d50b78af90b5ee52f32d29018f47f6ea7bf8d9de330cff1437db8c9ca004f94d436f711aa90279f8fce316fba21523" + +[update] +[update.modrinth] +mod-id = "VSNURh3q" +version = "LRL5QAZY" diff --git a/mods/cat-loaf.pw.toml b/mods/cat-loaf.pw.toml new file mode 100644 index 0000000..0d90f6f --- /dev/null +++ b/mods/cat-loaf.pw.toml @@ -0,0 +1,13 @@ +name = "Cat Loaf" +filename = "catloaf-1.1.0-1.20.x-FABRIC.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Q1ZgOTni/versions/4Tg5EAsN/catloaf-1.1.0-1.20.x-FABRIC.jar" +hash-format = "sha512" +hash = "583795b4659aaebedcb90e515275d4378f40013ac1911fd5356c6e20f42e3505645f40ceb0c31ab9298614116a51c5e757ac1887dd4e64f1604bec4fae7df665" + +[update] +[update.modrinth] +mod-id = "Q1ZgOTni" +version = "4Tg5EAsN" diff --git a/mods/cat_jam.pw.toml b/mods/cat_jam.pw.toml new file mode 100644 index 0000000..a1699e9 --- /dev/null +++ b/mods/cat_jam.pw.toml @@ -0,0 +1,13 @@ +name = "cat_jam" +filename = "cat_jam-fabric-mc1.20-1.3.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/x3s69afN/versions/Q4DJyoRR/cat_jam-fabric-mc1.20-1.3.1.jar" +hash-format = "sha512" +hash = "7414e968bff8346ebbb83cc18723c66c589b2bfdea2bb1cee9b3039cc796d558f6951aa30f420bce9ec005699d0a80aa4d547a717862665eee46a5f7f2dbe963" + +[update] +[update.modrinth] +mod-id = "x3s69afN" +version = "Q4DJyoRR" diff --git a/mods/cc-tweaked.pw.toml b/mods/cc-tweaked.pw.toml new file mode 100644 index 0000000..3cc91b6 --- /dev/null +++ b/mods/cc-tweaked.pw.toml @@ -0,0 +1,13 @@ +name = "CC: Tweaked" +filename = "cc-tweaked-1.20.1-fabric-1.114.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/gu7yAYhd/versions/h2Kak2Xm/cc-tweaked-1.20.1-fabric-1.114.2.jar" +hash-format = "sha512" +hash = "c4ebea128203b72f7075bd3403effd7cb0caff99b39bf102c78308a112044d37f22f566a354d5190e1469b873416b07d6afb175379836c917a46242c8a7b33b2" + +[update] +[update.modrinth] +mod-id = "gu7yAYhd" +version = "h2Kak2Xm" diff --git a/mods/cccbridge.pw.toml b/mods/cccbridge.pw.toml new file mode 100644 index 0000000..6253239 --- /dev/null +++ b/mods/cccbridge.pw.toml @@ -0,0 +1,13 @@ +name = "CC:C Bridge" +filename = "cccbridge-mc1.20.1-fabric-v1.6.2b.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fXt291FO/versions/57pJUQQM/cccbridge-mc1.20.1-fabric-v1.6.2b.jar" +hash-format = "sha512" +hash = "f9311e1f851298478adafc8e22c98d9aee9c8b9783bde726c296991f725d7a3c611b4087136d8af1958673c795c4b3025f3b87abeb877502ecdeffa4cc8e934d" + +[update] +[update.modrinth] +mod-id = "fXt291FO" +version = "57pJUQQM" diff --git a/mods/chalk-colorful-addon.pw.toml b/mods/chalk-colorful-addon.pw.toml new file mode 100644 index 0000000..2786226 --- /dev/null +++ b/mods/chalk-colorful-addon.pw.toml @@ -0,0 +1,13 @@ +name = "Chalk: Colorful Addon" +filename = "chalk-colorful-addon-2.1.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/VPJS28NH/versions/gvVFiwqG/chalk-colorful-addon-2.1.1.jar" +hash-format = "sha512" +hash = "7efc1d5c7e2589eaf02bddb3798b4db6c0dcc8e3a8deccad428c1081cd397f249983a3b8deb6f7b336ef59997ce26290fa6687390ed7709550cf1421eedc8417" + +[update] +[update.modrinth] +mod-id = "VPJS28NH" +version = "gvVFiwqG" diff --git a/mods/chalk.pw.toml b/mods/chalk.pw.toml new file mode 100644 index 0000000..86abb8c --- /dev/null +++ b/mods/chalk.pw.toml @@ -0,0 +1,13 @@ +name = "Chalk (Fabric)" +filename = "chalk-2.2.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/OrtjXTCH/versions/AnIA4EcY/chalk-2.2.4.jar" +hash-format = "sha512" +hash = "75d8a61b9d037f8bae30d6694dab4813b5f77fdf20c0bfd7a6ec9d2e25815cc03473b28a0366cbf33eda9bd90070e3d6a442fc051270161741b1924eba201a7e" + +[update] +[update.modrinth] +mod-id = "OrtjXTCH" +version = "AnIA4EcY" diff --git a/mods/charm-of-undying.pw.toml b/mods/charm-of-undying.pw.toml new file mode 100644 index 0000000..2a299fc --- /dev/null +++ b/mods/charm-of-undying.pw.toml @@ -0,0 +1,13 @@ +name = "Charm of Undying" +filename = "charmofundying-quilt-6.5.0+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/b5GyyYkp/versions/75dDrCqo/charmofundying-quilt-6.5.0%2B1.20.1.jar" +hash-format = "sha512" +hash = "0760e837c228eb26966e1ec2d676c6d0ba55c9c091322a177d9e7f84120d07e9101116ea96353b21a6d595852af8f7c399273761594cc86d2986b3a3799b974e" + +[update] +[update.modrinth] +mod-id = "b5GyyYkp" +version = "75dDrCqo" diff --git a/mods/chat-heads.pw.toml b/mods/chat-heads.pw.toml new file mode 100644 index 0000000..3af7801 --- /dev/null +++ b/mods/chat-heads.pw.toml @@ -0,0 +1,13 @@ +name = "Chat Heads" +filename = "chat_heads-0.13.7-fabric-1.20.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/Wb5oqrBJ/versions/fKY4vKuA/chat_heads-0.13.7-fabric-1.20.jar" +hash-format = "sha512" +hash = "7599760e99c7e7e987377d78c5b866640dc44cc0ddceaa62fcd34b171ec7a351f704eed608040929bbae8f3af6f612b944ca4b0be4a7bb58544b6463e38f857d" + +[update] +[update.modrinth] +mod-id = "Wb5oqrBJ" +version = "fKY4vKuA" diff --git a/mods/chefs-delight.pw.toml b/mods/chefs-delight.pw.toml new file mode 100644 index 0000000..22a82d5 --- /dev/null +++ b/mods/chefs-delight.pw.toml @@ -0,0 +1,13 @@ +name = "Chef's Delight" +filename = "chefs-delight-1.0.3-fabric-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/pvcsfne4/versions/hV0Pl3WP/chefs-delight-1.0.3-fabric-1.20.1.jar" +hash-format = "sha512" +hash = "a23d87995efbc17ca6fed066718e863749f3df744e7c848e5f7879947084688657c32ff0071397c01d6ff616efa652b04dfc59df2fb202a7d071838f2017096e" + +[update] +[update.modrinth] +mod-id = "pvcsfne4" +version = "hV0Pl3WP" diff --git a/mods/chested-companions.pw.toml b/mods/chested-companions.pw.toml new file mode 100644 index 0000000..6980441 --- /dev/null +++ b/mods/chested-companions.pw.toml @@ -0,0 +1,13 @@ +name = "Chested Companions" +filename = "chestedcompanions-1.3.1-1.20.1-FABRIC.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "da4df8d216de569c1df65dbe3e4d663903f24e90" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5293908 +project-id = 983862 diff --git a/mods/chimes.pw.toml b/mods/chimes.pw.toml new file mode 100644 index 0000000..d891007 --- /dev/null +++ b/mods/chimes.pw.toml @@ -0,0 +1,13 @@ +name = "Chimes" +filename = "Chimes-v2.0.1-1.20.1-Fabric.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "5477114f82c8e200f000828276567918f0e074e8" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4671968 +project-id = 350464 diff --git a/mods/chipped-x-create-fabric.pw.toml b/mods/chipped-x-create-fabric.pw.toml new file mode 100644 index 0000000..91003f6 --- /dev/null +++ b/mods/chipped-x-create-fabric.pw.toml @@ -0,0 +1,13 @@ +name = "Chipped x Create Fabric" +filename = "chcf-1.0.0.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/Ncbuvyrf/versions/Q9Q2uYPe/chcf-1.0.0.jar" +hash-format = "sha512" +hash = "af76127fb18b0e433a574932e47752033eeb848aa8982ce5bf1347152094e8b107d1bc69c6a1341c6fe24cc5e0d41d2169a2c2c022c595ff6a92f63eddde39f3" + +[update] +[update.modrinth] +mod-id = "Ncbuvyrf" +version = "Q9Q2uYPe" diff --git a/mods/chipped.pw.toml b/mods/chipped.pw.toml new file mode 100644 index 0000000..44e344d --- /dev/null +++ b/mods/chipped.pw.toml @@ -0,0 +1,13 @@ +name = "Chipped" +filename = "chipped-fabric-1.20.1-3.0.7.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/BAscRYKm/versions/pwyEaKDs/chipped-fabric-1.20.1-3.0.7.jar" +hash-format = "sha512" +hash = "5e12cc2ac7aec827a06fb9358fa53a25040428ae0f192a96305b129b084073154a6ae862d6875f6a02fe89a7a11d253049ce90b292f4c4ab2c72a9c94b93c9b0" + +[update] +[update.modrinth] +mod-id = "BAscRYKm" +version = "pwyEaKDs" diff --git a/mods/chunky.pw.toml b/mods/chunky.pw.toml new file mode 100644 index 0000000..6778992 --- /dev/null +++ b/mods/chunky.pw.toml @@ -0,0 +1,13 @@ +name = "Chunky" +filename = "Chunky-1.3.146.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fALzjamp/versions/NHWYq9at/Chunky-1.3.146.jar" +hash-format = "sha512" +hash = "9dbb82993302a8dfbe6ce1f46a051d72b5ada924424f4e23674ce660d209257584159a33248fa9247793e9ba03d3a117299ce1ff6685f06a7fb87c96504459aa" + +[update] +[update.modrinth] +mod-id = "fALzjamp" +version = "NHWYq9at" diff --git a/mods/cicada.pw.toml b/mods/cicada.pw.toml new file mode 100644 index 0000000..ff4c3ba --- /dev/null +++ b/mods/cicada.pw.toml @@ -0,0 +1,13 @@ +name = "CICADA" +filename = "cicada-lib-0.9.2+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/IwCkru1D/versions/vQa9oDJZ/cicada-lib-0.9.2%2B1.20.1.jar" +hash-format = "sha512" +hash = "d7a705e5d5e0cd993bfebd85e80e7763519510d9af111d1baa803a628267245a45c3c4eef7f19c817dc3db3b8c2b12b58dd6e4fc7b1c76ce149981ab5c9dd171" + +[update] +[update.modrinth] +mod-id = "IwCkru1D" +version = "vQa9oDJZ" diff --git a/mods/cloth-config.pw.toml b/mods/cloth-config.pw.toml new file mode 100644 index 0000000..0ebc287 --- /dev/null +++ b/mods/cloth-config.pw.toml @@ -0,0 +1,13 @@ +name = "Cloth Config API" +filename = "cloth-config-11.1.136-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9s6osm5g/versions/2xQdCMyG/cloth-config-11.1.136-fabric.jar" +hash-format = "sha512" +hash = "2da85c071c854223cc30c8e46794391b77e53f28ecdbbde59dc83b3dbbdfc74be9e68da9ed464e7f98b4361033899ba4f681ebff1f35edc2c60e599a59796f1c" + +[update] +[update.modrinth] +mod-id = "9s6osm5g" +version = "2xQdCMyG" diff --git a/mods/comforts.pw.toml b/mods/comforts.pw.toml new file mode 100644 index 0000000..d233f3f --- /dev/null +++ b/mods/comforts.pw.toml @@ -0,0 +1,13 @@ +name = "Comforts" +filename = "comforts-quilt-6.4.0+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/SaCpeal4/versions/p7ktD9Ks/comforts-quilt-6.4.0%2B1.20.1.jar" +hash-format = "sha512" +hash = "09af87f08f5e5afbb6c3f430a621ca548a4d4b05a5e45300f97a87e9461fb3a36ba637cf980c5e99624acd8c94c2f87e576ba7302c777ec3ca322e58bc3f93dd" + +[update] +[update.modrinth] +mod-id = "SaCpeal4" +version = "p7ktD9Ks" diff --git a/mods/continuity.pw.toml b/mods/continuity.pw.toml new file mode 100644 index 0000000..1c96ae9 --- /dev/null +++ b/mods/continuity.pw.toml @@ -0,0 +1,13 @@ +name = "Continuity" +filename = "continuity-3.0.0+1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/1IjD5062/versions/qGTDcjHM/continuity-3.0.0%2B1.20.1.jar" +hash-format = "sha512" +hash = "7205cae3c534fd5d5328a9659146911381c06e54da995aabd11745ad72def5bd5120b7cb792fab2e8dcaa4670c23bdba21079b8f6da94152cfc6ea4b415edcbf" + +[update] +[update.modrinth] +mod-id = "1IjD5062" +version = "qGTDcjHM" diff --git a/mods/copper-horns.pw.toml b/mods/copper-horns.pw.toml new file mode 100644 index 0000000..7e5d27d --- /dev/null +++ b/mods/copper-horns.pw.toml @@ -0,0 +1,13 @@ +name = "Return Copper Horns" +filename = "copper-horns-1.0.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ile7qLGI/versions/ymvfrJys/copper-horns-1.0.2.jar" +hash-format = "sha512" +hash = "43cd3ad3c512024e31caada97f5224030acda8aed092c4b881aa0bc707d66f7de433f523dd772f8017f43a57e9f622882dd60df72339d4603de4945aab2e7f06" + +[update] +[update.modrinth] +mod-id = "ile7qLGI" +version = "ymvfrJys" diff --git a/mods/coroutil.pw.toml b/mods/coroutil.pw.toml new file mode 100644 index 0000000..bee5d61 --- /dev/null +++ b/mods/coroutil.pw.toml @@ -0,0 +1,13 @@ +name = "CoroUtil" +filename = "coroutil-fabric-1.20.1-1.3.7.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/rLLJ1OZM/versions/7tRnsYkP/coroutil-fabric-1.20.1-1.3.7.jar" +hash-format = "sha512" +hash = "4a03363dd9cfd517eb04bea77779c88e74f12c1dacadc726869cb9b595348d615e50041893ad72155f7ac2c359219604710d6157dec95a46fe0e598ef5642035" + +[update] +[update.modrinth] +mod-id = "rLLJ1OZM" +version = "7tRnsYkP" diff --git a/mods/cozys-improved-cats.pw.toml b/mods/cozys-improved-cats.pw.toml new file mode 100644 index 0000000..df2ad74 --- /dev/null +++ b/mods/cozys-improved-cats.pw.toml @@ -0,0 +1,13 @@ +name = "Cozy's Improved Cats" +filename = "cozys-improved-cats-1.1.1-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/5MaZBjPT/versions/QbfZFlxE/cozys-improved-cats-1.1.1-1.20.1.jar" +hash-format = "sha512" +hash = "4853a23357ecdb09be8f66167c1ceb8b4827581998af6940c6877ec2b9dbd60275b4c5b5a225740f13637b507d37741d58220e04c467c43bd3ab86a4028d5a24" + +[update] +[update.modrinth] +mod-id = "5MaZBjPT" +version = "QbfZFlxE" diff --git a/mods/cozys-improved-wolves.pw.toml b/mods/cozys-improved-wolves.pw.toml new file mode 100644 index 0000000..3a38215 --- /dev/null +++ b/mods/cozys-improved-wolves.pw.toml @@ -0,0 +1,13 @@ +name = "Cozy's Improved Wolves" +filename = "cozys-improved-wolves-1.2.0-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/N4PW8UQo/versions/gvHQbf2b/cozys-improved-wolves-1.2.0-1.20.1.jar" +hash-format = "sha512" +hash = "ddfe586a948a02a30f67727d33bb20d3744c6f057ff35e465bc66041eb69026515c792d4dba33d86caa22781619bf15161a2665aa362301e62b52821d9f9c007" + +[update] +[update.modrinth] +mod-id = "N4PW8UQo" +version = "gvHQbf2b" diff --git a/mods/craft-slabs-back-into-blocks.pw.toml b/mods/craft-slabs-back-into-blocks.pw.toml new file mode 100644 index 0000000..98c1533 --- /dev/null +++ b/mods/craft-slabs-back-into-blocks.pw.toml @@ -0,0 +1,13 @@ +name = "Craft Slabs Back Into Blocks" +filename = "slabstoblocks-1.20.1-1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/8MosnjaC/versions/lZiHQmlZ/slabstoblocks-1.20.1-1-fabric.jar" +hash-format = "sha512" +hash = "cbd42ddb8e3fc632cee073c3568d0c31825eea0647dea95780d5f35174fd15f919976478e4b3c97ce355caa1f4fd1f2d0a10ab9878f1a66cd48e6c55c57479f2" + +[update] +[update.modrinth] +mod-id = "8MosnjaC" +version = "lZiHQmlZ" diff --git a/mods/craftify.pw.toml b/mods/craftify.pw.toml new file mode 100644 index 0000000..dc65b16 --- /dev/null +++ b/mods/craftify.pw.toml @@ -0,0 +1,13 @@ +name = "Craftify" +filename = "Craftify-1.20.1-1.16.0-fabric.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/nrJ2NpD0/versions/re35cvGC/Craftify-1.20.1-1.16.0-fabric.jar" +hash-format = "sha512" +hash = "1315b7ca450e68124e027b6dbfaecc6bd17f53f04e676112d4d5574e9d5f8f3e214d98111949abcdec1cfa307a6ae25414bff8c391f477b12fb10af573b0efac" + +[update] +[update.modrinth] +mod-id = "nrJ2NpD0" +version = "re35cvGC" diff --git a/mods/crate-delight.pw.toml b/mods/crate-delight.pw.toml new file mode 100644 index 0000000..b7a02cd --- /dev/null +++ b/mods/crate-delight.pw.toml @@ -0,0 +1,13 @@ +name = "Crate Delight (for Farmer's Delight)" +filename = "cratedelight-24.11.22-1.20-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9rlXSyLg/versions/nU9cqGRT/cratedelight-24.11.22-1.20-fabric.jar" +hash-format = "sha512" +hash = "7f820c536f9546c0dd2eefcf88e587138a4fd0cbc3a9e94c78ef2c3ede0d5e93b35221bf1a9e6176df1e5de2578dfe775336d862fdccd8b1ddc1e18495e5ed10" + +[update] +[update.modrinth] +mod-id = "9rlXSyLg" +version = "nU9cqGRT" diff --git a/mods/create-big-cannons.pw.toml b/mods/create-big-cannons.pw.toml new file mode 100644 index 0000000..d336cdc --- /dev/null +++ b/mods/create-big-cannons.pw.toml @@ -0,0 +1,13 @@ +name = "Create Big Cannons" +filename = "createbigcannons-5.7.2-mc.1.20.1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/GWp4jCJj/versions/RGknZKMB/createbigcannons-5.7.2-mc.1.20.1-fabric.jar" +hash-format = "sha512" +hash = "04e9a2890da7b7268b0759fc5d2141733541f16a76086031e497cd6a1d69aafe68a3e1b82210333473ff3f4d69450bf83e3f5b32c7a4786b74889c68fb5352c7" + +[update] +[update.modrinth] +mod-id = "GWp4jCJj" +version = "RGknZKMB" diff --git a/mods/create-crystal-clear.pw.toml b/mods/create-crystal-clear.pw.toml new file mode 100644 index 0000000..f7cc71d --- /dev/null +++ b/mods/create-crystal-clear.pw.toml @@ -0,0 +1,13 @@ +name = "Create: Crystal Clear" +filename = "Crystal-Clear-2.1-Beta-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/h7QgiH72/versions/jCoGpP8a/Crystal-Clear-2.1-Beta-fabric.jar" +hash-format = "sha512" +hash = "e80461981dda1179cb15f57f39d41d7418af3d37f88f32d9cfa01a4f7d1dc2192d378ee415bc02d5616c3ea2b418fcc3f326423f5f7baf5886bfaf23ff2d725e" + +[update] +[update.modrinth] +mod-id = "h7QgiH72" +version = "jCoGpP8a" diff --git a/mods/create-deco.pw.toml b/mods/create-deco.pw.toml new file mode 100644 index 0000000..76b1453 --- /dev/null +++ b/mods/create-deco.pw.toml @@ -0,0 +1,13 @@ +name = "Create Deco" +filename = "createdeco-2.0.2-1.20.1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/sMvUb4Rb/versions/GsxgfeNu/createdeco-2.0.2-1.20.1-fabric.jar" +hash-format = "sha512" +hash = "f7ce4b520b7eb47fb9d1a8f510465b96673dee2d6f91ff0720713ee62143d095b399a980666538ebfb8b401fb5e93baf50a2cb2be6a4f2adfde2024f198a35c9" + +[update] +[update.modrinth] +mod-id = "sMvUb4Rb" +version = "GsxgfeNu" diff --git a/mods/create-dynamic-lights.pw.toml b/mods/create-dynamic-lights.pw.toml new file mode 100644 index 0000000..54b35d4 --- /dev/null +++ b/mods/create-dynamic-lights.pw.toml @@ -0,0 +1,13 @@ +name = "Create: Dynamic Lights" +filename = "create-dyn-light-fabric1.20.1+1.0.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/evMQRxqV/versions/nJgqKQD5/create-dyn-light-fabric1.20.1%2B1.0.2.jar" +hash-format = "sha512" +hash = "d8645d381832384e1afb4675877d8633dec2cf52142cc69aa3f9dfd33ca1d4bb64e0fdb7e391fb32002730d73c59e2489cff6d8b2e047dd2607a16053b4fe4c9" + +[update] +[update.modrinth] +mod-id = "evMQRxqV" +version = "nJgqKQD5" diff --git a/mods/create-fabric.pw.toml b/mods/create-fabric.pw.toml new file mode 100644 index 0000000..8db92b5 --- /dev/null +++ b/mods/create-fabric.pw.toml @@ -0,0 +1,13 @@ +name = "Create Fabric" +filename = "create-fabric-0.5.1-j-build.1631+mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Xbc0uyRg/versions/7Ub71nPb/create-fabric-0.5.1-j-build.1631%2Bmc1.20.1.jar" +hash-format = "sha512" +hash = "73ff936492c857ae411c10cae0194d64a56b98a1a7a9478ca13fe2a6e3ee155e327cf4590a3888aaa671561b4cf74de97f2f44224d7981b03a546e36236c3de2" + +[update] +[update.modrinth] +mod-id = "Xbc0uyRg" +version = "7Ub71nPb" diff --git a/mods/create-food.pw.toml b/mods/create-food.pw.toml new file mode 100644 index 0000000..78a96b6 --- /dev/null +++ b/mods/create-food.pw.toml @@ -0,0 +1,13 @@ +name = "Create: Food" +filename = "create-food-1.20.1-1.1.7-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/4HnO3el1/versions/6NvJ1FGY/create-food-1.20.1-1.1.7-fabric.jar" +hash-format = "sha512" +hash = "0105b2f4c5e35fadc0a906dc51017b07ff79111d6a03700a47dfcd7933c8059847edf1a49676012f298a1f31ae205087d67938453562e2f1fcdc22981675a3cd" + +[update] +[update.modrinth] +mod-id = "4HnO3el1" +version = "6NvJ1FGY" diff --git a/mods/create-pattern-schematics.pw.toml b/mods/create-pattern-schematics.pw.toml new file mode 100644 index 0000000..4636047 --- /dev/null +++ b/mods/create-pattern-schematics.pw.toml @@ -0,0 +1,13 @@ +name = "Create: Pattern Schematics" +filename = "pattern_schematics-1.1.16+fabric-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/cpqKG67r/versions/TTqV7pm1/pattern_schematics-1.1.16%2Bfabric-1.20.1.jar" +hash-format = "sha512" +hash = "a12f42c976de21c5f9f2ad193caf7d185f63816f46f3318170d499681aaffa3d973804772f0af9eaab4f08373558fd1b0e7e8c0c675b38859e77b9379856ae3e" + +[update] +[update.modrinth] +mod-id = "cpqKG67r" +version = "TTqV7pm1" diff --git a/mods/create-steam-n-rails.pw.toml b/mods/create-steam-n-rails.pw.toml new file mode 100644 index 0000000..28da183 --- /dev/null +++ b/mods/create-steam-n-rails.pw.toml @@ -0,0 +1,13 @@ +name = "Create: Steam 'n' Rails" +filename = "Steam_Rails-1.6.9+fabric-mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ZzjhlDgM/versions/VFhdqLko/Steam_Rails-1.6.9%2Bfabric-mc1.20.1.jar" +hash-format = "sha512" +hash = "048a0cad7fd4f9eb7516ee557a8d427f4e65b7e7020a24f60fe171f5b84c53dc0a67b603fc4a7d063f15df05ae5e35fc4ff64ec1b8996ca6fc42833fc2f5d55b" + +[update] +[update.modrinth] +mod-id = "ZzjhlDgM" +version = "VFhdqLko" diff --git a/mods/create-structures.pw.toml b/mods/create-structures.pw.toml new file mode 100644 index 0000000..7af387b --- /dev/null +++ b/mods/create-structures.pw.toml @@ -0,0 +1,13 @@ +name = "Create: Structures" +filename = "create-structures-0.1.1-1.20.1-FABRIC.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/IAnP4np7/versions/nqsTHZwx/create-structures-0.1.1-1.20.1-FABRIC.jar" +hash-format = "sha512" +hash = "56d693c501b655d52dc21673efe003a99feedfa44cf89afed82fae97c1d6be8fd2c8a9d0c8f126ecbe37116bf2a4631b8bb725bdc870a3382e4791c49cce04b6" + +[update] +[update.modrinth] +mod-id = "IAnP4np7" +version = "nqsTHZwx" diff --git a/mods/creativecore.pw.toml b/mods/creativecore.pw.toml new file mode 100644 index 0000000..c22a0c0 --- /dev/null +++ b/mods/creativecore.pw.toml @@ -0,0 +1,13 @@ +name = "CreativeCore" +filename = "CreativeCore_FABRIC_v2.12.24_mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/OsZiaDHq/versions/Ex1iqbF5/CreativeCore_FABRIC_v2.12.24_mc1.20.1.jar" +hash-format = "sha512" +hash = "ee8be1d4df79b0dea14abda5f3f7198b51e2d91600402979974a2cb91b5f2b0ffb36e9a18e0d1f275326dd2bc02fd5ed355bab0c19dc87e323df91bff78fe6e3" + +[update] +[update.modrinth] +mod-id = "OsZiaDHq" +version = "Ex1iqbF5" diff --git a/mods/cristel-lib.pw.toml b/mods/cristel-lib.pw.toml new file mode 100644 index 0000000..ed0a450 --- /dev/null +++ b/mods/cristel-lib.pw.toml @@ -0,0 +1,13 @@ +name = "Cristel Lib" +filename = "cristellib-1.1.5-fabric.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/cl223EMc/versions/tBnivdbu/cristellib-1.1.5-fabric.jar" +hash-format = "sha512" +hash = "50ac2ac365932c5ea43a8baa67c2509292ae810fbe15848f202160c0bac3ef5ae648f175ae93436a9226e5b082cec562fab8da17c524bb642360aa859ef52652" + +[update] +[update.modrinth] +mod-id = "cl223EMc" +version = "tBnivdbu" diff --git a/mods/ct-overhaul-village.pw.toml b/mods/ct-overhaul-village.pw.toml new file mode 100644 index 0000000..b88550a --- /dev/null +++ b/mods/ct-overhaul-village.pw.toml @@ -0,0 +1,13 @@ +name = "ChoiceTheorem's Overhauled Village" +filename = "[fabric]ctov-3.4.10.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/fgmhI8kH/versions/tpKHcPzx/%5Bfabric%5Dctov-3.4.10.jar" +hash-format = "sha512" +hash = "6bec2cabba22cde27d1dc3546a3c559451cc1eb2044b612bc975f497fb48d21a4fcfe4f2012102997fb11d7536dadcdabdc61ded4cc3ca02e7dda272007a74c4" + +[update] +[update.modrinth] +mod-id = "fgmhI8kH" +version = "tpKHcPzx" diff --git a/mods/ctov-beautify-compat.pw.toml b/mods/ctov-beautify-compat.pw.toml new file mode 100644 index 0000000..35ce00a --- /dev/null +++ b/mods/ctov-beautify-compat.pw.toml @@ -0,0 +1,13 @@ +name = "CTOV - Beautify Compat" +filename = "ctov-beautify-compat-2.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/iunZDj0l/versions/elBmQR7P/ctov-beautify-compat-2.0.jar" +hash-format = "sha512" +hash = "327891ba03becb4c2e70a40f09ff86ba8fb28ff0467f6d66901c7a86727464adced54841e32bcf2d96e90745b452bd7159e9f01d5af70d019c1faf101aaa7fc2" + +[update] +[update.modrinth] +mod-id = "iunZDj0l" +version = "elBmQR7P" diff --git a/mods/ctov-chefs-delight-compat.pw.toml b/mods/ctov-chefs-delight-compat.pw.toml new file mode 100644 index 0000000..2390f45 --- /dev/null +++ b/mods/ctov-chefs-delight-compat.pw.toml @@ -0,0 +1,13 @@ +name = "CTOV - Chef's delight Compat" +filename = "ctov-chefs-delight-compat-2.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/6PJbKvJH/versions/MVTYiQSv/ctov-chefs-delight-compat-2.0.jar" +hash-format = "sha512" +hash = "2922dcc2aaffb2e4861b30ca74fc9ad4ef5fd00161d032dc4a4543258f50dc59e8b4c6cadea2c7d1342048be97798637247308203925e9079295db0de633dde0" + +[update] +[update.modrinth] +mod-id = "6PJbKvJH" +version = "MVTYiQSv" diff --git a/mods/ctov-create-structures.pw.toml b/mods/ctov-create-structures.pw.toml new file mode 100644 index 0000000..3346563 --- /dev/null +++ b/mods/ctov-create-structures.pw.toml @@ -0,0 +1,13 @@ +name = "CTOV - Create: Structures" +filename = "ctov-create-structures-1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/l9fldtN4/versions/hwClzDIs/ctov-create-structures-1.0.jar" +hash-format = "sha512" +hash = "105e53ae17a14f918c88f47a0465ad836f3000073813b5538bf9b5f72204050106d8d0813561c466306d16a76b6030c1394543968588d8dba8c19b972e9c3895" + +[update] +[update.modrinth] +mod-id = "l9fldtN4" +version = "hwClzDIs" diff --git a/mods/ctov-farmers-delight-compat.pw.toml b/mods/ctov-farmers-delight-compat.pw.toml new file mode 100644 index 0000000..eef1b18 --- /dev/null +++ b/mods/ctov-farmers-delight-compat.pw.toml @@ -0,0 +1,13 @@ +name = "CTOV - Farmer Delight Compat" +filename = "ctov-farmers-delight-compat-2.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/CdRC4fyI/versions/qWJ0YcQq/ctov-farmers-delight-compat-2.1.jar" +hash-format = "sha512" +hash = "79724964a5e8c31356b2efa4c8811c928d2f5095016e19162de90d7d4c4fbba3dcaa49db003a5f3d588d177d7c7008551af8f77677f52831ec62e05f69547441" + +[update] +[update.modrinth] +mod-id = "CdRC4fyI" +version = "qWJ0YcQq" diff --git a/mods/ctov-friends-and-foes-compat.pw.toml b/mods/ctov-friends-and-foes-compat.pw.toml new file mode 100644 index 0000000..55ccd91 --- /dev/null +++ b/mods/ctov-friends-and-foes-compat.pw.toml @@ -0,0 +1,13 @@ +name = "CTOV - Friends and Foes Compat" +filename = "ctov-friends-and-foes-compat-2.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/kawJN2LZ/versions/BbKorFuj/ctov-friends-and-foes-compat-2.0.jar" +hash-format = "sha512" +hash = "43a5373b0f94b13fee6872a74cacdd51aa47b1d62b9212a7af4360bf47b66aa2f8165753aa2c344884a20287203c3b98b9b8f3afab2708fca0ebcb687308f4c8" + +[update] +[update.modrinth] +mod-id = "kawJN2LZ" +version = "BbKorFuj" diff --git a/mods/ctov-gazebo-compat.pw.toml b/mods/ctov-gazebo-compat.pw.toml new file mode 100644 index 0000000..b2ef30b --- /dev/null +++ b/mods/ctov-gazebo-compat.pw.toml @@ -0,0 +1,13 @@ +name = "CTOV - Gazebo compat" +filename = "ctov-gazebo-compat-1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/wE0hjz4k/versions/tDe5zXNn/ctov-gazebo-compat-1.0.jar" +hash-format = "sha512" +hash = "ba0b02f53c0be1e7b163f9089806d0840c7c6673fd3b98d42a8630f5fc89dd627af8f9c4a883c79e5f488ed495141681785be6b66cc3f6d6fbd67751024aebb1" + +[update] +[update.modrinth] +mod-id = "wE0hjz4k" +version = "tDe5zXNn" diff --git a/mods/ctov-paladins-n-priests-compat.pw.toml b/mods/ctov-paladins-n-priests-compat.pw.toml new file mode 100644 index 0000000..cb28496 --- /dev/null +++ b/mods/ctov-paladins-n-priests-compat.pw.toml @@ -0,0 +1,13 @@ +name = "CTOV - Paladins & Priests compat" +filename = "ctov-paladins-n-priests-compat-1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/prik3cIi/versions/BmAdk4bU/ctov-paladins-n-priests-compat-1.0.jar" +hash-format = "sha512" +hash = "d432b748a530b966037124ee4ba087560182007a49e35bfbeca0cdd8a8aab6b716e7b64a17acdb78935ab6ac61115c54f76cdbf320c7825c7ef91b2a94ba8bce" + +[update] +[update.modrinth] +mod-id = "prik3cIi" +version = "BmAdk4bU" diff --git a/mods/dahmersdelight.pw.toml b/mods/dahmersdelight.pw.toml new file mode 100644 index 0000000..12f6880 --- /dev/null +++ b/mods/dahmersdelight.pw.toml @@ -0,0 +1,13 @@ +name = "Dahmer's Delight" +filename = "dahmersdelight-1.0.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Zk9hsr9r/versions/4ijauzac/dahmersdelight-1.0.2.jar" +hash-format = "sha512" +hash = "44c3ba6e2200171656a9c51a7899af218488f89994116dfe169b5f07ef9434c049b35ac68e835afce7dd6634337df469319fa3766c451147c93c49fdbcc750b7" + +[update] +[update.modrinth] +mod-id = "Zk9hsr9r" +version = "4ijauzac" diff --git a/mods/damage-incorporated.pw.toml b/mods/damage-incorporated.pw.toml new file mode 100644 index 0000000..7424d10 --- /dev/null +++ b/mods/damage-incorporated.pw.toml @@ -0,0 +1,13 @@ +name = "Damage Incorporated" +filename = "damage_incorporated-3.1.0+1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9Ey6omWt/versions/H8z2lMOP/damage_incorporated-3.1.0%2B1.20.jar" +hash-format = "sha512" +hash = "4323caae9b46488a51c46ad6c5cef5373a1be71aa89f3ad0e3a7a4fe3f0e031bee468311e3fd6f7fab6c9faa162bbc4cba8b0a672ae433da9efdc84cacd9ff19" + +[update] +[update.modrinth] +mod-id = "9Ey6omWt" +version = "H8z2lMOP" diff --git a/mods/damageful.pw.toml b/mods/damageful.pw.toml new file mode 100644 index 0000000..8da6ba3 --- /dev/null +++ b/mods/damageful.pw.toml @@ -0,0 +1,18 @@ +name = "Damageful" +filename = "Damageful-1.0.4.jar" +side = "client" + +[option] +optional = true +default = false +description = "Makes damage numbers appear when attacking mobs. Can always be disabled later." + +[download] +url = "https://cdn.modrinth.com/data/4P98GJzc/versions/c2d1AdT3/Damageful-1.0.4.jar" +hash-format = "sha512" +hash = "aa46d20a6a8b46e9e4fc0a97d363a8c8b6accea5a87491bfabb371e94879d95224cb5c57ba955a7149fdc6a5bc3e048b926d5ed470318c88f8cb76b0be995245" + +[update] +[update.modrinth] +mod-id = "4P98GJzc" +version = "c2d1AdT3" diff --git a/mods/dark-loading-screen.pw.toml b/mods/dark-loading-screen.pw.toml new file mode 100644 index 0000000..d35ece4 --- /dev/null +++ b/mods/dark-loading-screen.pw.toml @@ -0,0 +1,13 @@ +name = "Dark Loading Screen" +filename = "dark-loading-screen-1.6.14.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/h3XWIuzM/versions/HLjyJHzA/dark-loading-screen-1.6.14.jar" +hash-format = "sha512" +hash = "80c860cb47bbea7f564607fb27cafea541d774e29342c464277150f3b32ada5598979c4f429d38b7f3ec6d404e9421d096bd76daa9529fb816bd488e8a743d35" + +[update] +[update.modrinth] +mod-id = "h3XWIuzM" +version = "HLjyJHzA" diff --git a/mods/dark-paintings.pw.toml b/mods/dark-paintings.pw.toml new file mode 100644 index 0000000..981fdf7 --- /dev/null +++ b/mods/dark-paintings.pw.toml @@ -0,0 +1,13 @@ +name = "Dark Paintings" +filename = "DarkPaintings-Fabric-1.20.1-17.0.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/lFGQ4Hnk/versions/HlpPBlC2/DarkPaintings-Fabric-1.20.1-17.0.4.jar" +hash-format = "sha512" +hash = "2a7c74f7564fbbd43e926fdcf44589be180df02a7e081551f0ec684586782beb971b81a0d4824e9abe7dc83800ecbad762bc789933ccdb66f07c5aab318c5440" + +[update] +[update.modrinth] +mod-id = "lFGQ4Hnk" +version = "HlpPBlC2" diff --git a/mods/delightful-creators-fabric.pw.toml b/mods/delightful-creators-fabric.pw.toml new file mode 100644 index 0000000..c6da457 --- /dev/null +++ b/mods/delightful-creators-fabric.pw.toml @@ -0,0 +1,13 @@ +name = "Delightful Creators [Fabric]" +filename = "delightful-creators-1.3-1.20.x-FDR-support.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/jmJ87gsb/versions/u29d1nXQ/delightful-creators-1.3-1.20.x-FDR-support.jar" +hash-format = "sha512" +hash = "1a5bf0d7adb63eeef3231854264b62cc6da01fee9aba08e0f2e50c080b4fca70336914775751bddc4dafd952b6f55f13e81f9f8aef49e66fd43a62fff6e44457" + +[update] +[update.modrinth] +mod-id = "jmJ87gsb" +version = "u29d1nXQ" diff --git a/mods/distanthorizons.pw.toml b/mods/distanthorizons.pw.toml new file mode 100644 index 0000000..64a0a66 --- /dev/null +++ b/mods/distanthorizons.pw.toml @@ -0,0 +1,13 @@ +name = "Distant Horizons" +filename = "DistantHorizons-2.3.0-b-dev-1.20.1-fabric-forge.jar" +side = "both" + +[download] +url = "https://cdn.densmo.re/mc/DistantHorizons-2.3.0-b-dev-1.20.1-fabric-forge.jar" + +hash-format = "sha512" +hash = "e96e504857d4c53c9cb189d632e1dbcd71972d68ad5f370b44feacf5737e0311d1c4da6b0e9287b4463d947418b1f14541cd75c7758953978d4d97d99d2f33b6" + +[option] +optional = true + diff --git a/mods/do-a-barrel-roll.pw.toml b/mods/do-a-barrel-roll.pw.toml new file mode 100644 index 0000000..e7277c5 --- /dev/null +++ b/mods/do-a-barrel-roll.pw.toml @@ -0,0 +1,13 @@ +name = "Do a Barrel Roll" +filename = "do_a_barrel_roll-fabric-3.6.1+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/6FtRfnLg/versions/CuLlUIYD/do_a_barrel_roll-fabric-3.6.1%2B1.20.1.jar" +hash-format = "sha512" +hash = "e2294aeb8589c5a0c7508a0b5ac575bc47f05fbf85db50c985f5165f9ee29292a0f8ee8d548083b151af0a9c843e4ec68d6ca8f1861c91f6b9446269190bf662" + +[update] +[update.modrinth] +mod-id = "6FtRfnLg" +version = "CuLlUIYD" diff --git a/mods/dungeons-and-taverns.pw.toml b/mods/dungeons-and-taverns.pw.toml new file mode 100644 index 0000000..e763308 --- /dev/null +++ b/mods/dungeons-and-taverns.pw.toml @@ -0,0 +1,13 @@ +name = "Dungeons and Taverns" +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-format = "sha512" +hash = "73d56095b131f37c01ffde9ff5b495534e2ae0896eeec737e325dbea43644bb440fff5e48088cbf8809b226f1157125658bb68172cd7d4ab0aaf2afa72848146" + +[update] +[update.modrinth] +mod-id = "tpehi7ww" +version = "d1sY0JqV" diff --git a/mods/durability-tooltip.pw.toml b/mods/durability-tooltip.pw.toml new file mode 100644 index 0000000..156f27e --- /dev/null +++ b/mods/durability-tooltip.pw.toml @@ -0,0 +1,13 @@ +name = "Durability Tooltip" +filename = "durabilitytooltip-1.1.5-fabric-mc1.20.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/smUP7V3r/versions/WmJeyttw/durabilitytooltip-1.1.5-fabric-mc1.20.jar" +hash-format = "sha512" +hash = "207d3f32d031bfc391ab267c64f87b9a90b0370aa5e579c217f6774f6a69aeac141c7b8a013d144ccde4f0ed0ce162071358e55cff632fb3d82ad4de8efcf5a3" + +[update] +[update.modrinth] +mod-id = "smUP7V3r" +version = "WmJeyttw" diff --git a/mods/dusty-decorations.pw.toml b/mods/dusty-decorations.pw.toml new file mode 100644 index 0000000..2a2389e --- /dev/null +++ b/mods/dusty-decorations.pw.toml @@ -0,0 +1,13 @@ +name = "Dusty Decorations" +filename = "DustyDecoRefabricated-1.1-1.20.1+1.20.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/KgFOuaiZ/versions/5YYQCnC1/DustyDecoRefabricated-1.1-1.20.1%2B1.20.2.jar" +hash-format = "sha512" +hash = "9c58ad324b0e8505b44755de8e308729ee6a839f165b586ae76d580668cb71d5bbef91079dc83e2833bb59905b071f8565d73263690768185b1a40abb1c7a5f1" + +[update] +[update.modrinth] +mod-id = "KgFOuaiZ" +version = "5YYQCnC1" diff --git a/mods/dwdsb.pw.toml b/mods/dwdsb.pw.toml new file mode 100644 index 0000000..6525104 --- /dev/null +++ b/mods/dwdsb.pw.toml @@ -0,0 +1,13 @@ +name = "Discs Where Discs Shouldn't Be" +filename = "dwdsb-1.6.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/wA5VlakK/versions/rmOG1ylF/dwdsb-1.6.0.jar" +hash-format = "sha512" +hash = "ddd8d8db4608b9553114c39d76d5b9e4f5300f7e1178c5629bacc2b9a836d282b63ad39ad3740a5ea73ca8becfd3523891715cd7a21fa34c1ccb3b119e143f8b" + +[update] +[update.modrinth] +mod-id = "wA5VlakK" +version = "rmOG1ylF" diff --git a/mods/dynamic-fps.pw.toml b/mods/dynamic-fps.pw.toml new file mode 100644 index 0000000..d350eb3 --- /dev/null +++ b/mods/dynamic-fps.pw.toml @@ -0,0 +1,13 @@ +name = "Dynamic FPS" +filename = "dynamic-fps-3.7.7+minecraft-1.20.0-quilt.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/LQ3K71Q1/versions/piaUitaA/dynamic-fps-3.7.7%2Bminecraft-1.20.0-quilt.jar" +hash-format = "sha512" +hash = "a2734ab2eb0fd1d305e6e132b46bf52be30bb80f5b3fd08af639a266f3d6df5872b3a76269efbb89bd165f11a66c489004ae100dfbd1e3ba571b8b5b959fa525" + +[update] +[update.modrinth] +mod-id = "LQ3K71Q1" +version = "piaUitaA" diff --git a/mods/eating-animation.pw.toml b/mods/eating-animation.pw.toml new file mode 100644 index 0000000..b86bc88 --- /dev/null +++ b/mods/eating-animation.pw.toml @@ -0,0 +1,13 @@ +name = "Eating Animation" +filename = "eating-animation-1.20+1.9.61.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/rUgZvGzi/versions/AqXSvu6M/eating-animation-1.20%2B1.9.61.jar" +hash-format = "sha512" +hash = "7470cd63b49cd797a21b30fefe11bd53e419ca8ed0eb01f498b801e83222685bbe853e7323f2e310874a3619628fece48ec69ea53cd391dd97a139c64225d077" + +[update] +[update.modrinth] +mod-id = "rUgZvGzi" +version = "AqXSvu6M" diff --git a/mods/edf-remastered.pw.toml b/mods/edf-remastered.pw.toml new file mode 100644 index 0000000..2929641 --- /dev/null +++ b/mods/edf-remastered.pw.toml @@ -0,0 +1,13 @@ +name = "Ender Dragon Fight Remastered" +filename = "edf-remastered-4.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/HQsBdHGd/versions/sJX8dbua/edf-remastered-4.3.jar" +hash-format = "sha512" +hash = "a08f40e37344c5608ac31e67758107ee42a637140f94d0feb8d1920c19b4ab1eebc40d5bcc3e538f8404401029efdc6986ced158feb4e72bb48a561f7f376fa5" + +[update] +[update.modrinth] +mod-id = "HQsBdHGd" +version = "sJX8dbua" diff --git a/mods/elytra-trims.pw.toml b/mods/elytra-trims.pw.toml new file mode 100644 index 0000000..58d0289 --- /dev/null +++ b/mods/elytra-trims.pw.toml @@ -0,0 +1,13 @@ +name = "Elytra Trims" +filename = "elytratrims-fabric-3.5.4+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/XpzGz7KD/versions/UvWjZ8tL/elytratrims-fabric-3.5.4%2B1.20.1.jar" +hash-format = "sha512" +hash = "33c8808b767f416312db4c3401c194ace0e00fa6f416ccbc742560dfe929951ecf7824e0b854a20c57904fda4b9f9e8befc9f41a053f1b073d3035c96f710c63" + +[update] +[update.modrinth] +mod-id = "XpzGz7KD" +version = "UvWjZ8tL" diff --git a/mods/emi.pw.toml b/mods/emi.pw.toml new file mode 100644 index 0000000..81c6f3b --- /dev/null +++ b/mods/emi.pw.toml @@ -0,0 +1,13 @@ +name = "EMI" +filename = "emi-1.1.18+1.20.1+fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fRiHVvU7/versions/7z8wc2Iv/emi-1.1.18%2B1.20.1%2Bfabric.jar" +hash-format = "sha512" +hash = "a827007f3b040ce2ddb1c082fc256d2c0b220b0042a8b66cec3766339e662c66af9f340942e86d10754a0f49cb1a85da10feecc08054d19cdd231a74dabbb975" + +[update] +[update.modrinth] +mod-id = "fRiHVvU7" +version = "7z8wc2Iv" diff --git a/mods/endrem.pw.toml b/mods/endrem.pw.toml new file mode 100644 index 0000000..e4254a9 --- /dev/null +++ b/mods/endrem.pw.toml @@ -0,0 +1,13 @@ +name = "End Remastered" +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-format = "sha512" +hash = "7e00e31271ea07328754680c2b81dba36606eb2debb16ce70b75dee5d612f77625cb84c13bd5f9295b34642a46be8b035a3d829e2ed2b819c92f6b4a45097aba" + +[update] +[update.modrinth] +mod-id = "ZJTGwAND" +version = "4wKvHwVW" diff --git a/mods/ends-delight.pw.toml b/mods/ends-delight.pw.toml new file mode 100644 index 0000000..bf20bf5 --- /dev/null +++ b/mods/ends-delight.pw.toml @@ -0,0 +1,13 @@ +name = "End's Delight" +filename = "ends_delight-refabricated-1.20.1-2.5.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/yHN0njMr/versions/kNmI1WJu/ends_delight-refabricated-1.20.1-2.5.jar" +hash-format = "sha512" +hash = "85d995778887913174367e0b354c4779d718e76b279e8baf501f13066021304065308066297313713824b2fc3f4e12cfea55aaa71cec9bdf075a70d6be741134" + +[update] +[update.modrinth] +mod-id = "yHN0njMr" +version = "kNmI1WJu" diff --git a/mods/enhanced-groups.pw.toml b/mods/enhanced-groups.pw.toml new file mode 100644 index 0000000..e6d248e --- /dev/null +++ b/mods/enhanced-groups.pw.toml @@ -0,0 +1,13 @@ +name = "Simple Voice Chat Enhanced Groups" +filename = "instantgroup-fabric-1.20.1-1.6.0.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/1LE7mid6/versions/YXLv3lWE/instantgroup-fabric-1.20.1-1.6.0.jar" +hash-format = "sha512" +hash = "a4ddf7fefe1cc930da506c1d560b9c1d964edc21804f60a353d2cf32ecb33cb4630362c3c65b3d4451e9dd2d4e11bd3257dab039481b4a1fa518b53e91b46661" + +[update] +[update.modrinth] +mod-id = "1LE7mid6" +version = "YXLv3lWE" diff --git a/mods/entityculling.pw.toml b/mods/entityculling.pw.toml new file mode 100644 index 0000000..f4b126a --- /dev/null +++ b/mods/entityculling.pw.toml @@ -0,0 +1,13 @@ +name = "Entity Culling" +filename = "entityculling-fabric-1.7.2-mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/naHGCw23/entityculling-fabric-1.7.2-mc1.20.1.jar" +hash-format = "sha512" +hash = "27aa520f2e5ee881ce95f4925f7a0acea530555b1c5e312a05e961cbd3f874ffe88db26b2b072c6698c0ea469b4944f6451e388f69fbf6c5efb4866a18aa6ef3" + +[update] +[update.modrinth] +mod-id = "NNAgCjsB" +version = "naHGCw23" diff --git a/mods/estrogen.pw.toml b/mods/estrogen.pw.toml new file mode 100644 index 0000000..6d561bb --- /dev/null +++ b/mods/estrogen.pw.toml @@ -0,0 +1,13 @@ +name = "Create: Estrogen" +filename = "Estrogen-4.3.1+1.20.1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/HhIJW8n1/versions/PiahYau4/Estrogen-4.3.1%2B1.20.1-fabric.jar" +hash-format = "sha512" +hash = "344281170505e177c451f3f89bdc11f26a45800fd199e17c80dd1204593e65440d009f1b2b1628e4e258b9e6bf09e497320d83fbe8b6b90d6ec4a8ed0bae02c3" + +[update] +[update.modrinth] +mod-id = "HhIJW8n1" +version = "PiahYau4" diff --git a/mods/eugenes-whistle-spur.pw.toml b/mods/eugenes-whistle-spur.pw.toml new file mode 100644 index 0000000..b30ad89 --- /dev/null +++ b/mods/eugenes-whistle-spur.pw.toml @@ -0,0 +1,13 @@ +name = "Eugene's Whistle & Spur" +filename = "eugenes_horse_whistle-1.1.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/kdPyFGUG/versions/IgdaHhhx/eugenes_horse_whistle-1.1.2.jar" +hash-format = "sha512" +hash = "de81963b2a90d0b7116aa217fd573fcdb9a4c4583ef52b64e8282e4b3e5101c31485e4d35196d42a2c27ffe91b14c3eecf955a30f2b083d62cbf7938a9d2ab6e" + +[update] +[update.modrinth] +mod-id = "kdPyFGUG" +version = "IgdaHhhx" diff --git a/mods/every-compat.pw.toml b/mods/every-compat.pw.toml new file mode 100644 index 0000000..90e78a8 --- /dev/null +++ b/mods/every-compat.pw.toml @@ -0,0 +1,13 @@ +name = "Every Compat (Wood Good)" +filename = "everycomp-1.20-2.7.6-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/eiktJyw1/versions/mJY2qVp8/everycomp-1.20-2.7.6-fabric.jar" +hash-format = "sha512" +hash = "af8385314d7a22a706bfc4cc520c07aead7a71be8be10309025e5812b8ca098dd25d44d63b1e7fd7643e870b40242273b63fafbd5df7226d9ebf186cbf194038" + +[update] +[update.modrinth] +mod-id = "eiktJyw1" +version = "mJY2qVp8" diff --git a/mods/explosive-enhancement.pw.toml b/mods/explosive-enhancement.pw.toml new file mode 100644 index 0000000..18ae04b --- /dev/null +++ b/mods/explosive-enhancement.pw.toml @@ -0,0 +1,13 @@ +name = "Explosive Enhancement" +filename = "explosive-enhancement-1.3.2-1.20-1.20.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/OSQ8mw2r/versions/t5vUyiRo/explosive-enhancement-1.3.2-1.20-1.20.4.jar" +hash-format = "sha512" +hash = "8ec4c24a4f20e3d5d06842c0fa355914d49ddcb119ddd89ceab77085c90245424bb225bcd35523951f9b0e2c19a2f5843255877e8cb82cdd2438c86067534636" + +[update] +[update.modrinth] +mod-id = "OSQ8mw2r" +version = "t5vUyiRo" diff --git a/mods/extended-cogwheels.pw.toml b/mods/extended-cogwheels.pw.toml new file mode 100644 index 0000000..1af2a8e --- /dev/null +++ b/mods/extended-cogwheels.pw.toml @@ -0,0 +1,13 @@ +name = "Create: Extended Cogwheels" +filename = "extendedgears-2.1.1-1.20.1-0.5.1.f-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/qO4lsa4Y/versions/22pR1H3P/extendedgears-2.1.1-1.20.1-0.5.1.f-fabric.jar" +hash-format = "sha512" +hash = "156018db639d190525b465b457dbe7e83e6172f4e60f020dae6f6fc616d426bf01498dba10a5818f24c9cb77b72047b63c98cd24986ef91dbc36684b5f942bf5" + +[update] +[update.modrinth] +mod-id = "qO4lsa4Y" +version = "22pR1H3P" diff --git a/mods/extraalchemy.pw.toml b/mods/extraalchemy.pw.toml new file mode 100644 index 0000000..30fc9de --- /dev/null +++ b/mods/extraalchemy.pw.toml @@ -0,0 +1,13 @@ +name = "Extra Alchemy" +filename = "extraalchemy-fabric-1.20.1-1.10.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/n0S5OkPo/versions/on6IEEcc/extraalchemy-fabric-1.20.1-1.10.0.jar" +hash-format = "sha512" +hash = "2206cd9274f0e6a698adcdc22e1748b1a9240294e9ebe09d15a33ea9eb7fce3ebd96da9428fbe68fad70226835a3a2528f83e08af4d579b9975ad2755a3cdae9" + +[update] +[update.modrinth] +mod-id = "n0S5OkPo" +version = "on6IEEcc" diff --git a/mods/fabric-seasons-delight-compat.pw.toml b/mods/fabric-seasons-delight-compat.pw.toml new file mode 100644 index 0000000..ea2fcde --- /dev/null +++ b/mods/fabric-seasons-delight-compat.pw.toml @@ -0,0 +1,13 @@ +name = "Fabric Seasons: Delight Compat" +filename = "fabric-seasons-delight-1.3.9-compat-1.0.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/4VYO7ir0/versions/KIzyS8hk/fabric-seasons-delight-1.3.9-compat-1.0.jar" +hash-format = "sha512" +hash = "7f4863057116ab9e0a14af80601ce1ee58186ce34350ddcbf2763a83a8547a139f6f2daac63433d70f804d0314776f8030fc68ef0d2a5707dba606fe00b1ef79" + +[update] +[update.modrinth] +mod-id = "4VYO7ir0" +version = "KIzyS8hk" diff --git a/mods/fabric-seasons-extras.pw.toml b/mods/fabric-seasons-extras.pw.toml new file mode 100644 index 0000000..fc866d9 --- /dev/null +++ b/mods/fabric-seasons-extras.pw.toml @@ -0,0 +1,13 @@ +name = "Fabric Seasons: Extras" +filename = "fabric-seasons-extras-1.3.2-BETA+1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/64FYdx5z/versions/RJ4U7Kz1/fabric-seasons-extras-1.3.2-BETA%2B1.20.jar" +hash-format = "sha512" +hash = "1301e77dd4c35306f4527dc1db9940045b733c0429b9be614e685c61d9fb4c005c3ee49fdbc198b79a05d9fb4af7099dd0de6d950f8097bfb1c1594d0438f5a0" + +[update] +[update.modrinth] +mod-id = "64FYdx5z" +version = "RJ4U7Kz1" diff --git a/mods/fabric-seasons-terralith-compat.pw.toml b/mods/fabric-seasons-terralith-compat.pw.toml new file mode 100644 index 0000000..2b49a03 --- /dev/null +++ b/mods/fabric-seasons-terralith-compat.pw.toml @@ -0,0 +1,13 @@ +name = "Fabric Seasons: Terralith Compat" +filename = "fabric-seasons-terralith-2.3.7-compat-1.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/D53qveoj/versions/MJ2OF7eg/fabric-seasons-terralith-2.3.7-compat-1.0.jar" +hash-format = "sha512" +hash = "7ef06a1e2e9328a9882c44ba44c4d92124ad1fd5872cec85d54a7558f68902298a31eeee9e2bb49fa3c631898f48ab33cf77bb2a911450fd0ac61fa57571f8d7" + +[update] +[update.modrinth] +mod-id = "D53qveoj" +version = "MJ2OF7eg" diff --git a/mods/fabric-seasons.pw.toml b/mods/fabric-seasons.pw.toml new file mode 100644 index 0000000..73f04d9 --- /dev/null +++ b/mods/fabric-seasons.pw.toml @@ -0,0 +1,13 @@ +name = "Fabric Seasons" +filename = "fabric-seasons-2.4.2-BETA+1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/KJe6y9Eu/versions/sdV8aBn8/fabric-seasons-2.4.2-BETA%2B1.20.jar" +hash-format = "sha512" +hash = "7de3208e455046e6c0ea6f41bcd17242498b1db942ee58ff93ff44b1368e65146a5d49bbe9d50874e47c19f8a75129dd3df56e10f218eeb13ae9847e32c99a8e" + +[update] +[update.modrinth] +mod-id = "KJe6y9Eu" +version = "sdV8aBn8" diff --git a/mods/farmers-delight-expansion.pw.toml b/mods/farmers-delight-expansion.pw.toml new file mode 100644 index 0000000..cd86fa2 --- /dev/null +++ b/mods/farmers-delight-expansion.pw.toml @@ -0,0 +1,13 @@ +name = "Farmer's Delight Expansion" +filename = "FarmersDelight-Expansion-1.2.2+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/O158bLYR/versions/SlftDV3O/FarmersDelight-Expansion-1.2.2%2B1.20.1.jar" +hash-format = "sha512" +hash = "b84ec6bb2c2d313a4d31acc5928e0894236ca582b3d681b0c20eef52be5e775f84a9f85827767531a287af8cb922630c86d400419dd7893d15cdf2f0faa5d4ff" + +[update] +[update.modrinth] +mod-id = "O158bLYR" +version = "SlftDV3O" diff --git a/mods/farmers-delight-refabricated.pw.toml b/mods/farmers-delight-refabricated.pw.toml new file mode 100644 index 0000000..e65d6a8 --- /dev/null +++ b/mods/farmers-delight-refabricated.pw.toml @@ -0,0 +1,13 @@ +name = "Farmer's Delight Refabricated" +filename = "FarmersDelight-1.20.1-2.2.4+refabricated.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/7vxePowz/versions/Ms2QOr1b/FarmersDelight-1.20.1-2.2.4%2Brefabricated.jar" +hash-format = "sha512" +hash = "5af1fb5be862bb3fa806465962eb028936d8e0b90bc1fd05bab222ceb3fb7169e4f716a1e10ddf32acae594c33881d34ffa8fabef1112fc53424ddfb423fd1c8" + +[update] +[update.modrinth] +mod-id = "7vxePowz" +version = "Ms2QOr1b" diff --git a/mods/farmers-knives.pw.toml b/mods/farmers-knives.pw.toml new file mode 100644 index 0000000..a9cb917 --- /dev/null +++ b/mods/farmers-knives.pw.toml @@ -0,0 +1,13 @@ +name = "Farmer's Knives [Fabric]" +filename = "farmersknives-3.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/uc3VdfLM/versions/dH5N4o0F/farmersknives-3.2.jar" +hash-format = "sha512" +hash = "626be8b331da7db5d71b86625efe65c8319cc44797f22d3135bb5c672af4022d813dce49bea592b2e00b194d0775726346f53605352572c4c5a44e1886a48312" + +[update] +[update.modrinth] +mod-id = "uc3VdfLM" +version = "dH5N4o0F" diff --git a/mods/farmers-respite-fabric.pw.toml b/mods/farmers-respite-fabric.pw.toml new file mode 100644 index 0000000..cbde3d2 --- /dev/null +++ b/mods/farmers-respite-fabric.pw.toml @@ -0,0 +1,13 @@ +name = "Farmer's Respite (Fabric)" +filename = "Farmersrespite-Fabric-3.0.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "3c182964427f4c5bda8461d0cae63918f9ba77c8" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5252387 +project-id = 811003 diff --git a/mods/fastback.pw.toml b/mods/fastback.pw.toml new file mode 100644 index 0000000..e20f3c6 --- /dev/null +++ b/mods/fastback.pw.toml @@ -0,0 +1,13 @@ +name = "Fast Backups" +filename = "fastback-0.15.6+1.20.1-fabric.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/ZHKrK8Rp/versions/Q8JSGhdj/fastback-0.15.6%2B1.20.1-fabric.jar" +hash-format = "sha512" +hash = "9f85da2a2bdc85cf9a5bb90743bdef45d1e5e530fda725a65578ea69393a1130c90c1b8ec977f34e9813e0592a202481edf856d209c8facb3d942615c7c0cd62" + +[update] +[update.modrinth] +mod-id = "ZHKrK8Rp" +version = "Q8JSGhdj" diff --git a/mods/faster-random.pw.toml b/mods/faster-random.pw.toml new file mode 100644 index 0000000..35cc56c --- /dev/null +++ b/mods/faster-random.pw.toml @@ -0,0 +1,13 @@ +name = "Faster Random" +filename = "fasterrandom-5.1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/RfFxanNh/versions/BbFqiKvi/fasterrandom-5.1.0.jar" +hash-format = "sha512" +hash = "af2d0825ec4e3521fd82b0a5fd5a3f04daf98e09b138d099407861c03a4e17546900befd791a7abe7cbe109c3045dee0646d02f1703b8e68bc37903d21c20acd" + +[update] +[update.modrinth] +mod-id = "RfFxanNh" +version = "BbFqiKvi" diff --git a/mods/fence_on_slab.pw.toml b/mods/fence_on_slab.pw.toml new file mode 100644 index 0000000..5ac93be --- /dev/null +++ b/mods/fence_on_slab.pw.toml @@ -0,0 +1,13 @@ +name = "Fence On Slab!" +filename = "fence_on_slab-fabric-1.20.1-1.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/H2ftVWLF/versions/gLtUsqcX/fence_on_slab-fabric-1.20.1-1.0.0.jar" +hash-format = "sha512" +hash = "f6414513a76e6a31d22bcd6608b74787c01b763ae3a8871c7465363115a1724fd7ca7f6627c21d0ad9f5e3e7d85a083428d4a0c0127e04c4249bfc71045913a4" + +[update] +[update.modrinth] +mod-id = "H2ftVWLF" +version = "gLtUsqcX" diff --git a/mods/ferrite-core.pw.toml b/mods/ferrite-core.pw.toml new file mode 100644 index 0000000..c44ceae --- /dev/null +++ b/mods/ferrite-core.pw.toml @@ -0,0 +1,13 @@ +name = "FerriteCore" +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-format = "sha512" +hash = "9b7dc686bfa7937815d88c7bbc6908857cd6646b05e7a96ddbdcada328a385bd4ba056532cd1d7df9d2d7f4265fd48bd49ff683f217f6d4e817177b87f6bc457" + +[update] +[update.modrinth] +mod-id = "uXXizFIs" +version = "unerR5MN" diff --git a/mods/fog.pw.toml b/mods/fog.pw.toml new file mode 100644 index 0000000..f9e928e --- /dev/null +++ b/mods/fog.pw.toml @@ -0,0 +1,13 @@ +name = "Fog" +filename = "Fog-fabric-1.5.3-1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/WuGVWUF2/versions/kdNVq6ir/Fog-fabric-1.5.3-1.20.1.jar" +hash-format = "sha512" +hash = "687a1cfe69790f440b53dc388086936a58547efb20312c0cfbe73635576e233acd54a55eb518da1f44c80da1b936ee3c25bb669f2e87ee80d6302c465c694336" + +[update] +[update.modrinth] +mod-id = "WuGVWUF2" +version = "kdNVq6ir" diff --git a/mods/forge-config-api-port.pw.toml b/mods/forge-config-api-port.pw.toml new file mode 100644 index 0000000..94dece4 --- /dev/null +++ b/mods/forge-config-api-port.pw.toml @@ -0,0 +1,13 @@ +name = "Forge Config API Port" +filename = "ForgeConfigAPIPort-v8.0.1-1.20.1-Fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ohNO6lps/versions/Qs8LaZLo/ForgeConfigAPIPort-v8.0.1-1.20.1-Fabric.jar" +hash-format = "sha512" +hash = "04fcec98847d44b51c83ce38800393a5ed056873a2a450a2c8ec74ca92fde6c4e9840aab50704364a800f916621ee02044ca8cf609171ac75bec3b9d834bcb9a" + +[update] +[update.modrinth] +mod-id = "ohNO6lps" +version = "Qs8LaZLo" diff --git a/mods/framework.pw.toml b/mods/framework.pw.toml new file mode 100644 index 0000000..a0f912e --- /dev/null +++ b/mods/framework.pw.toml @@ -0,0 +1,13 @@ +name = "Framework" +filename = "framework-fabric-1.20.1-0.7.12.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "4c0c04fc1f676e0e4ef25648a216aceaeb151627" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5911975 +project-id = 549225 diff --git a/mods/freecam.pw.toml b/mods/freecam.pw.toml new file mode 100644 index 0000000..1c47ee3 --- /dev/null +++ b/mods/freecam.pw.toml @@ -0,0 +1,13 @@ +name = "Freecam" +filename = "freecam-fabric-modrinth-1.2.1+1.20.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/XeEZ3fK2/versions/QkWJuaZ8/freecam-fabric-modrinth-1.2.1%2B1.20.jar" +hash-format = "sha512" +hash = "16bd2f50d70f01d54374456df0b2e6a25c23857ea4c36ba6253303afd6d1ec592847e418792e4900abd5b597564a3745d130ddb491e2f2098a6b1438511628f7" + +[update] +[update.modrinth] +mod-id = "XeEZ3fK2" +version = "QkWJuaZ8" diff --git a/mods/friends-and-foes.pw.toml b/mods/friends-and-foes.pw.toml new file mode 100644 index 0000000..035fd02 --- /dev/null +++ b/mods/friends-and-foes.pw.toml @@ -0,0 +1,13 @@ +name = "Friends & Foes (Fabric/Quilt)" +filename = "friendsandfoes-fabric-mc1.20.1-3.0.6.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/POQ2i9zu/versions/7H0cR4ue/friendsandfoes-fabric-mc1.20.1-3.0.6.jar" +hash-format = "sha512" +hash = "f5a3d540d7f805d1fc1420d3fd281d262a7bf25c3d207b15752755a158f8ce616d3f37b047bf39a3a231b297c344b835c7b5f53a1f3d3f4da3331c8cdda88543" + +[update] +[update.modrinth] +mod-id = "POQ2i9zu" +version = "7H0cR4ue" diff --git a/mods/gazebos.pw.toml b/mods/gazebos.pw.toml new file mode 100644 index 0000000..0bc97d0 --- /dev/null +++ b/mods/gazebos.pw.toml @@ -0,0 +1,13 @@ +name = "Gazebos (RPG Series)" +filename = "gazebo-1.1.1+1.20.1.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/XIpMGI6r/versions/7OXOb67d/gazebo-1.1.1%2B1.20.1.jar" +hash-format = "sha512" +hash = "2abfd61675de3c0703528939f87ff8511432b283de2381955b6feac99a486e4d6fd361987264319262a07cea4edea50f485d628a844bb5b5ef38f553c8e6986a" + +[update] +[update.modrinth] +mod-id = "XIpMGI6r" +version = "7OXOb67d" diff --git a/mods/geckolib.pw.toml b/mods/geckolib.pw.toml new file mode 100644 index 0000000..824be70 --- /dev/null +++ b/mods/geckolib.pw.toml @@ -0,0 +1,13 @@ +name = "Geckolib" +filename = "geckolib-fabric-1.20.1-4.4.9.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/8BmcQJ2H/versions/9VG3hx3F/geckolib-fabric-1.20.1-4.4.9.jar" +hash-format = "sha512" +hash = "9031c075b1935b6235a5184f376463d36c4090ff50c5f1ca4edd1521777a4bb321a379c12dc0033453a60c36bae054d0e07d56f652dff2b8525ee7756979ff11" + +[update] +[update.modrinth] +mod-id = "8BmcQJ2H" +version = "9VG3hx3F" diff --git a/mods/goblintraders-fabric.pw.toml b/mods/goblintraders-fabric.pw.toml new file mode 100644 index 0000000..d09507a --- /dev/null +++ b/mods/goblintraders-fabric.pw.toml @@ -0,0 +1,13 @@ +name = "Goblin Traders [Fabric]" +filename = "goblintraders-fabric-1.20.1-1.9.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "04e2a0f65854beac78bbf79126f61b5807953b47" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4802504 +project-id = 667389 diff --git a/mods/goml-reserved.pw.toml b/mods/goml-reserved.pw.toml new file mode 100644 index 0000000..bdbcaad --- /dev/null +++ b/mods/goml-reserved.pw.toml @@ -0,0 +1,13 @@ +name = "Get Off My Lawn ReServed" +filename = "goml-1.9.4+1.20.1.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/j5niDupl/versions/GpomY6B1/goml-1.9.4%2B1.20.1.jar" +hash-format = "sha512" +hash = "eb733834068296efa87a6c2b31c61f7e7bdd74620672719a2f35cfbc4c3fef72515564fc0f9ef9227ac966ea496b7184152575036e40ad778560f0de87cae699" + +[update] +[update.modrinth] +mod-id = "j5niDupl" +version = "GpomY6B1" diff --git a/mods/handcrafted.pw.toml b/mods/handcrafted.pw.toml new file mode 100644 index 0000000..338aff7 --- /dev/null +++ b/mods/handcrafted.pw.toml @@ -0,0 +1,13 @@ +name = "Handcrafted" +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-format = "sha512" +hash = "92c3b47c635196d0991831ce64e2c47bd9d666ee6213bbba87b8f0214cccbba626a564ad130ec0336e94936568dce462d1ff6ca726a81134518795709632602e" + +[update] +[update.modrinth] +mod-id = "pJmCFF0p" +version = "NRw0CDAc" diff --git a/mods/heartstone.pw.toml b/mods/heartstone.pw.toml new file mode 100644 index 0000000..54f2af3 --- /dev/null +++ b/mods/heartstone.pw.toml @@ -0,0 +1,13 @@ +name = "Heartstone" +filename = "heartstone-1.20-1.3.0-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/NBY6AFje/versions/eMrPsrTx/heartstone-1.20-1.3.0-fabric.jar" +hash-format = "sha512" +hash = "a9d39e91900a700828b77c070be390749259a9a8a5bc41217477cb23e75c6b344cc21d4f987ac34a143d356fae895a5dbb97f0b8981ce69d432e9337259334a6" + +[update] +[update.modrinth] +mod-id = "NBY6AFje" +version = "eMrPsrTx" diff --git a/mods/hexalia.pw.toml b/mods/hexalia.pw.toml new file mode 100644 index 0000000..1c45769 --- /dev/null +++ b/mods/hexalia.pw.toml @@ -0,0 +1,13 @@ +name = "Hexalia" +filename = "hexalia-1.1.0-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/bkz5C0dQ/versions/5tJ6bR9K/hexalia-1.1.0-1.20.1.jar" +hash-format = "sha512" +hash = "498cd0ae93370328cc9b60cb14ae85eae5c8d7eddc35abddbfd187453b57d9cd7d0ce4fd6ddccdb130cc9581594b98218762b77fa38232f27507fa6f43dacf34" + +[update] +[update.modrinth] +mod-id = "bkz5C0dQ" +version = "5tJ6bR9K" diff --git a/mods/horsebuff.pw.toml b/mods/horsebuff.pw.toml new file mode 100644 index 0000000..275d54b --- /dev/null +++ b/mods/horsebuff.pw.toml @@ -0,0 +1,13 @@ +name = "Horse Buff" +filename = "HorseBuff-1.20-2.1.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/IrrG0G8l/versions/20xITMg4/HorseBuff-1.20-2.1.2.jar" +hash-format = "sha512" +hash = "15cf5c89b538191ec975cc4b0d7bcf4bfd07dbb089ab735a21e2bfb30c2080051df2c9af609f842a75a4a81d4e3b4dd061b2fe768e2e9982ee8732ab1c91cbee" + +[update] +[update.modrinth] +mod-id = "IrrG0G8l" +version = "20xITMg4" diff --git a/mods/horseshoes.pw.toml b/mods/horseshoes.pw.toml new file mode 100644 index 0000000..92b4154 --- /dev/null +++ b/mods/horseshoes.pw.toml @@ -0,0 +1,13 @@ +name = "Horseshoes" +filename = "horseshoes-1.0.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/tyg1IZwj/versions/2C5267EF/horseshoes-1.0.3.jar" +hash-format = "sha512" +hash = "05aa85cae340480aecbdccc3370a98e169e7e589c1c424860682699cae783c02991922f3a8d538be266f39e15a2267c27c43356b0ecfacbe5b0711a703534ebb" + +[update] +[update.modrinth] +mod-id = "tyg1IZwj" +version = "2C5267EF" diff --git a/mods/iceberg.pw.toml b/mods/iceberg.pw.toml new file mode 100644 index 0000000..8b405be --- /dev/null +++ b/mods/iceberg.pw.toml @@ -0,0 +1,13 @@ +name = "Iceberg" +filename = "Iceberg-1.20.1-fabric-1.1.25.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/5faXoLqX/versions/AiO84cp2/Iceberg-1.20.1-fabric-1.1.25.jar" +hash-format = "sha512" +hash = "9eb15454de0d42aebbb6357dda55ddd7e634de58e71629b7344e6c6550cbb098002a8fe08aa827280d08ce5685c779398edd1d8fa66e3d4c1a0c43238250732c" + +[update] +[update.modrinth] +mod-id = "5faXoLqX" +version = "AiO84cp2" diff --git a/mods/immediatelyfast.pw.toml b/mods/immediatelyfast.pw.toml new file mode 100644 index 0000000..8bdad2d --- /dev/null +++ b/mods/immediatelyfast.pw.toml @@ -0,0 +1,13 @@ +name = "ImmediatelyFast" +filename = "ImmediatelyFast-Fabric-1.3.3+1.20.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/5ZwdcRci/versions/H62RYZyG/ImmediatelyFast-Fabric-1.3.3%2B1.20.4.jar" +hash-format = "sha512" +hash = "c35e7b83067ecd095eebc76a650230ed8599d0028ca56c8bd6945c1df2a088b4dbd92ec80976428c6ba8d88b7e819b09b138a5e1056cda7dd15fd8d3925c1d42" + +[update] +[update.modrinth] +mod-id = "5ZwdcRci" +version = "H62RYZyG" diff --git a/mods/immersive-weathering.pw.toml b/mods/immersive-weathering.pw.toml new file mode 100644 index 0000000..8d7d5d3 --- /dev/null +++ b/mods/immersive-weathering.pw.toml @@ -0,0 +1,13 @@ +name = "Immersive Weathering" +filename = "immersive_weathering-1.20.1-2.0.3-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/jkskOO9i/versions/bmpZvE3W/immersive_weathering-1.20.1-2.0.3-fabric.jar" +hash-format = "sha512" +hash = "4f8d37dc5bc673aa5e1d3b498063623eda438fa3a49950019873c02ae0aa4461bc17f0c4f90a1bb2c0d32536f3cc06706a9c50b0294ec177bfdc98d39b6d46e6" + +[update] +[update.modrinth] +mod-id = "jkskOO9i" +version = "bmpZvE3W" diff --git a/mods/immersivethunder.pw.toml b/mods/immersivethunder.pw.toml new file mode 100644 index 0000000..9fbf612 --- /dev/null +++ b/mods/immersivethunder.pw.toml @@ -0,0 +1,13 @@ +name = "ImmersiveThunder" +filename = "ImmersiveThunder-1.20.1+1.2.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/uKjKoMsj/versions/o64NJE0v/ImmersiveThunder-1.20.1%2B1.2.2.jar" +hash-format = "sha512" +hash = "ce0cd41920d3f2c70ea46216fedbd329b844fd9b8df104b4c1a14b0476606e18fc5697fc27e7b5025ba98494a5c628649d66d755308ecc6297f62089c93732d3" + +[update] +[update.modrinth] +mod-id = "uKjKoMsj" +version = "o64NJE0v" diff --git a/mods/indium.pw.toml b/mods/indium.pw.toml new file mode 100644 index 0000000..49c19bc --- /dev/null +++ b/mods/indium.pw.toml @@ -0,0 +1,13 @@ +name = "Indium" +filename = "indium-1.0.34+mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/Orvt0mRa/versions/gofbpynL/indium-1.0.34%2Bmc1.20.1.jar" +hash-format = "sha512" +hash = "15bb1be71ee8c0455804d38b0e735ce1cd72b6a65ce78199b227dd4806a7726fd5fcf44ea60b382b5d97546c693d289c64f7ef872701ee1ddf1ddab14f2cee74" + +[update] +[update.modrinth] +mod-id = "Orvt0mRa" +version = "gofbpynL" diff --git a/mods/interiors.pw.toml b/mods/interiors.pw.toml new file mode 100644 index 0000000..cf03fb2 --- /dev/null +++ b/mods/interiors.pw.toml @@ -0,0 +1,13 @@ +name = "Create: Interiors" +filename = "interiors-0.5.6+fabric-mc1.20.1-build.104.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/r4Knci2k/versions/9PSq2nxO/interiors-0.5.6%2Bfabric-mc1.20.1-build.104.jar" +hash-format = "sha512" +hash = "4f6a05e390a2285d4ea5c481ccb176f90221f204d43b7e77110a473f1580f757fd688d7f694e1df207728db4f7c6fead0f5e8eb55659a5d6829b5aa6668d5cba" + +[update] +[update.modrinth] +mod-id = "r4Knci2k" +version = "9PSq2nxO" diff --git a/mods/iris.pw.toml b/mods/iris.pw.toml new file mode 100644 index 0000000..a073f4d --- /dev/null +++ b/mods/iris.pw.toml @@ -0,0 +1,18 @@ +name = "Iris Shaders" +filename = "iris-1.7.5+mc1.20.1.jar" +side = "client" + +[option] +optional = true +default = false +description = "May break Distant Horizons LODs underwater, and disables Distant Horizons fog entirely. Enable this if you intend to play with shaders and disable otherwise." + +[download] +url = "https://cdn.modrinth.com/data/YL57xq9U/versions/Bi9nvICq/iris-1.7.5%2Bmc1.20.1.jar" +hash-format = "sha512" +hash = "6bc2ab52aae576062d1f4673ee7b92a7fdc64717a8aa13e76cea574623badfef692037bfc6ef6e979e716d52cf15cf24c90694baf69a584f44e1b121550292a3" + +[update] +[update.modrinth] +mod-id = "YL57xq9U" +version = "Bi9nvICq" diff --git a/mods/item-highlighter.pw.toml b/mods/item-highlighter.pw.toml new file mode 100644 index 0000000..01a5128 --- /dev/null +++ b/mods/item-highlighter.pw.toml @@ -0,0 +1,13 @@ +name = "Item Highlighter" +filename = "Highlighter-1.20.1-fabric-1.1.9.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/cVNW5lr6/versions/vyEyvJgV/Highlighter-1.20.1-fabric-1.1.9.jar" +hash-format = "sha512" +hash = "3f55e9c3a8a35e2aa0234e8cf6a34dc1303bf3fa2b9c2fc2b7f6cd86153017bc901d164d8cf7f413959422647e627ee36e2cc34a85be56d085b0807afefe1a62" + +[update] +[update.modrinth] +mod-id = "cVNW5lr6" +version = "vyEyvJgV" diff --git a/mods/item-obliterator.pw.toml b/mods/item-obliterator.pw.toml new file mode 100644 index 0000000..4b8e60e --- /dev/null +++ b/mods/item-obliterator.pw.toml @@ -0,0 +1,13 @@ +name = "Item Obliterator" +filename = "Item_Obliterator-MC1.20.1-Fabric_Quilt-2.3.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/3ESR84kR/versions/tl9Z9uga/Item_Obliterator-MC1.20.1-Fabric_Quilt-2.3.0.jar" +hash-format = "sha512" +hash = "5a10a7644dbcc622720c7273473b7b51c31658b89d8850eed8225849f140b20981e3ecd456837e7c0fe41559b4e23e5440eb3f0a9bcc0a0c6e5b3481e71918f6" + +[update] +[update.modrinth] +mod-id = "3ESR84kR" +version = "tl9Z9uga" diff --git a/mods/items-displayed.pw.toml b/mods/items-displayed.pw.toml new file mode 100644 index 0000000..380abe3 --- /dev/null +++ b/mods/items-displayed.pw.toml @@ -0,0 +1,13 @@ +name = "Items Displayed [Fabric]" +filename = "ItemsDisplayed - v1.3-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Guh4HXen/versions/Dy1u8PQC/ItemsDisplayed%20-%20v1.3-1.20.1.jar" +hash-format = "sha512" +hash = "7da7b3ced3445c2e4c14d41a7d22df59ad764c871ac2142f588f6960c4c5e335c44d98591e4a7def7dcbf8180b78a8613d4d714f117e9bef5b8c70f28e7281c4" + +[update] +[update.modrinth] +mod-id = "Guh4HXen" +version = "Dy1u8PQC" diff --git a/mods/itemswapper.pw.toml b/mods/itemswapper.pw.toml new file mode 100644 index 0000000..d061caa --- /dev/null +++ b/mods/itemswapper.pw.toml @@ -0,0 +1,13 @@ +name = "ItemSwapper" +filename = "itemswapper-fabric-0.7.4-mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/RPOSBQgq/versions/r9awEBrn/itemswapper-fabric-0.7.4-mc1.20.1.jar" +hash-format = "sha512" +hash = "7e5380dee42752c9623a57cf0f5e1dff33e74a2a675f23e1b69751f8f9d4872cacae25c765f21e62b2bc5f85ad4d3e6b2e6f3b86815968386980a770fa905b6e" + +[update] +[update.modrinth] +mod-id = "RPOSBQgq" +version = "r9awEBrn" diff --git a/mods/jade-addons-fabric.pw.toml b/mods/jade-addons-fabric.pw.toml new file mode 100644 index 0000000..a01e5ed --- /dev/null +++ b/mods/jade-addons-fabric.pw.toml @@ -0,0 +1,13 @@ +name = "Jade Addons (Fabric)" +filename = "JadeAddons-1.20.1-Fabric-5.4.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fThnVRli/versions/DSkzT8Ma/JadeAddons-1.20.1-Fabric-5.4.0.jar" +hash-format = "sha512" +hash = "c5ee77d69989f50f4e862e17854e6a5d9243f3e01bf6660e1a45082a80eccb17b2eaee25c1d182942bac156d6fa0ac439b6c0c9fb92d55f575df5405a84e4fad" + +[update] +[update.modrinth] +mod-id = "fThnVRli" +version = "DSkzT8Ma" diff --git a/mods/jade.pw.toml b/mods/jade.pw.toml new file mode 100644 index 0000000..18d998f --- /dev/null +++ b/mods/jade.pw.toml @@ -0,0 +1,13 @@ +name = "Jade 🔍" +filename = "Jade-1.20-Fabric-11.12.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/nvQzSEkH/versions/Lvyx1o7I/Jade-1.20-Fabric-11.12.0.jar" +hash-format = "sha512" +hash = "ce292fd0ea419b18bbd59ee631b322a7d3101080c55780a1ca8fde29bdf61ffef1eec5e781463e540254ff175cffa1af4d59e4ee31a5f63fb1e4a4539c124915" + +[update] +[update.modrinth] +mod-id = "nvQzSEkH" +version = "Lvyx1o7I" diff --git a/mods/jamlib.pw.toml b/mods/jamlib.pw.toml new file mode 100644 index 0000000..3199c00 --- /dev/null +++ b/mods/jamlib.pw.toml @@ -0,0 +1,13 @@ +name = "JamLib" +filename = "jamlib-0.6.1+1.20.x.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/IYY9Siz8/versions/vVYtBiuW/jamlib-0.6.1%2B1.20.x.jar" +hash-format = "sha512" +hash = "44342698d3b6a7d2d876ed0391bf062c9cbfa5976ea1ee8d4c904fdedfa55087872c8501b9df9a0a92677f0d7fe0d80ad1842357a2c4951ebb512cd1a9fe919f" + +[update] +[update.modrinth] +mod-id = "IYY9Siz8" +version = "vVYtBiuW" diff --git a/mods/jewelry.pw.toml b/mods/jewelry.pw.toml new file mode 100644 index 0000000..dbf818d --- /dev/null +++ b/mods/jewelry.pw.toml @@ -0,0 +1,13 @@ +name = "Jewelry (RPG Series)" +filename = "Jewelry-1.3.7+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/sNJAIjUm/versions/O9B6r9VO/Jewelry-1.3.7%2B1.20.1.jar" +hash-format = "sha512" +hash = "8f003e80e56421efec6e0f0745d6b26c12bd41783b92d28572fa93c502ff988b8a3b35f0424197fc7ccbefb4a31f594fd28f30e5abe9ce03225e33d621603c06" + +[update] +[update.modrinth] +mod-id = "sNJAIjUm" +version = "O9B6r9VO" diff --git a/mods/joy-of-painting.pw.toml b/mods/joy-of-painting.pw.toml new file mode 100644 index 0000000..b22825b --- /dev/null +++ b/mods/joy-of-painting.pw.toml @@ -0,0 +1,13 @@ +name = "Joy of Painting" +filename = "xercapaint-fabric-1.20.1-1.0.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/YOs4tZea/versions/laTdPpfY/xercapaint-fabric-1.20.1-1.0.1.jar" +hash-format = "sha512" +hash = "37c0c1d288ebf9975a8b0ee8d5d9df366199110de2b06fe4bda7f91b0460a3cb3bf1351fa3cd9109d0f2441f0bc2bc641df53ec811dd54793deb7a2e177dd6da" + +[update] +[update.modrinth] +mod-id = "YOs4tZea" +version = "laTdPpfY" diff --git a/mods/kambrik.pw.toml b/mods/kambrik.pw.toml new file mode 100644 index 0000000..db2c629 --- /dev/null +++ b/mods/kambrik.pw.toml @@ -0,0 +1,13 @@ +name = "Kambrik" +filename = "Kambrik-6.1.1+1.20.1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/zfbCkvdZ/versions/SqVitkHr/Kambrik-6.1.1%2B1.20.1-fabric.jar" +hash-format = "sha512" +hash = "6259c9cce3470096cd4c4ca29a80ddc84c8b016ccd6776e9f7afe25c59969f0f0b72f30b5192ae56a4b4879713f6e73e3ea54ed651880c3d4f6e16a95be85a7b" + +[update] +[update.modrinth] +mod-id = "zfbCkvdZ" +version = "SqVitkHr" diff --git a/mods/krypton.pw.toml b/mods/krypton.pw.toml new file mode 100644 index 0000000..d321ad3 --- /dev/null +++ b/mods/krypton.pw.toml @@ -0,0 +1,13 @@ +name = "Krypton" +filename = "krypton-0.2.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fQEb0iXm/versions/jiDwS0W1/krypton-0.2.3.jar" +hash-format = "sha512" +hash = "92b73a70737cfc1daebca211bd1525de7684b554be392714ee29cbd558f2a27a8bdda22accbe9176d6e531d74f9bf77798c28c3e8559c970f607422b6038bc9e" + +[update] +[update.modrinth] +mod-id = "fQEb0iXm" +version = "jiDwS0W1" diff --git a/mods/labels.pw.toml b/mods/labels.pw.toml new file mode 100644 index 0000000..19e1314 --- /dev/null +++ b/mods/labels.pw.toml @@ -0,0 +1,13 @@ +name = "Storage Labels" +filename = "labels-1.20-1.20.2-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/x6r7yhfi/versions/LjVhvfJG/labels-1.20-1.20.2-fabric.jar" +hash-format = "sha512" +hash = "bc8f6f3b38f158d2fd15b1d9a5a7f8de5be72b3b718dd75dc6f3c5b4c6082256db7708c58b34f38283c04ceb6026fd03fa879b3f1e472e7754e3fbdce02a7ee7" + +[update] +[update.modrinth] +mod-id = "x6r7yhfi" +version = "LjVhvfJG" diff --git a/mods/lambdynamiclights.pw.toml b/mods/lambdynamiclights.pw.toml new file mode 100644 index 0000000..0b5f0c4 --- /dev/null +++ b/mods/lambdynamiclights.pw.toml @@ -0,0 +1,13 @@ +name = "LambDynamicLights" +filename = "lambdynamiclights-2.3.2+1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/yBW8D80W/versions/mYl4RvKg/lambdynamiclights-2.3.2%2B1.20.1.jar" +hash-format = "sha512" +hash = "4870953196e22d02844b76fdcae29823922401a5b238d134374308a256a7ffcfb9f087369fc0ec23b5cb218b995d2efa6f60ac0b99fbf9b298ee7ffbb4f6937a" + +[update] +[update.modrinth] +mod-id = "yBW8D80W" +version = "mYl4RvKg" diff --git a/mods/leaf-me-alone.pw.toml b/mods/leaf-me-alone.pw.toml new file mode 100644 index 0000000..1dca4ad --- /dev/null +++ b/mods/leaf-me-alone.pw.toml @@ -0,0 +1,13 @@ +name = "Leaf Me Alone" +filename = "leafmealone-1.0.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ppMUvsIg/versions/NjQdo38w/leafmealone-1.0.1.jar" +hash-format = "sha512" +hash = "b425566c864ec421269c4fe175a79e4e9e2d900f9f8fe279296ae47b1f9450677fd9a74790540cea0db08964a229622374d58aa95b8e18a00cf3f44b62a881ea" + +[update] +[update.modrinth] +mod-id = "ppMUvsIg" +version = "NjQdo38w" diff --git a/mods/lithium.pw.toml b/mods/lithium.pw.toml new file mode 100644 index 0000000..65342b2 --- /dev/null +++ b/mods/lithium.pw.toml @@ -0,0 +1,13 @@ +name = "Lithium" +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-format = "sha512" +hash = "d1b5c90ba8b4879814df7fbf6e67412febbb2870e8131858c211130e9b5546e86b213b768b912fc7a2efa37831ad91caf28d6d71ba972274618ffd59937e5d0d" + +[update] +[update.modrinth] +mod-id = "gvQqBUqZ" +version = "ZSNsJrPI" diff --git a/mods/lithostitched.pw.toml b/mods/lithostitched.pw.toml new file mode 100644 index 0000000..205f358 --- /dev/null +++ b/mods/lithostitched.pw.toml @@ -0,0 +1,13 @@ +name = "Lithostitched" +filename = "lithostitched-fabric-1.20.1-1.3.10.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/XaDC71GB/versions/qtDaNLK0/lithostitched-fabric-1.20.1-1.3.10.jar" +hash-format = "sha512" +hash = "fcb5a08884f8d582825516f36c8a4248cd977f16a25f547ef5f95ddee019ec37272b43f5f7420aedd7b8eacdee4981fbe24694bd11931b9b1b5281431a9c3981" + +[update] +[update.modrinth] +mod-id = "XaDC71GB" +version = "qtDaNLK0" diff --git a/mods/malilib.pw.toml b/mods/malilib.pw.toml new file mode 100644 index 0000000..54a3473 --- /dev/null +++ b/mods/malilib.pw.toml @@ -0,0 +1,13 @@ +name = "MaLiLib" +filename = "malilib-fabric-1.20.1-0.16.3.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/GcWjdA9I/versions/V7yLDtJV/malilib-fabric-1.20.1-0.16.3.jar" +hash-format = "sha512" +hash = "2c16a64cf9af03569618c6bd0359797bbaecec854ac8e8197e9180b1739eb74b6157a9c389a4f8dd8b4aabe52227aafb8d2a6b6b72732ed3c450ff9a0849234c" + +[update] +[update.modrinth] +mod-id = "GcWjdA9I" +version = "V7yLDtJV" diff --git a/mods/mavapi.pw.toml b/mods/mavapi.pw.toml new file mode 100644 index 0000000..935e639 --- /dev/null +++ b/mods/mavapi.pw.toml @@ -0,0 +1,13 @@ +name = "More Axolotl Variants API" +filename = "mavapi-1.1.4-mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/t4Ybtys2/versions/DwZgKHDi/mavapi-1.1.4-mc1.20.1.jar" +hash-format = "sha512" +hash = "9943fb6a7aa1d98a9ef9bdc7488a2a1f5532b095ae0c292031c440e909df04746a8e43d17812e600faf534f11564a769cb103d8ab6562eddc40f163368492a38" + +[update] +[update.modrinth] +mod-id = "t4Ybtys2" +version = "DwZgKHDi" diff --git a/mods/mavm.pw.toml b/mods/mavm.pw.toml new file mode 100644 index 0000000..278c401 --- /dev/null +++ b/mods/mavm.pw.toml @@ -0,0 +1,13 @@ +name = "More Axolotl Variants Mod" +filename = "mavm-1.2.6-mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/zitu8weW/versions/Io4Kzgcn/mavm-1.2.6-mc1.20.1.jar" +hash-format = "sha512" +hash = "c5ec1f240aeebf64f696fbe80637dc7ba217350eabab5010347053be00fb2819e8ddbd045678babeb540a42565d63a893262104859f93cf38e288ca0743ecb2d" + +[update] +[update.modrinth] +mod-id = "zitu8weW" +version = "Io4Kzgcn" diff --git a/mods/mc-dungeons-enchanting.pw.toml b/mods/mc-dungeons-enchanting.pw.toml new file mode 100644 index 0000000..e01b611 --- /dev/null +++ b/mods/mc-dungeons-enchanting.pw.toml @@ -0,0 +1,13 @@ +name = "MC Dungeons Enchanting" +filename = "mcde-1.6.4-1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/iwkcspV8/versions/qHV2Ufmn/mcde-1.6.4-1.20.jar" +hash-format = "sha512" +hash = "1a64e1077be6ed3c656e46871fdd710b4396fd1bb47c2eb16c9ddb09bf119bb93324dfaceca8f09fcebaef9164f6759b0c973cfce48fd638b5a074605c6e195c" + +[update] +[update.modrinth] +mod-id = "iwkcspV8" +version = "qHV2Ufmn" diff --git a/mods/mclo-gs.pw.toml b/mods/mclo-gs.pw.toml new file mode 100644 index 0000000..9a14eec --- /dev/null +++ b/mods/mclo-gs.pw.toml @@ -0,0 +1,13 @@ +name = "Mclogs - mclo.gs" +filename = "mclogs-fabric-1.5.0-1.20.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "a1152c88952ee370b575b453fabb299f65b4c556" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5446055 +project-id = 420561 diff --git a/mods/memoryleakfix.pw.toml b/mods/memoryleakfix.pw.toml new file mode 100644 index 0000000..43d59e7 --- /dev/null +++ b/mods/memoryleakfix.pw.toml @@ -0,0 +1,13 @@ +name = "Memory Leak Fix" +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-format = "sha512" +hash = "a7bf7429340d076f4b30602bc714280c3f5cb8e814e76e89296c8155e3355b33304a148e9218378a3383127e95b7ba47402506c687f1d58609704fe8cc60ab93" + +[update] +[update.modrinth] +mod-id = "NRjRiSSD" +version = "5xvCCRjJ" diff --git a/mods/minihud.pw.toml b/mods/minihud.pw.toml new file mode 100644 index 0000000..7dd23dd --- /dev/null +++ b/mods/minihud.pw.toml @@ -0,0 +1,13 @@ +name = "MiniHUD" +filename = "minihud-fabric-1.20.1-0.27.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/UMxybHE8/versions/s4CUdPPN/minihud-fabric-1.20.1-0.27.1.jar" +hash-format = "sha512" +hash = "913d4b745db01c05d4f12b62d045b098b24a7a26b918446e4682c3a0c3a5b8029c7b824b27007a9b627761d0eed784eb92f1b1f0f5ec8b78d07739d563b9b160" + +[update] +[update.modrinth] +mod-id = "UMxybHE8" +version = "s4CUdPPN" diff --git a/mods/minimotd.pw.toml b/mods/minimotd.pw.toml new file mode 100644 index 0000000..3a9bd87 --- /dev/null +++ b/mods/minimotd.pw.toml @@ -0,0 +1,13 @@ +name = "MiniMOTD" +filename = "minimotd-fabric-mc1.20.1-2.0.13.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/16vhQOQN/versions/SxaMhttu/minimotd-fabric-mc1.20.1-2.0.13.jar" +hash-format = "sha512" +hash = "49e1b5df74bb8c3c8ddf70a9d118e04cd7b0e763e36d67f74815a1b54846a25d57bb8e9953b6fd4c24292b89126535ddb7da845c6f69b4b520388cd31e62ff55" + +[update] +[update.modrinth] +mod-id = "16vhQOQN" +version = "SxaMhttu" diff --git a/mods/mmmmmmmmmmmm.pw.toml b/mods/mmmmmmmmmmmm.pw.toml new file mode 100644 index 0000000..5b3d475 --- /dev/null +++ b/mods/mmmmmmmmmmmm.pw.toml @@ -0,0 +1,13 @@ +name = "MmmMmmMmmMmm" +filename = "dummmmmmy-1.20-2.0.5-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Adega8YN/versions/LUaKZqUd/dummmmmmy-1.20-2.0.5-fabric.jar" +hash-format = "sha512" +hash = "14e03d1fe47d2907c9bf9ee8d3083d6b5125d33a75086ef9137c700174e6a0a2964f5af734ee0b5307eb852493b17035c6a380ecb8e847fa1142f42376953992" + +[update] +[update.modrinth] +mod-id = "Adega8YN" +version = "LUaKZqUd" diff --git a/mods/modelfix.pw.toml b/mods/modelfix.pw.toml new file mode 100644 index 0000000..e51aac3 --- /dev/null +++ b/mods/modelfix.pw.toml @@ -0,0 +1,13 @@ +name = "Model Gap Fix" +filename = "modelfix-1.15-fabric.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/QdG47OkI/versions/GkLb4bRl/modelfix-1.15-fabric.jar" +hash-format = "sha512" +hash = "8724fe22274465f38129f81babb97b7fff68e89b0c88e22a2acbd801ddbeb0210864c2774377fe7b69b917db5889677c1b0d67084f4847cab0f7bd3203e187d4" + +[update] +[update.modrinth] +mod-id = "QdG47OkI" +version = "GkLb4bRl" diff --git a/mods/modernfix.pw.toml b/mods/modernfix.pw.toml new file mode 100644 index 0000000..dcd17cd --- /dev/null +++ b/mods/modernfix.pw.toml @@ -0,0 +1,13 @@ +name = "ModernFix" +filename = "modernfix-fabric-5.19.7+mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/nmDcB62a/versions/rBUcyf7J/modernfix-fabric-5.19.7%2Bmc1.20.1.jar" +hash-format = "sha512" +hash = "2dcb264c8e5e8dc81fcac3a45a7e39f292e67330b163f58b033c31280d6230b98eb505c062e4d740f44275b43480f6567eb47433c5c1c82ff787bf57f37418aa" + +[update] +[update.modrinth] +mod-id = "nmDcB62a" +version = "rBUcyf7J" diff --git a/mods/modmenu.pw.toml b/mods/modmenu.pw.toml new file mode 100644 index 0000000..dbe985d --- /dev/null +++ b/mods/modmenu.pw.toml @@ -0,0 +1,13 @@ +name = "Mod Menu" +filename = "modmenu-7.2.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/mOgUt4GM/versions/lEkperf6/modmenu-7.2.2.jar" +hash-format = "sha512" +hash = "9a7837e04bb34376611b207a3b20e5fe1c82a4822b42929d5b410809ec4b88ff3cac8821c4568f880775bafa3c079dfc7800f8471356a4046248b12607e855eb" + +[update] +[update.modrinth] +mod-id = "mOgUt4GM" +version = "lEkperf6" diff --git a/mods/moonlight.pw.toml b/mods/moonlight.pw.toml new file mode 100644 index 0000000..82f0701 --- /dev/null +++ b/mods/moonlight.pw.toml @@ -0,0 +1,13 @@ +name = "Moonlight Lib" +filename = "moonlight-1.20-2.13.41-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/twkfQtEc/versions/JPkieuHk/moonlight-1.20-2.13.41-fabric.jar" +hash-format = "sha512" +hash = "4290f8dc4e4ffc61cf4d07cc42e88ca632120e3c500b9600a142cda1dc4b4732ec5df8ad913e2e56d17a598e5098360ea556c33d960131da7dc7b8b40e49f25f" + +[update] +[update.modrinth] +mod-id = "twkfQtEc" +version = "JPkieuHk" diff --git a/mods/more-chest-variants-lieonlion.pw.toml b/mods/more-chest-variants-lieonlion.pw.toml new file mode 100644 index 0000000..8e0ea1d --- /dev/null +++ b/mods/more-chest-variants-lieonlion.pw.toml @@ -0,0 +1,13 @@ +name = "More Chests Variants (MCV)" +filename = "MoreChestVariants-1.5.6+1.20.2-Fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/HKKqmr2p/versions/4RTlXzWr/MoreChestVariants-1.5.6%2B1.20.2-Fabric.jar" +hash-format = "sha512" +hash = "c48882f9cc654801c23dc72440c743c6d62a022e109665ac63085a3df2400e34812027426a10b34ed152dbb2deefdeece38b192522f2be20421229b97e8b6f85" + +[update] +[update.modrinth] +mod-id = "HKKqmr2p" +version = "4RTlXzWr" diff --git a/mods/more-delight.pw.toml b/mods/more-delight.pw.toml new file mode 100644 index 0000000..c56b32e --- /dev/null +++ b/mods/more-delight.pw.toml @@ -0,0 +1,13 @@ +name = "More Delight (for Farmer's Delight)" +filename = "moredelight-24.09.27-1.20-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/znHQQtuU/versions/zst5fZig/moredelight-24.09.27-1.20-fabric.jar" +hash-format = "sha512" +hash = "6dd3d1e4d3cbae334d98f409f25fa4903b079955a26b971e0b89092de509ba08bcf9d9d14a9599aed83aec4f382e6393bb025ef700e6fdbc32985840a2d72928" + +[update] +[update.modrinth] +mod-id = "znHQQtuU" +version = "zst5fZig" diff --git a/mods/morechathistory.pw.toml b/mods/morechathistory.pw.toml new file mode 100644 index 0000000..cd833f4 --- /dev/null +++ b/mods/morechathistory.pw.toml @@ -0,0 +1,13 @@ +name = "More Chat History" +filename = "morechathistory-1.3.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/8qkXwOnk/versions/PLfxrDkh/morechathistory-1.3.0.jar" +hash-format = "sha512" +hash = "b8c097418f9b60b3dce19e6f0a5d2f7ca864f7ac543e589061c898fec141df147296c199fec71f52a5d5d078a6f9ff891704f9d81dcab8653d80885adb551726" + +[update] +[update.modrinth] +mod-id = "8qkXwOnk" +version = "PLfxrDkh" diff --git a/mods/mouse-wheelie.pw.toml b/mods/mouse-wheelie.pw.toml new file mode 100644 index 0000000..b55b237 --- /dev/null +++ b/mods/mouse-wheelie.pw.toml @@ -0,0 +1,13 @@ +name = "Mouse Wheelie" +filename = "mousewheelie-1.13.0+mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/u5Ic2U1u/versions/wPtDzPBH/mousewheelie-1.13.0%2Bmc1.20.1.jar" +hash-format = "sha512" +hash = "1197bde58a580f3c28b27f639d23c83eccc06481ecd51ee9f83c9f6b34f080f16b4b33d9dd829e183a7c8aac83efd922edc6241fcca5770fb93328715e1d78cd" + +[update] +[update.modrinth] +mod-id = "u5Ic2U1u" +version = "wPtDzPBH" diff --git a/mods/moyai.pw.toml b/mods/moyai.pw.toml new file mode 100644 index 0000000..e79d4a0 --- /dev/null +++ b/mods/moyai.pw.toml @@ -0,0 +1,13 @@ +name = "Moyai" +filename = "moyai-1.20-2.0.2-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/z7WhFkyW/versions/enqrTZWH/moyai-1.20-2.0.2-fabric.jar" +hash-format = "sha512" +hash = "4d18abff903660481018c6aa812babd5c001e5ef3bdaa9eb68c3740c90ed321589e9d4ac200131306803d52e18bc79d9bdd71f4eacfb62aecae1b737d42545a2" + +[update] +[update.modrinth] +mod-id = "z7WhFkyW" +version = "enqrTZWH" diff --git a/mods/mru.pw.toml b/mods/mru.pw.toml new file mode 100644 index 0000000..7b1a1a5 --- /dev/null +++ b/mods/mru.pw.toml @@ -0,0 +1,13 @@ +name = "M.R.U" +filename = "MRU-1.0.4+1.20.1+fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/SNVQ2c0g/versions/iug2Tybf/MRU-1.0.4%2B1.20.1%2Bfabric.jar" +hash-format = "sha512" +hash = "2212b321c5b0bad4583c12385932eee57d3ffb6d37e7b63a434fcba0f8f154fa1b57370aaadf2352ad35f85cde12ff138e3b50787afa515ac9ba9d961b03d436" + +[update] +[update.modrinth] +mod-id = "SNVQ2c0g" +version = "iug2Tybf" diff --git a/mods/music-maker-mod.pw.toml b/mods/music-maker-mod.pw.toml new file mode 100644 index 0000000..c898978 --- /dev/null +++ b/mods/music-maker-mod.pw.toml @@ -0,0 +1,13 @@ +name = "Music Maker Mod" +filename = "xercamusic-fabric-1.20.1-1.0.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/qQpWCN75/versions/QM70Gb46/xercamusic-fabric-1.20.1-1.0.2.jar" +hash-format = "sha512" +hash = "a10218cd801f2f93a9ba96e6c46e732dbd8cf58c3862134d008c6a4dea0f1678f4ddd9b57fb362f39185e74659d4234e752f6fb0a04422c171a5b3b28ba8be38" + +[update] +[update.modrinth] +mod-id = "qQpWCN75" +version = "QM70Gb46" diff --git a/mods/mystical-oak-tree.pw.toml b/mods/mystical-oak-tree.pw.toml new file mode 100644 index 0000000..ad948a6 --- /dev/null +++ b/mods/mystical-oak-tree.pw.toml @@ -0,0 +1,13 @@ +name = "Mystical Oak Tree" +filename = "mysticaloaktree-1.20-1.11-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/eUma2vmY/versions/bfCjSjSy/mysticaloaktree-1.20-1.11-fabric.jar" +hash-format = "sha512" +hash = "f0d06e016ca3d32b0ffbede2d5acc86a8cb515c7de115899ee20c110b26caf8f3489be9b68c61b23ae1ad9e3adaf5f7a70c74a93e5cb10f74a48f366285e7742" + +[update] +[update.modrinth] +mod-id = "eUma2vmY" +version = "bfCjSjSy" diff --git a/mods/naturalist.pw.toml b/mods/naturalist.pw.toml new file mode 100644 index 0000000..114bbf1 --- /dev/null +++ b/mods/naturalist.pw.toml @@ -0,0 +1,13 @@ +name = "Naturalist" +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-format = "sha512" +hash = "2598c35680c48d8a5a30c05883cf1c0b3cbada36594ba93f35f3e99555634e64d3b4eea5d1c8beb84ef7019d3d61a32350cdc68368ab0a2b731ab381978492b0" + +[update] +[update.modrinth] +mod-id = "F8BQNPWX" +version = "dMGBsRgz" diff --git a/mods/natures-compass.pw.toml b/mods/natures-compass.pw.toml new file mode 100644 index 0000000..a658006 --- /dev/null +++ b/mods/natures-compass.pw.toml @@ -0,0 +1,13 @@ +name = "Nature's Compass" +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-format = "sha512" +hash = "b57dabd55010b598a66fe13644380c452ea75d4717b6acb7cd4f7718d6d535920cf7e216491bde427066d7e68dfaee5ef7226b7c8322b4f8771cf0dc9416e56e" + +[update] +[update.modrinth] +mod-id = "fPetb5Kh" +version = "NovIXDxY" diff --git a/mods/necronomicon.pw.toml b/mods/necronomicon.pw.toml new file mode 100644 index 0000000..e420e06 --- /dev/null +++ b/mods/necronomicon.pw.toml @@ -0,0 +1,13 @@ +name = "Necronomicon API" +filename = "Necronomicon-Fabric-1.6.0+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/P1Kv5EAO/versions/bgc6xYvl/Necronomicon-Fabric-1.6.0%2B1.20.1.jar" +hash-format = "sha512" +hash = "c412d5e028085b6b21c611b3d2c60bbc9f4aae442bb448e80a40a44568d715415d5713f1bdc7e023937e7f7d50e855b47dd31e4fed4cfb856f709c0c0996e782" + +[update] +[update.modrinth] +mod-id = "P1Kv5EAO" +version = "bgc6xYvl" diff --git a/mods/nerb.pw.toml b/mods/nerb.pw.toml new file mode 100644 index 0000000..53f394e --- /dev/null +++ b/mods/nerb.pw.toml @@ -0,0 +1,13 @@ +name = "Not Enough Recipe Book [NERB]" +filename = "Not Enough Recipe Book-QUILT-0.4.1+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/bQh7xzFq/versions/6oul90SP/Not%20Enough%20Recipe%20Book-QUILT-0.4.1%2B1.20.1.jar" +hash-format = "sha512" +hash = "1513042091ec16ea599cbf1a05781e69a2dcb0737b30d1336877992d69ce5ecc113da9ef86a6e1328aa7b6d5305eebccc87582186f2a2455b2abf790b054e3b7" + +[update] +[update.modrinth] +mod-id = "bQh7xzFq" +version = "6oul90SP" diff --git a/mods/nethers-delight-refabricated.pw.toml b/mods/nethers-delight-refabricated.pw.toml new file mode 100644 index 0000000..022cffb --- /dev/null +++ b/mods/nethers-delight-refabricated.pw.toml @@ -0,0 +1,13 @@ +name = "Nethers Delight Refabricated" +filename = "NethersDelight-Refabricated-1.20.1-4.1.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/QLPYve8H/versions/ukA6oZlz/NethersDelight-Refabricated-1.20.1-4.1.1.jar" +hash-format = "sha512" +hash = "c347b214f862f1f27efffb8b738935ab4c57e699d71f92e20b5f14b065f78fff6e64657af43d15a32b08b2bf92e9f3b4d8afa4bea428284e5bccbc2dae3de29a" + +[update] +[update.modrinth] +mod-id = "QLPYve8H" +version = "ukA6oZlz" diff --git a/mods/nightlights.pw.toml b/mods/nightlights.pw.toml new file mode 100644 index 0000000..7ab4d2c --- /dev/null +++ b/mods/nightlights.pw.toml @@ -0,0 +1,13 @@ +name = "Night Lights" +filename = "nightlights-fabric-1.20.1-1.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/s7pMb898/versions/FkwsGnGJ/nightlights-fabric-1.20.1-1.1.jar" +hash-format = "sha512" +hash = "b1baa98aa99defb0e92f501b793638e509888967f525097368940a89f44499ccda01a3c2092f4c791362dfd83e65a58c7ed0dad5d5dd47a28adb772466b59001" + +[update] +[update.modrinth] +mod-id = "s7pMb898" +version = "FkwsGnGJ" diff --git a/mods/no-chat-reports.pw.toml b/mods/no-chat-reports.pw.toml new file mode 100644 index 0000000..7865ba7 --- /dev/null +++ b/mods/no-chat-reports.pw.toml @@ -0,0 +1,13 @@ +name = "No Chat Reports" +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-format = "sha512" +hash = "3213e37fc12205e49f69a6c295c8c3237d8464d63dedbfbac4901892752741d22ebf7e1b40d6683143e70ca158fc95b00c2af177a1263038edce9a46b6cbeb79" + +[update] +[update.modrinth] +mod-id = "qQyHxfxd" +version = "HeZZR2kF" diff --git a/mods/noisium.pw.toml b/mods/noisium.pw.toml new file mode 100644 index 0000000..8db4192 --- /dev/null +++ b/mods/noisium.pw.toml @@ -0,0 +1,13 @@ +name = "Noisium" +filename = "noisium-fabric-2.3.0+mc1.20-1.20.1.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/KuNKN7d2/versions/erSJnRcq/noisium-fabric-2.3.0%2Bmc1.20-1.20.1.jar" +hash-format = "sha512" +hash = "f0abcdac514bd2b4eb6af3529eeb9980a6fef534d31244879acb291a9943151aeb34f372bf98ae01f6191870bf95e1c0bc36d522433353a1090b96e7ac03c417" + +[update] +[update.modrinth] +mod-id = "KuNKN7d2" +version = "erSJnRcq" diff --git a/mods/not-enough-animations.pw.toml b/mods/not-enough-animations.pw.toml new file mode 100644 index 0000000..5707337 --- /dev/null +++ b/mods/not-enough-animations.pw.toml @@ -0,0 +1,13 @@ +name = "Not Enough Animations" +filename = "notenoughanimations-fabric-1.8.2-mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/MPCX6s5C/versions/p8ZIN9Qo/notenoughanimations-fabric-1.8.2-mc1.20.1.jar" +hash-format = "sha512" +hash = "aedde3adf77ae085e5186dca02d88231b1c28b630fa01096505f3226575a138256c72857e5440cfd49ed401781edea41dde8ea6a9c38e4d010452dc725e85fb0" + +[update] +[update.modrinth] +mod-id = "MPCX6s5C" +version = "p8ZIN9Qo" diff --git a/mods/notenoughcrashes.pw.toml b/mods/notenoughcrashes.pw.toml new file mode 100644 index 0000000..561f82d --- /dev/null +++ b/mods/notenoughcrashes.pw.toml @@ -0,0 +1,13 @@ +name = "Not Enough Crashes" +filename = "notenoughcrashes-4.4.7+1.20.1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/yM94ont6/versions/Y4CJKeuu/notenoughcrashes-4.4.7%2B1.20.1-fabric.jar" +hash-format = "sha512" +hash = "3f44ced2af52a1aae6cbc790e24d4d8d27ef6fd69508c2d40fe7f1d5071303e78cc2c814ec3578ab1dbdd85add3071d671b75ed2a7709e54642811fd3e22e96b" + +[update] +[update.modrinth] +mod-id = "yM94ont6" +version = "Y4CJKeuu" diff --git a/mods/nullscape.pw.toml b/mods/nullscape.pw.toml new file mode 100644 index 0000000..49a1956 --- /dev/null +++ b/mods/nullscape.pw.toml @@ -0,0 +1,13 @@ +name = "Nullscape" +filename = "Nullscape_1.20.x_v1.2.8.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/LPjGiSO4/versions/QsRKydVt/Nullscape_1.20.x_v1.2.8.jar" +hash-format = "sha512" +hash = "fcd11f20ab1b374a219e915156c8439f2d6fcabb060406f4d0a11392f945228e1c6e375f8e9e3048ac01c3a351c88bde4327e1f958bfd5ef4ab81c178f9e35da" + +[update] +[update.modrinth] +mod-id = "LPjGiSO4" +version = "QsRKydVt" diff --git a/mods/obscure-api.pw.toml b/mods/obscure-api.pw.toml new file mode 100644 index 0000000..916f439 --- /dev/null +++ b/mods/obscure-api.pw.toml @@ -0,0 +1,13 @@ +name = "Obscure API" +filename = "Obscure-API-16.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fU7jbFHc/versions/IWDYxZre/Obscure-API-16.jar" +hash-format = "sha512" +hash = "f0998d69174063420078fe96ff904665a33f3950475536c8ca8f0bda45417ef94a75598d417af4302e92d6a59ead1ea7e6721062b538f981f5f4dd16e8c1c5b1" + +[update] +[update.modrinth] +mod-id = "fU7jbFHc" +version = "IWDYxZre" diff --git a/mods/octo-lib.pw.toml b/mods/octo-lib.pw.toml new file mode 100644 index 0000000..94d97ab --- /dev/null +++ b/mods/octo-lib.pw.toml @@ -0,0 +1,13 @@ +name = "OctoLib" +filename = "OctoLib-QUILT-0.4.2+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/RH2KUdKJ/versions/eI4teGA0/OctoLib-QUILT-0.4.2%2B1.20.1.jar" +hash-format = "sha512" +hash = "b96d3f54d603b7cd81edde4c688f5d57725f2cdd40fbd1af6226734d336c1b33125773df67e1213f005a8f3ae0665a071e124f653a8f3715f5379c429ff00683" + +[update] +[update.modrinth] +mod-id = "RH2KUdKJ" +version = "eI4teGA0" diff --git a/mods/open-loader.pw.toml b/mods/open-loader.pw.toml new file mode 100644 index 0000000..3f8d62f --- /dev/null +++ b/mods/open-loader.pw.toml @@ -0,0 +1,13 @@ +name = "Open Loader" +filename = "OpenLoader-Fabric-1.20.1-19.0.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/KwWsINvD/versions/x9NMb7rU/OpenLoader-Fabric-1.20.1-19.0.4.jar" +hash-format = "sha512" +hash = "4f47b88899486de3ecb8bd5f787b75d2fc7e4253a2c6de9a85f9d642057d845833cdf70bbff5a90edc56670ec4de7c612dc04acde8b1606b1bbb145aa08ec736" + +[update] +[update.modrinth] +mod-id = "KwWsINvD" +version = "x9NMb7rU" diff --git a/mods/orthocamera.pw.toml b/mods/orthocamera.pw.toml new file mode 100644 index 0000000..a84c6df --- /dev/null +++ b/mods/orthocamera.pw.toml @@ -0,0 +1,13 @@ +name = "OrthoCamera" +filename = "OrthoCamera-0.1.7+1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/OB69KhRA/versions/Xafz6dMj/OrthoCamera-0.1.7%2B1.20.1.jar" +hash-format = "sha512" +hash = "43385c918ccd3db62751e3c93bf95ea9eb323b8175a7f2d942d7878caa08f68f3533f89d58282428c8228630ae4ce7e77e756ebb4bc090ed059a00385db1b7b3" + +[update] +[update.modrinth] +mod-id = "OB69KhRA" +version = "Xafz6dMj" diff --git a/mods/owo-lib.pw.toml b/mods/owo-lib.pw.toml new file mode 100644 index 0000000..79547af --- /dev/null +++ b/mods/owo-lib.pw.toml @@ -0,0 +1,13 @@ +name = "oωo (owo-lib)" +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-format = "sha512" +hash = "807e4a3daf493e92c5ff0d5657efbba2a4e0cd2a9b753f2d6f153422629415f189345842a6dd258c87d4c02ebf38950a517bcd8a7ed929af6ed6485ae46cf77e" + +[update] +[update.modrinth] +mod-id = "ccKDOlHs" +version = "zyOBB7J4" diff --git a/mods/paladins-and-priests.pw.toml b/mods/paladins-and-priests.pw.toml new file mode 100644 index 0000000..24a4d7d --- /dev/null +++ b/mods/paladins-and-priests.pw.toml @@ -0,0 +1,13 @@ +name = "Paladins & Priests (RPG Series)" +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-format = "sha512" +hash = "a9b7e6da3205207a7fce6fe35e17f91a4130089c17c1963fb59a51f7875070e10022bd51347db6e6c5a8ba56f5145ff77dd149a628b323476373947467025806" + +[update] +[update.modrinth] +mod-id = "FxXkHaLe" +version = "9FbzwRpY" diff --git a/mods/particular.pw.toml b/mods/particular.pw.toml new file mode 100644 index 0000000..eb83b40 --- /dev/null +++ b/mods/particular.pw.toml @@ -0,0 +1,13 @@ +name = "Particular ✨" +filename = "particular-1.1.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/B1CcCd9h/versions/19UWxtiZ/particular-1.1.1.jar" +hash-format = "sha512" +hash = "a858d77246f1da8ba4e32fa61cad935c5366f422db2a1fc6f07bbf1e3c4fb1a44839d240dc7325964ef840f49d51e78ad3068e872b8153234b225bfa25c29d70" + +[update] +[update.modrinth] +mod-id = "B1CcCd9h" +version = "19UWxtiZ" diff --git a/mods/patchouli.pw.toml b/mods/patchouli.pw.toml new file mode 100644 index 0000000..2ad65f1 --- /dev/null +++ b/mods/patchouli.pw.toml @@ -0,0 +1,13 @@ +name = "Patchouli" +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-format = "sha512" +hash = "b20cebaab0972443ccc7f3b10b2038d32cfa7baa953a1cc8de6333fa711f63fd51b1b5933e0f2757445385b98e132ef295bd7c17f67ebb44bc8481295329d8bf" + +[update] +[update.modrinth] +mod-id = "nU0bVIaL" +version = "Y6tuH1cn" diff --git a/mods/perspective-mod-redux.pw.toml b/mods/perspective-mod-redux.pw.toml new file mode 100644 index 0000000..ec10d29 --- /dev/null +++ b/mods/perspective-mod-redux.pw.toml @@ -0,0 +1,18 @@ +name = "Perspective Mod Redux" +filename = "PerspectiveModRedux-1.17-0.0.5_01.jar" +side = "client" + +[option] +optional = true +default = false +descriptional = "If you prefer this over better third person, you can use this, but it's not recommended." + +[download] +url = "https://cdn.modrinth.com/data/GwyFsKOX/versions/1/PerspectiveModRedux-1.17-0.0.5_01.jar" +hash-format = "sha512" +hash = "22b83740991e59099a404ae574826ea28f0ea886805868b7f905ac4f8785fa9edd4e8cbbb5b6d788ba208d70194902d7666935332d748029477ed5f404f214a8" + +[update] +[update.modrinth] +mod-id = "GwyFsKOX" +version = "mBU1uAxH" diff --git a/mods/pick-up-notifier.pw.toml b/mods/pick-up-notifier.pw.toml new file mode 100644 index 0000000..5b4b82e --- /dev/null +++ b/mods/pick-up-notifier.pw.toml @@ -0,0 +1,13 @@ +name = "Pick Up Notifier" +filename = "PickUpNotifier-v8.0.0-1.20.1-Fabric.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/ZX66K16c/versions/sdb70E1E/PickUpNotifier-v8.0.0-1.20.1-Fabric.jar" +hash-format = "sha512" +hash = "4303931f804697027186aa97595c03d7503aa0b00934a9133fd35f95ee119352a03c8b8c66515aaabbf1e2c1ac2b120a03800c80da57e03bc12b4e57b47f0807" + +[update] +[update.modrinth] +mod-id = "ZX66K16c" +version = "sdb70E1E" diff --git a/mods/pick-your-poison.pw.toml b/mods/pick-your-poison.pw.toml new file mode 100644 index 0000000..b62f2bf --- /dev/null +++ b/mods/pick-your-poison.pw.toml @@ -0,0 +1,13 @@ +name = "Pick Your Poison" +filename = "pickyourpoison-1.1.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/EHjFQKek/versions/INN0iDW3/pickyourpoison-1.1.1.jar" +hash-format = "sha512" +hash = "db2a5799bdedf7fc9e17197e43ee9f770c2571478f186d18ffb83bb69b6e32f58e47900246646932dd0c977cc1238489e98285883c81403da215b7e22ded5d86" + +[update] +[update.modrinth] +mod-id = "EHjFQKek" +version = "INN0iDW3" diff --git a/mods/picohud.pw.toml b/mods/picohud.pw.toml new file mode 100644 index 0000000..4b2ec16 --- /dev/null +++ b/mods/picohud.pw.toml @@ -0,0 +1,13 @@ +name = "PicoHUD" +filename = "picohud-1.6.7+1.20.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/483PZAuC/versions/mDyttyc5/picohud-1.6.7%2B1.20.jar" +hash-format = "sha512" +hash = "385d253024520b5626b4e5e5dd7b3fbc77e50940d6207bf11eac4ec62c5270a8334648e2a1c8b01bd390405f6cadf888b65fb123cf3d945dcaff9d18ce8bbbae" + +[update] +[update.modrinth] +mod-id = "483PZAuC" +version = "mDyttyc5" diff --git a/mods/ping-wheel.pw.toml b/mods/ping-wheel.pw.toml new file mode 100644 index 0000000..e536c62 --- /dev/null +++ b/mods/ping-wheel.pw.toml @@ -0,0 +1,13 @@ +name = "Ping Wheel" +filename = "Ping-Wheel-1.10.0-fabric-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/QQXAdCzh/versions/2Y3dASD3/Ping-Wheel-1.10.0-fabric-1.20.1.jar" +hash-format = "sha512" +hash = "5c564bdc605a89b96bbd984e5bd1f841df62684127d33512ec3b2e2475b5f3563ca9b71b1d10d0c7d53a76352818137d015226f0172d93f7dfe57cae2d264d70" + +[update] +[update.modrinth] +mod-id = "QQXAdCzh" +version = "2Y3dASD3" diff --git a/mods/playeranimator.pw.toml b/mods/playeranimator.pw.toml new file mode 100644 index 0000000..e746c6c --- /dev/null +++ b/mods/playeranimator.pw.toml @@ -0,0 +1,13 @@ +name = "playerAnimator" +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-format = "sha512" +hash = "4ed2659c9e9c1a1fa8936523f7d6de1b8012d8e06e6c58ef65ea5c7acef2b3a113afe584b3a31d70eee00423dbe533c06022cc5f169ab5a2ddf8167acf259ec8" + +[update] +[update.modrinth] +mod-id = "gedNE4y2" +version = "yDqYTUaf" diff --git a/mods/pneumono_core.pw.toml b/mods/pneumono_core.pw.toml new file mode 100644 index 0000000..657da75 --- /dev/null +++ b/mods/pneumono_core.pw.toml @@ -0,0 +1,13 @@ +name = "PneumonoCore" +filename = "pneumonocore-1.1.4+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ZLKQjA7t/versions/MtM4xjYo/pneumonocore-1.1.4%2B1.20.1.jar" +hash-format = "sha512" +hash = "e7be8b47f6f9d5871367c3e9dd43f6b9528c87c03b0b788087528bdd8e19798126661d8cf0f6fd1fcc226115edf2114ad1e7faa16de19227685dde4e6d16e266" + +[update] +[update.modrinth] +mod-id = "ZLKQjA7t" +version = "MtM4xjYo" diff --git a/mods/pneumono_gravestones.pw.toml b/mods/pneumono_gravestones.pw.toml new file mode 100644 index 0000000..190633f --- /dev/null +++ b/mods/pneumono_gravestones.pw.toml @@ -0,0 +1,13 @@ +name = "Gravestones" +filename = "gravestones-1.0.11-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Heh3BbSv/versions/Hi476Pqy/gravestones-1.0.11-1.20.1.jar" +hash-format = "sha512" +hash = "d645eb3ea987c7557c788536163f72572ce0ece43cb13854a1dbb194afb88b27731917e653516a491959ccc9fd9ddf851980f546e29396e0abec323a311eb2f8" + +[update] +[update.modrinth] +mod-id = "Heh3BbSv" +version = "Hi476Pqy" diff --git a/mods/projectsavethepets.pw.toml b/mods/projectsavethepets.pw.toml new file mode 100644 index 0000000..a263aa8 --- /dev/null +++ b/mods/projectsavethepets.pw.toml @@ -0,0 +1,13 @@ +name = "Project: Save the Pets!" +filename = "projectsavethepets-4.0.1-alpha+2023.7fa0c6d61f.quilt.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/VJ6H5k8J/versions/vc56OG5s/projectsavethepets-4.0.1-alpha%2B2023.7fa0c6d61f.quilt.jar" +hash-format = "sha512" +hash = "9ee446c2b5ca6283fb92bcb990eb76cfda3f9d73de9faf4cc7c9b87df4b99a147844c37680b35dc2e0354c490f6c1dd552927d536d3c8948e5ad2325821a4550" + +[update] +[update.modrinth] +mod-id = "VJ6H5k8J" +version = "vc56OG5s" diff --git a/mods/puzzles-lib.pw.toml b/mods/puzzles-lib.pw.toml new file mode 100644 index 0000000..ce7fda1 --- /dev/null +++ b/mods/puzzles-lib.pw.toml @@ -0,0 +1,13 @@ +name = "Puzzles Lib" +filename = "PuzzlesLib-v8.1.25-1.20.1-Fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/QAGBst4M/versions/qjSRRf2B/PuzzlesLib-v8.1.25-1.20.1-Fabric.jar" +hash-format = "sha512" +hash = "5dbf0aa3a51874d51874810636430a70b02d94cac8c228ba75051a3f8b6979c952b810686e5083ff78db24954aee7c60a12461fb246d643da662fc60ee3ae291" + +[update] +[update.modrinth] +mod-id = "QAGBst4M" +version = "qjSRRf2B" diff --git a/mods/qkl.pw.toml b/mods/qkl.pw.toml new file mode 100644 index 0000000..b42e58d --- /dev/null +++ b/mods/qkl.pw.toml @@ -0,0 +1,13 @@ +name = "Quilt Kotlin Libraries (QKL)" +filename = "quilt-kotlin-libraries-2.1.3+kt.1.9.10+flk.1.10.10.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/lwVhp9o5/versions/RYTef2Wb/quilt-kotlin-libraries-2.1.3%2Bkt.1.9.10%2Bflk.1.10.10.jar" +hash-format = "sha512" +hash = "21c93d576808582b23de61c63d6a5d3a8d8894ed59025272d8c75548f556bde87975698834cfb76357bb11bd4cbe81e5e1ea22c3905d93d9eb335089c119b0e8" + +[update] +[update.modrinth] +mod-id = "lwVhp9o5" +version = "RYTef2Wb" diff --git a/mods/qsl.pw.toml b/mods/qsl.pw.toml new file mode 100644 index 0000000..1162102 --- /dev/null +++ b/mods/qsl.pw.toml @@ -0,0 +1,13 @@ +name = "Quilted Fabric API (QFAPI) / Quilt Standard Libraries (QSL)" +filename = "qfapi-7.7.0_qsl-6.3.0_fapi-0.92.2_mc-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/qvIfYCYJ/versions/s8dfz9Xa/qfapi-7.7.0_qsl-6.3.0_fapi-0.92.2_mc-1.20.1.jar" +hash-format = "sha512" +hash = "d7bb384b961088ae6fe1e0baef9895cd495a515d8337664bb534c36ae17e48188fc1c50cd9a06e3e53898870ada73e737f63853adf43e744fee11a64bad1059a" + +[update] +[update.modrinth] +mod-id = "qvIfYCYJ" +version = "s8dfz9Xa" diff --git a/mods/quad.pw.toml b/mods/quad.pw.toml new file mode 100644 index 0000000..cda3569 --- /dev/null +++ b/mods/quad.pw.toml @@ -0,0 +1,13 @@ +name = "Quad" +filename = "Quad-1.2.9+1.20.4-Fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/7jzrCiK0/versions/13NoFEPW/Quad-1.2.9%2B1.20.4-Fabric.jar" +hash-format = "sha512" +hash = "e4e4db5a37ad56cf50ed425742db23ae649666a2ba61afa2cdae8bdd17630616ec3aa8517835744cafa3696f5a7d7c04c2ce03f97e6d8df34518375cbbd6d346" + +[update] +[update.modrinth] +mod-id = "7jzrCiK0" +version = "13NoFEPW" diff --git a/mods/ranged-weapon-api.pw.toml b/mods/ranged-weapon-api.pw.toml new file mode 100644 index 0000000..a1eb6d9 --- /dev/null +++ b/mods/ranged-weapon-api.pw.toml @@ -0,0 +1,13 @@ +name = "Ranged Weapon API" +filename = "ranged_weapon_api-1.1.4+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/AqaIIO6D/versions/6LUH2hok/ranged_weapon_api-1.1.4%2B1.20.1.jar" +hash-format = "sha512" +hash = "07834834ba62de6ee480dd9186569aa079c29df185963148b12c9fc5b4fea48590b3de95f2ae200f74cf302a75731f916014052b7d3b7a73ba50a7fe79f230f8" + +[update] +[update.modrinth] +mod-id = "AqaIIO6D" +version = "6LUH2hok" diff --git a/mods/reeses-sodium-options.pw.toml b/mods/reeses-sodium-options.pw.toml new file mode 100644 index 0000000..39b46e6 --- /dev/null +++ b/mods/reeses-sodium-options.pw.toml @@ -0,0 +1,13 @@ +name = "Reese's Sodium Options" +filename = "reeses_sodium_options-1.7.2+mc1.20.1-build.101.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/Bh37bMuy/versions/Rc9pkPug/reeses_sodium_options-1.7.2%2Bmc1.20.1-build.101.jar" +hash-format = "sha512" +hash = "efb5eab3caea346f9d13ea7c73e856f286bba1c87508c7250deada7bf4e9ad179a12e9861f61145d5c9578d88f740abf19c564f14579aac5da1f46bf6f086977" + +[update] +[update.modrinth] +mod-id = "Bh37bMuy" +version = "Rc9pkPug" diff --git a/mods/resourceful-lib.pw.toml b/mods/resourceful-lib.pw.toml new file mode 100644 index 0000000..3b3d541 --- /dev/null +++ b/mods/resourceful-lib.pw.toml @@ -0,0 +1,13 @@ +name = "Resourceful Lib" +filename = "resourcefullib-fabric-1.20.1-2.1.29.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/G1hIVOrD/versions/UOdaYbhh/resourcefullib-fabric-1.20.1-2.1.29.jar" +hash-format = "sha512" +hash = "d3fcf5440c9359ee84cdec6ab198a6b2e10e5b1939995d2b12837ffdaa1f82d3caa80b14107cf02380718c65f20672b1faca3a498d2b41d79c79de34b2f7189b" + +[update] +[update.modrinth] +mod-id = "G1hIVOrD" +version = "UOdaYbhh" diff --git a/mods/respite-creators-fabric.pw.toml b/mods/respite-creators-fabric.pw.toml new file mode 100644 index 0000000..7d72983 --- /dev/null +++ b/mods/respite-creators-fabric.pw.toml @@ -0,0 +1,13 @@ +name = "Respite Creators [Fabric]" +filename = "respite-creators-1.3.0-FDR.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/XDKcRhiQ/versions/dZHrDfmD/respite-creators-1.3.0-FDR.jar" +hash-format = "sha512" +hash = "b4dfb59557c0f63df74eed1e55876021212d20c42f2d5da9ebdaca2970c9cd9e1d10b9cddd0b13b42bd9ce9dda248007bbb17bcbe171ff706a8bdcccfa749e8f" + +[update] +[update.modrinth] +mod-id = "XDKcRhiQ" +version = "dZHrDfmD" diff --git a/mods/ribbits.pw.toml b/mods/ribbits.pw.toml new file mode 100644 index 0000000..94b720b --- /dev/null +++ b/mods/ribbits.pw.toml @@ -0,0 +1,13 @@ +name = "Ribbits" +filename = "Ribbits-1.20.1-Fabric-3.0.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/8YcE8y4T/versions/15vB3aE9/Ribbits-1.20.1-Fabric-3.0.2.jar" +hash-format = "sha512" +hash = "1bfc3dae6bc65c772c0b5c4661cd86070462decbef16ecfcd9e3c986d575831af5b39164936fd39b6b426a3eda86ffa9e461538ef9c9f1ca0b97ac47a8e1e64d" + +[update] +[update.modrinth] +mod-id = "8YcE8y4T" +version = "15vB3aE9" diff --git a/mods/rightclickharvest.pw.toml b/mods/rightclickharvest.pw.toml new file mode 100644 index 0000000..3f551c2 --- /dev/null +++ b/mods/rightclickharvest.pw.toml @@ -0,0 +1,13 @@ +name = "RightClickHarvest" +filename = "right-click-harvest-3.2.3+1.19.x-1.20.1-fabric.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/Cnejf5xM/versions/4UWabEWo/right-click-harvest-3.2.3%2B1.19.x-1.20.1-fabric.jar" +hash-format = "sha512" +hash = "cbef5270f6b18172dbcb6a0b13d92a080186b8335253af1d1b0626d224b1faf46ba9bc0fe3f5105f114bda3c0c00cb72c2ba74f58e90a29c981827b318bb0fb2" + +[update] +[update.modrinth] +mod-id = "Cnejf5xM" +version = "4UWabEWo" diff --git a/mods/rogues-and-warriors.pw.toml b/mods/rogues-and-warriors.pw.toml new file mode 100644 index 0000000..09d10f7 --- /dev/null +++ b/mods/rogues-and-warriors.pw.toml @@ -0,0 +1,13 @@ +name = "Rogues & Warriors (RPG Series)" +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-format = "sha512" +hash = "619289546554549092c0fedc1bc9893bc8ac9681a81dc640cc5b6f5e7051ffeed3c2765a44f00cceb371e5c32ca03881b90ec845af74e5a958338710fe242fd8" + +[update] +[update.modrinth] +mod-id = "3MKqoGuP" +version = "Zv9heBzC" diff --git a/mods/rolling-down-in-the-deep.pw.toml b/mods/rolling-down-in-the-deep.pw.toml new file mode 100644 index 0000000..c7e01e6 --- /dev/null +++ b/mods/rolling-down-in-the-deep.pw.toml @@ -0,0 +1,13 @@ +name = "Rolling Down in the Deep" +filename = "rolling-down-in-the-deep-0.1.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/zQqsEeqy/versions/PFWiA3fE/rolling-down-in-the-deep-0.1.1.jar" +hash-format = "sha512" +hash = "4c06311cf20d55b0e0e4c17d45e7680494d3c67b0b45d1eaeba6a635cdd828197c066de9c21c9ae40ff998f824c703b4928cb33d5a222f8d7cccbceae516df52" + +[update] +[update.modrinth] +mod-id = "zQqsEeqy" +version = "PFWiA3fE" diff --git a/mods/runes.pw.toml b/mods/runes.pw.toml new file mode 100644 index 0000000..19514d5 --- /dev/null +++ b/mods/runes.pw.toml @@ -0,0 +1,13 @@ +name = "Runes" +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-format = "sha512" +hash = "a4f4de8577788c52ce6264adc0d9f301040bad21c53e3c8a59b159b746bc5181a209250f6982af70830882a278914d98bc1d45f913291b8bed1946b3523aaabf" + +[update] +[update.modrinth] +mod-id = "lP9Yrr1E" +version = "Z915LCkR" diff --git a/mods/satin-api.pw.toml b/mods/satin-api.pw.toml new file mode 100644 index 0000000..f2204ca --- /dev/null +++ b/mods/satin-api.pw.toml @@ -0,0 +1,13 @@ +name = "Satin API" +filename = "satin-1.14.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fRbqPLg4/versions/e3HU1vAD/satin-1.14.0.jar" +hash-format = "sha512" +hash = "982128c36fb97102bb4e26ec5c833965e6fb2b54171f06701d2fff17042d7de18bfc30d7788c63b9fb8ff13489ab3fbf0ba32b52f875e5610431a6d9c9df3e06" + +[update] +[update.modrinth] +mod-id = "fRbqPLg4" +version = "e3HU1vAD" diff --git a/mods/separatedleaves.pw.toml b/mods/separatedleaves.pw.toml new file mode 100644 index 0000000..59ee518 --- /dev/null +++ b/mods/separatedleaves.pw.toml @@ -0,0 +1,13 @@ +name = "Separated Leaves" +filename = "separatedleaves-2.5.0-fabric-1.20.4.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/xEu0FTVG/versions/bkTM4Hzh/separatedleaves-2.5.0-fabric-1.20.4.jar" +hash-format = "sha512" +hash = "ce9e5134ad1f81ca081d5000f3112d354640d5eee7c995ebacf184ee558cb0ba8dbfb08827e7963358d0d9a58d96aaa370d7e33c7e17aa66273168d1ae9f8002" + +[update] +[update.modrinth] +mod-id = "xEu0FTVG" +version = "bkTM4Hzh" diff --git a/mods/servux.pw.toml b/mods/servux.pw.toml new file mode 100644 index 0000000..6faa2bf --- /dev/null +++ b/mods/servux.pw.toml @@ -0,0 +1,13 @@ +name = "Servux" +filename = "servux-fabric-1.20.0-0.1.0.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/zQhsx8KF/versions/I7wfvH49/servux-fabric-1.20.0-0.1.0.jar" +hash-format = "sha512" +hash = "973ab83979d994fa70eb2ebb285bc5feff8a51d1972f3533007dbad2bfb0fded62dc0dac5627a2ff557d07fe230faf1b931974b224cf2bcef31f5215606bb21f" + +[update] +[update.modrinth] +mod-id = "zQhsx8KF" +version = "I7wfvH49" diff --git a/mods/shield-api.pw.toml b/mods/shield-api.pw.toml new file mode 100644 index 0000000..dbd18df --- /dev/null +++ b/mods/shield-api.pw.toml @@ -0,0 +1,13 @@ +name = "Shield API" +filename = "ShieldAPI-1.0.1+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/y9clIFY4/versions/sLbfVkc1/ShieldAPI-1.0.1%2B1.20.1.jar" +hash-format = "sha512" +hash = "0e3e7c67a6caf5824a6e0329cc41eb3dc4669cc08fe844b150a98bcce69c375b75a740281bdb6013707a4db8cb84c94e18982bd847be46ed10b254c84e18b807" + +[update] +[update.modrinth] +mod-id = "y9clIFY4" +version = "sLbfVkc1" diff --git a/mods/shulkerboxtooltip.pw.toml b/mods/shulkerboxtooltip.pw.toml new file mode 100644 index 0000000..0567fdb --- /dev/null +++ b/mods/shulkerboxtooltip.pw.toml @@ -0,0 +1,13 @@ +name = "Shulker Box Tooltip" +filename = "shulkerboxtooltip-fabric-4.0.4+1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/2M01OLQq/versions/gVxjsEiQ/shulkerboxtooltip-fabric-4.0.4%2B1.20.1.jar" +hash-format = "sha512" +hash = "65cdc8b565e5a7f9a855dd35c7c4b20daae0c6a5822e9a32dabd0f8fd4df6353c9fbd9d1437b83c6f7824e1c65ce466a82f70a7b7ef007bd54afa63718037043" + +[update] +[update.modrinth] +mod-id = "2M01OLQq" +version = "gVxjsEiQ" diff --git a/mods/simple-voice-chat-radio.pw.toml b/mods/simple-voice-chat-radio.pw.toml new file mode 100644 index 0000000..0ebf308 --- /dev/null +++ b/mods/simple-voice-chat-radio.pw.toml @@ -0,0 +1,13 @@ +name = "Simple Voice Chat Radio" +filename = "radio-1.1.1+1.20.1.fabric.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/Ab2GBNpI/versions/XuO1bkpC/radio-1.1.1%2B1.20.1.fabric.jar" +hash-format = "sha512" +hash = "bdd0b315f7a15a620943a74c8f500e03ed20b1a19adb41e353b8d2a4cf5cfe67c5142f4eccea467e42d7cea2890bdd0e1bed0dda5758073447e06cf28eddb7b2" + +[update] +[update.modrinth] +mod-id = "Ab2GBNpI" +version = "XuO1bkpC" diff --git a/mods/simple-voice-chat.pw.toml b/mods/simple-voice-chat.pw.toml new file mode 100644 index 0000000..e8df83e --- /dev/null +++ b/mods/simple-voice-chat.pw.toml @@ -0,0 +1,13 @@ +name = "Simple Voice Chat" +filename = "voicechat-quilt-1.20.1-2.5.27.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9eGKb6K1/versions/GoKcaNn3/voicechat-quilt-1.20.1-2.5.27.jar" +hash-format = "sha512" +hash = "603be4f5766681844f300eeb5540cd31c33d9e6411155c44ef1d46ec61a38d640285082132cb1c19820d002eeefddc111cec8c044685a44acb68efd3a1f30702" + +[update] +[update.modrinth] +mod-id = "9eGKb6K1" +version = "GoKcaNn3" diff --git a/mods/smartbrainlib.pw.toml b/mods/smartbrainlib.pw.toml new file mode 100644 index 0000000..e2895a8 --- /dev/null +++ b/mods/smartbrainlib.pw.toml @@ -0,0 +1,13 @@ +name = "SmartBrainLib" +filename = "SmartBrainLib-fabric-1.20.1-1.15.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/PuyPazRT/versions/ft0ElRBl/SmartBrainLib-fabric-1.20.1-1.15.jar" +hash-format = "sha512" +hash = "3f009c5b75980ffcb155bad9a95a9dbdbc3bbd282760c00dd2d7115a88dbb61eb9083ee2fe5b29b348058f7216846079e73ccaa1ff5a6904e762aa3bdfacc736" + +[update] +[update.modrinth] +mod-id = "PuyPazRT" +version = "ft0ElRBl" diff --git a/mods/smooth-scroll.pw.toml b/mods/smooth-scroll.pw.toml new file mode 100644 index 0000000..85424db --- /dev/null +++ b/mods/smooth-scroll.pw.toml @@ -0,0 +1,13 @@ +name = "Smooth Scrolling" +filename = "smoothscroll-2.1.3.1+1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/CllP7wW0/versions/Fv16193b/smoothscroll-2.1.3.1%2B1.20.1.jar" +hash-format = "sha512" +hash = "a2996c9583a0b627c584a38ecb85d91c984bb6072b24aa65f934045f67445621587dbb0045cd0ac5a8f9b22b1d71d096f495c7f0eb20479f68661f594c16b018" + +[update] +[update.modrinth] +mod-id = "CllP7wW0" +version = "Fv16193b" diff --git a/mods/sn0wfrogscapybaras.pw.toml b/mods/sn0wfrogscapybaras.pw.toml new file mode 100644 index 0000000..7a5af80 --- /dev/null +++ b/mods/sn0wfrogscapybaras.pw.toml @@ -0,0 +1,13 @@ +name = "Sn0wfrog's Capybaras" +filename = "Sn0wfrog's Capybaras 1.1.0-mc1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/oCTFqcH2/versions/ueqkWwPD/Sn0wfrog%27s%20Capybaras%201.1.0-mc1.20.1.jar" +hash-format = "sha512" +hash = "f2604d1b2bd9c39e1c205e88c7511d66b6d7e25efdd3acf19519299221aa2dd10350ce71f30eb6348da8544689e7fff59b150a218da43f38a1b2252621c81219" + +[update] +[update.modrinth] +mod-id = "oCTFqcH2" +version = "ueqkWwPD" diff --git a/mods/snowball-and-egg-knockback.pw.toml b/mods/snowball-and-egg-knockback.pw.toml new file mode 100644 index 0000000..5db425b --- /dev/null +++ b/mods/snowball-and-egg-knockback.pw.toml @@ -0,0 +1,13 @@ +name = "Snowball and Egg Knockback" +filename = "snowballkb-1.3-1.20.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/lTnCsKKt/versions/iVM1vVVL/snowballkb-1.3-1.20.jar" +hash-format = "sha512" +hash = "105879636618305a7d7d7622d1fe0b5f406f241dd79969a54f37252eeb68102171cb604ad4fa0beb724ab42ba0cf425697387205a19acb50901b9b1d871f2794" + +[update] +[update.modrinth] +mod-id = "lTnCsKKt" +version = "iVM1vVVL" diff --git a/mods/snowy-spirit.pw.toml b/mods/snowy-spirit.pw.toml new file mode 100644 index 0000000..fa5ce8c --- /dev/null +++ b/mods/snowy-spirit.pw.toml @@ -0,0 +1,13 @@ +name = "Snowy Spirit" +filename = "snowyspirit-1.20-3.0.10-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/UiFDlI7w/versions/yGrKC4Ka/snowyspirit-1.20-3.0.10-fabric.jar" +hash-format = "sha512" +hash = "f40f5fcf91ed10dff3dfdb01d02e87a725cfa69f522117c49d095173c46a96e43184f6029cedd60d3c4744002b7e85e8bf7ce9f285dcde5d5e702c10a40a1cab" + +[update] +[update.modrinth] +mod-id = "UiFDlI7w" +version = "yGrKC4Ka" diff --git a/mods/sodium-extra.pw.toml b/mods/sodium-extra.pw.toml new file mode 100644 index 0000000..a993424 --- /dev/null +++ b/mods/sodium-extra.pw.toml @@ -0,0 +1,13 @@ +name = "Sodium Extra" +filename = "sodium-extra-0.5.4+mc1.20.1-build.115.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/PtjYWJkn/versions/I7ggF6B5/sodium-extra-0.5.4%2Bmc1.20.1-build.115.jar" +hash-format = "sha512" +hash = "ab561186421776d0db506dcbf1a724f80b345be5769ff00aa4327161c79af6e3f353eb65345ce06da30546ffa6b43e1c4a4c41dd246b7e473b131fd727997a85" + +[update] +[update.modrinth] +mod-id = "PtjYWJkn" +version = "I7ggF6B5" diff --git a/mods/sodium-shadowy-path-blocks.pw.toml b/mods/sodium-shadowy-path-blocks.pw.toml new file mode 100644 index 0000000..f02b67d --- /dev/null +++ b/mods/sodium-shadowy-path-blocks.pw.toml @@ -0,0 +1,13 @@ +name = "Sodium Shadowy Path Blocks" +filename = "sodium-shadowy-path-blocks-3.4.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/EIa1eiMm/versions/jPiQnJVA/sodium-shadowy-path-blocks-3.4.1.jar" +hash-format = "sha512" +hash = "70fa3cd67ff8f7c86cb2b8c76d64be4385a0dcc385cb77bb2e901b86063dd8f02bb80b54167289fc21c80dee3b4ee05ba8719aaa9b107079ffb0c2dee476ab33" + +[update] +[update.modrinth] +mod-id = "EIa1eiMm" +version = "jPiQnJVA" diff --git a/mods/sodium.pw.toml b/mods/sodium.pw.toml new file mode 100644 index 0000000..47b04e9 --- /dev/null +++ b/mods/sodium.pw.toml @@ -0,0 +1,13 @@ +name = "Sodium" +filename = "sodium-fabric-0.5.11+mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/AANobbMI/versions/ygf8cVZg/sodium-fabric-0.5.11%2Bmc1.20.1.jar" +hash-format = "sha512" +hash = "628129702e830fe88d79f0b87ef0591b708fb39045ce3d985703d6a3a78c30c9beb518df8e70151e55ca6c82d9274fea904c016f60085d889a4f7ac431cccd9e" + +[update] +[update.modrinth] +mod-id = "AANobbMI" +version = "ygf8cVZg" diff --git a/mods/sound-physics-remastered.pw.toml b/mods/sound-physics-remastered.pw.toml new file mode 100644 index 0000000..66b99b7 --- /dev/null +++ b/mods/sound-physics-remastered.pw.toml @@ -0,0 +1,13 @@ +name = "Sound Physics Remastered" +filename = "sound-physics-remastered-fabric-1.20.1-1.4.8.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/qyVF9oeo/versions/hxEab3Tk/sound-physics-remastered-fabric-1.20.1-1.4.8.jar" +hash-format = "sha512" +hash = "30250302b2e565a402edf7e6eac35dfbb2cb2866b402bad35f83b2004736feecf4e1cddf4be2c6f2b894108d5c0a0516c7df1aa791577ea5dcfe4440dfcc0bb7" + +[update] +[update.modrinth] +mod-id = "qyVF9oeo" +version = "hxEab3Tk" diff --git a/mods/spark.pw.toml b/mods/spark.pw.toml new file mode 100644 index 0000000..7f62a96 --- /dev/null +++ b/mods/spark.pw.toml @@ -0,0 +1,13 @@ +name = "spark" +filename = "spark-1.10.53-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/l6YH9Als/versions/XGW2fviP/spark-1.10.53-fabric.jar" +hash-format = "sha512" +hash = "ce6e8f7071bb37369ad3e90d844926b424e82d0fe0ffd0db7058abddc9cfcdd594e145c9395677ad70ec532f3da0b23b6862d1f1c20f7600263c215abb4fcea7" + +[update] +[update.modrinth] +mod-id = "l6YH9Als" +version = "XGW2fviP" diff --git a/mods/sparsestructures.pw.toml b/mods/sparsestructures.pw.toml new file mode 100644 index 0000000..e4df36f --- /dev/null +++ b/mods/sparsestructures.pw.toml @@ -0,0 +1,13 @@ +name = "Sparse Structures" +filename = "sparsestructures-fabric-1.20.1-2.2.0.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/qwvI41y9/versions/RCqdXzHa/sparsestructures-fabric-1.20.1-2.2.0.jar" +hash-format = "sha512" +hash = "37e45ef14d2f353df8dbfc77890baa522da2c215b8556b03887632b3d57084553683003a3155b7ed6946b0eb6449f93525906e4dd296f37d5cbb3b52c00f0ccc" + +[update] +[update.modrinth] +mod-id = "qwvI41y9" +version = "RCqdXzHa" diff --git a/mods/spell-engine.pw.toml b/mods/spell-engine.pw.toml new file mode 100644 index 0000000..edd0f02 --- /dev/null +++ b/mods/spell-engine.pw.toml @@ -0,0 +1,13 @@ +name = "Spell Engine" +filename = "spell_engine-0.15.12+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/XvoWJaA2/versions/Fh2MJAAe/spell_engine-0.15.12%2B1.20.1.jar" +hash-format = "sha512" +hash = "cb5b4b26504b86b835e992da6e1e1ac0b10cc24604c4b5491aa739b29d15f61e100baa6769770861326622235a379ca3c48513dea25dbba44a7f853ba40d66c3" + +[update] +[update.modrinth] +mod-id = "XvoWJaA2" +version = "Fh2MJAAe" diff --git a/mods/spell-power.pw.toml b/mods/spell-power.pw.toml new file mode 100644 index 0000000..a19289c --- /dev/null +++ b/mods/spell-power.pw.toml @@ -0,0 +1,13 @@ +name = "Spell Power Attributes" +filename = "spell_power-0.12.0+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/8ooWzSQP/versions/G74msHHs/spell_power-0.12.0%2B1.20.1.jar" +hash-format = "sha512" +hash = "9c3b57ee5a7732031889cfbbf86fc9087f67aec89af851ca35e1c76ead94a990beb478b27e9641d0353bf863a68b232593e3368d167b42bd24357ff8d6ba0861" + +[update] +[update.modrinth] +mod-id = "8ooWzSQP" +version = "G74msHHs" diff --git a/mods/storage-delight.pw.toml b/mods/storage-delight.pw.toml new file mode 100644 index 0000000..96f568e --- /dev/null +++ b/mods/storage-delight.pw.toml @@ -0,0 +1,13 @@ +name = "Storage Delight (for Farmer's Delight)" +filename = "storagedelight-24.12.15-1.20-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/LTTvOp5L/versions/PPscPglZ/storagedelight-24.12.15-1.20-fabric.jar" +hash-format = "sha512" +hash = "55fcf967ff3c76b4d6f173807945243175ea551bcc4cf3b559afa5b3b80901f5bdcc031e7c920744be08edc42fd1b3275da09d2865aa5036af0649d4fe0c3480" + +[update] +[update.modrinth] +mod-id = "LTTvOp5L" +version = "PPscPglZ" diff --git a/mods/structure-pool-api.pw.toml b/mods/structure-pool-api.pw.toml new file mode 100644 index 0000000..8e42e01 --- /dev/null +++ b/mods/structure-pool-api.pw.toml @@ -0,0 +1,13 @@ +name = "Structure Pool API" +filename = "structure_pool_api-1.0+1.20.1.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/LrYZi08Q/versions/Syp6lSTL/structure_pool_api-1.0%2B1.20.1.jar" +hash-format = "sha512" +hash = "1436abdff001eb90e86ca69601f022e97708878395964300d50c6afbbb63d4bca030e99062faeaed692cdbf3f7476cc6f422e039091b3d453008e3bcf98a8e71" + +[update] +[update.modrinth] +mod-id = "LrYZi08Q" +version = "Syp6lSTL" diff --git a/mods/styled-chat.pw.toml b/mods/styled-chat.pw.toml new file mode 100644 index 0000000..8d3c445 --- /dev/null +++ b/mods/styled-chat.pw.toml @@ -0,0 +1,13 @@ +name = "Styled Chat" +filename = "styled-chat-2.2.3+1.20.1.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/doqSKB0e/versions/7dmapSQA/styled-chat-2.2.3%2B1.20.1.jar" +hash-format = "sha512" +hash = "8f9396389c6d30befb7986c72ca22c92373c9c6d856af1544f62a13ced437657b8f5371adb916f83f0521c8d606e2f8839106c2d60b6b8acaea39f4df912a17b" + +[update] +[update.modrinth] +mod-id = "doqSKB0e" +version = "7dmapSQA" diff --git a/mods/styled-nicknames.pw.toml b/mods/styled-nicknames.pw.toml new file mode 100644 index 0000000..60ceb5f --- /dev/null +++ b/mods/styled-nicknames.pw.toml @@ -0,0 +1,13 @@ +name = "Styled Nicknames" +filename = "styled-nicknames-1.2.1+1.20.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/DOk6Gcdi/versions/9k8RQJkW/styled-nicknames-1.2.1%2B1.20.jar" +hash-format = "sha512" +hash = "7b2ee0d4d03fd2f5463baa5eb83b2781f86b061811db52b27126a92c6bf4dac177e5e149e04473b42774a49693ffa976e9626c9feef2429870e0f565cedaa176" + +[update] +[update.modrinth] +mod-id = "DOk6Gcdi" +version = "9k8RQJkW" diff --git a/mods/styledplayerlist.pw.toml b/mods/styledplayerlist.pw.toml new file mode 100644 index 0000000..f08dd48 --- /dev/null +++ b/mods/styledplayerlist.pw.toml @@ -0,0 +1,13 @@ +name = "Styled Player List" +filename = "styledplayerlist-3.1.1+1.20.1.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/DQIfKUHf/versions/4FqvobxB/styledplayerlist-3.1.1%2B1.20.1.jar" +hash-format = "sha512" +hash = "b8258b3d54cc22a9b9203f176f5c2c4e88168cbbcf9654094acb870ccb30c6bc2849b2c7c4bfee87e7c02aec87e7903b437f19ef68c87b874178ac88394ec2dd" + +[update] +[update.modrinth] +mod-id = "DQIfKUHf" +version = "4FqvobxB" diff --git a/mods/superb-steeds.pw.toml b/mods/superb-steeds.pw.toml new file mode 100644 index 0000000..8201889 --- /dev/null +++ b/mods/superb-steeds.pw.toml @@ -0,0 +1,13 @@ +name = "Superb Steeds" +filename = "superbsteeds-1.20-4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/UIZkbR3j/versions/Lac9HjXE/superbsteeds-1.20-4.jar" +hash-format = "sha512" +hash = "bf13d5bc13d34c0934607695a36041ca82e8bbbefd2ed477e2b07f0af4534009cf33942b5227e012e98f46acc78cff695581d8bfec710986993a36b954facaed" + +[update] +[update.modrinth] +mod-id = "UIZkbR3j" +version = "Lac9HjXE" diff --git a/mods/supermartijn642s-config-lib.pw.toml b/mods/supermartijn642s-config-lib.pw.toml new file mode 100644 index 0000000..f608c5b --- /dev/null +++ b/mods/supermartijn642s-config-lib.pw.toml @@ -0,0 +1,13 @@ +name = "SuperMartijn642's Config Lib" +filename = "supermartijn642configlib-1.1.8a-fabric-mc1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/LN9BxssP/versions/Ur02nrUT/supermartijn642configlib-1.1.8a-fabric-mc1.20.jar" +hash-format = "sha512" +hash = "bccd2d3e55a70c7d4c1aedaa9e85d6d0039e982ebdab40bc2aeba4b27a5112859f7a05c342c3c9575ff5d8ced769d1feffb104ecdd4d19cac8afba9ea2017c52" + +[update] +[update.modrinth] +mod-id = "LN9BxssP" +version = "Ur02nrUT" diff --git a/mods/supplementaries-squared.pw.toml b/mods/supplementaries-squared.pw.toml new file mode 100644 index 0000000..365adf0 --- /dev/null +++ b/mods/supplementaries-squared.pw.toml @@ -0,0 +1,13 @@ +name = "Supplementaries Squared" +filename = "suppsquared-1.20-1.1.18-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/dCCkNFwE/versions/mGMTqQ8g/suppsquared-1.20-1.1.18-fabric.jar" +hash-format = "sha512" +hash = "8a2534cc69071d9aa543a2c2db9aafb374168ceb0a9c97c427352eac81d834b34f13b09b6ac98c19e9216cdd9fd90385d27db9df49ade4863fa9df93e293a506" + +[update] +[update.modrinth] +mod-id = "dCCkNFwE" +version = "mGMTqQ8g" diff --git a/mods/supplementaries.pw.toml b/mods/supplementaries.pw.toml new file mode 100644 index 0000000..f74be5a --- /dev/null +++ b/mods/supplementaries.pw.toml @@ -0,0 +1,13 @@ +name = "Supplementaries" +filename = "supplementaries-1.20-3.1.10-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fFEIiSDQ/versions/SFY0zXug/supplementaries-1.20-3.1.10-fabric.jar" +hash-format = "sha512" +hash = "2c0c2308d917818c1bc177fe1ae1028e3878c992842ddaa9e1dad306e59b280a2af9c09834ac059c6cf8c30dbea037c16fb2686afdfc990e6de971b1db7cc8f0" + +[update] +[update.modrinth] +mod-id = "fFEIiSDQ" +version = "SFY0zXug" diff --git a/mods/surveyor.pw.toml b/mods/surveyor.pw.toml new file mode 100644 index 0000000..a7c6eb9 --- /dev/null +++ b/mods/surveyor.pw.toml @@ -0,0 +1,13 @@ +name = "Surveyor Map Framework" +filename = "surveyor-0.6.25+1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/4KjqhPc9/versions/LsmOscmT/surveyor-0.6.25%2B1.20.jar" +hash-format = "sha512" +hash = "4d703a7d9c34c6f91e883695516cf0ba71707b4016d1a91a298bbcdd75235f23d9f1c73a31ef3bc703f209732bacbd499a20553e600b3c5c76a6eae655b7dcfc" + +[update] +[update.modrinth] +mod-id = "4KjqhPc9" +version = "LsmOscmT" diff --git a/mods/sushi-bar.pw.toml b/mods/sushi-bar.pw.toml new file mode 100644 index 0000000..189702a --- /dev/null +++ b/mods/sushi-bar.pw.toml @@ -0,0 +1,13 @@ +name = "Sushi Bar" +filename = "sushi_bar-0.2.2+1.20.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/tr2Mv6ke/versions/jr9lc3k8/sushi_bar-0.2.2%2B1.20.jar" +hash-format = "sha512" +hash = "d8619fe5e575e62eca86e898569df122eb5002914167cf75d7d61f17633ead9e3c6b4b7a3b00d2336964b21f299f653459fc1964440f6ad2d36011be5dc72889" + +[update] +[update.modrinth] +mod-id = "tr2Mv6ke" +version = "jr9lc3k8" diff --git a/mods/symbol-chat.pw.toml b/mods/symbol-chat.pw.toml new file mode 100644 index 0000000..16ba75b --- /dev/null +++ b/mods/symbol-chat.pw.toml @@ -0,0 +1,13 @@ +name = "Symbol Chat" +filename = "symbol-chat-1.20.1-1.1.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/NKvLVQMc/versions/rOpMKADU/symbol-chat-1.20.1-1.1.2.jar" +hash-format = "sha512" +hash = "61ddc70ff2ef5a651c0d8aa7d74f2190c61e5a8d607dc837f475f82ae7c3b9d9d66b1630f128f32324e222cedbc77a55fe681d7eb44b276640f85610be0280db" + +[update] +[update.modrinth] +mod-id = "NKvLVQMc" +version = "rOpMKADU" diff --git a/mods/tcdcommons.pw.toml b/mods/tcdcommons.pw.toml new file mode 100644 index 0000000..ae61a29 --- /dev/null +++ b/mods/tcdcommons.pw.toml @@ -0,0 +1,13 @@ +name = "TCDCommons API" +filename = "tcdcommons-3.12.3+fabric-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Eldc1g37/versions/Gob4d0A8/tcdcommons-3.12.3%2Bfabric-1.20.1.jar" +hash-format = "sha512" +hash = "0a9319722c2a2786f34876c37c1c8c3f801feeb80220849f6487c33b96ae139e0f8f38ca8ffd94b6c90c1ff6afa8bee96cfcfe0c22747f162ff17bafe1993fc0" + +[update] +[update.modrinth] +mod-id = "Eldc1g37" +version = "Gob4d0A8" diff --git a/mods/tectonic.pw.toml b/mods/tectonic.pw.toml new file mode 100644 index 0000000..4edbaf8 --- /dev/null +++ b/mods/tectonic.pw.toml @@ -0,0 +1,13 @@ +name = "Tectonic" +filename = "tectonic-fabric-1.20.1-2.4.1b.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/lWDHr9jE/versions/8JhzXwo0/tectonic-fabric-1.20.1-2.4.1b.jar" +hash-format = "sha512" +hash = "baa9c26d6af9cb902be8dd2a850f0f4229e2ed44cc3c3be83e4f6d8e977b3b8bdbf341436aa247b57585f1ad43f6ecf42c7268d30c015da12ae6d991f3927227" + +[update] +[update.modrinth] +mod-id = "lWDHr9jE" +version = "8JhzXwo0" diff --git a/mods/terrablender.pw.toml b/mods/terrablender.pw.toml new file mode 100644 index 0000000..394c6df --- /dev/null +++ b/mods/terrablender.pw.toml @@ -0,0 +1,13 @@ +name = "TerraBlender" +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-format = "sha512" +hash = "9ce4ae5f64661b2ab52e2a62636bc0fcd023bb304e84b8e1dbef9461a1c6ea1fee187d8afc54618743c9e6155fb64e926a326e3fcf33a566f31c82214810e69e" + +[update] +[update.modrinth] +mod-id = "kkmrDlKT" +version = "FZV63yhg" diff --git a/mods/terralith-andesite-patch.pw.toml b/mods/terralith-andesite-patch.pw.toml new file mode 100644 index 0000000..a191f9a --- /dev/null +++ b/mods/terralith-andesite-patch.pw.toml @@ -0,0 +1,13 @@ +name = "Terralith andesite patch" +filename = "Terralith_andesite_patch.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/P4PAsklC/versions/n22gCKB8/Terralith_andesite_patch.jar" +hash-format = "sha512" +hash = "510254ea8b57963d6e742c3d1971c6eb6f1ba275936f4138483018a07d54a162f157ab8dd970facd14b7d8c03301a96d2a6e27fe9bc80ec98e33bf2db120f950" + +[update] +[update.modrinth] +mod-id = "P4PAsklC" +version = "n22gCKB8" diff --git a/mods/terralith.pw.toml b/mods/terralith.pw.toml new file mode 100644 index 0000000..317aa93 --- /dev/null +++ b/mods/terralith.pw.toml @@ -0,0 +1,13 @@ +name = "Terralith" +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-format = "sha512" +hash = "885e171d8b34aae7e142f082d0364285ec5a8e8342f11c60d341f7a94083d5a42c4e30612fe4f9f64d57b484396a3dff3a224e2a2497d4ced8d22f2ad6cd561d" + +[update] +[update.modrinth] +mod-id = "8oi3bsk5" +version = "WeYhEb5d" diff --git a/mods/tide.pw.toml b/mods/tide.pw.toml new file mode 100644 index 0000000..17d858b --- /dev/null +++ b/mods/tide.pw.toml @@ -0,0 +1,13 @@ +name = "Tide" +filename = "Tide-fabric-1.20.1-1.4.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/die1AF7i/versions/8stzKo79/Tide-fabric-1.20.1-1.4.1.jar" +hash-format = "sha512" +hash = "15597047fc8166bbc86210e9c680604a3166c1688cec172a372105a1d9406d78a982df771174a849490a7b4eaa018ee159a100d1070deb8382f87619cd5ebdba" + +[update] +[update.modrinth] +mod-id = "die1AF7i" +version = "8stzKo79" diff --git a/mods/tinkerers-smithing.pw.toml b/mods/tinkerers-smithing.pw.toml new file mode 100644 index 0000000..acd01c3 --- /dev/null +++ b/mods/tinkerers-smithing.pw.toml @@ -0,0 +1,13 @@ +name = "Tinkerer's Smithing" +filename = "tinkerers-smithing-2.7.0+1.20.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/RhVpNN5O/versions/gzDgfk8I/tinkerers-smithing-2.7.0%2B1.20.jar" +hash-format = "sha512" +hash = "1844cafeec93ca964b3aecd0ea64f1daa2ed41b2f375f02914438b6a2777749728bef1b840d09fea92c5b2bf89f45ca32b29f3de1475fe476c8e986bf7c88e93" + +[update] +[update.modrinth] +mod-id = "RhVpNN5O" +version = "gzDgfk8I" diff --git a/mods/tips.pw.toml b/mods/tips.pw.toml new file mode 100644 index 0000000..9993958 --- /dev/null +++ b/mods/tips.pw.toml @@ -0,0 +1,13 @@ +name = "Tips" +filename = "Tips-Fabric-1.20.1-12.1.8.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/AMCbgyVw/versions/uq5F0GNj/Tips-Fabric-1.20.1-12.1.8.jar" +hash-format = "sha512" +hash = "1214cbee2afc40535130870002ff04e6455c993ae2f0ddf5481e1c9fccb305469186c677142f8e1244c6141e262a01636c7139203d91d8381e2509cc82c01be8" + +[update] +[update.modrinth] +mod-id = "AMCbgyVw" +version = "uq5F0GNj" diff --git a/mods/towns-and-towers.pw.toml b/mods/towns-and-towers.pw.toml new file mode 100644 index 0000000..f23edea --- /dev/null +++ b/mods/towns-and-towers.pw.toml @@ -0,0 +1,13 @@ +name = "Towns and Towers" +filename = "Towns-and-Towers-1.12-Fabric+Forge.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/DjLobEOy/versions/7ZwnSrVW/Towns-and-Towers-1.12-Fabric%2BForge.jar" +hash-format = "sha512" +hash = "ed734046c356bb996b628c2e0c47e64ba598c87016591fd77533069de68f27b8bfdcd2173d7d3db97f1981ebb806133c3d1751c330d539ade3d6c37ed2d5598f" + +[update] +[update.modrinth] +mod-id = "DjLobEOy" +version = "7ZwnSrVW" diff --git a/mods/treechop.pw.toml b/mods/treechop.pw.toml new file mode 100644 index 0000000..ddfa21b --- /dev/null +++ b/mods/treechop.pw.toml @@ -0,0 +1,13 @@ +name = "HT's TreeChop" +filename = "TreeChop-1.20.1-fabric-0.19.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/gHoB7SHO/versions/tIdTnzkf/TreeChop-1.20.1-fabric-0.19.0.jar" +hash-format = "sha512" +hash = "f483b3884b22203d29a3637b74bd4524267e23956ab02f86074653a3530d2b8a550004013f5986e123f9c1ebe66b6feaa2a31433ae4a0eae0fd1ca9df07c3958" + +[update] +[update.modrinth] +mod-id = "gHoB7SHO" +version = "tIdTnzkf" diff --git a/mods/trinkets.pw.toml b/mods/trinkets.pw.toml new file mode 100644 index 0000000..6fb5475 --- /dev/null +++ b/mods/trinkets.pw.toml @@ -0,0 +1,13 @@ +name = "Trinkets" +filename = "trinkets-3.7.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/5aaWibi9/versions/AHxQGtuC/trinkets-3.7.2.jar" +hash-format = "sha512" +hash = "bedf97c87c5e556416410267108ad358b32806448be24ef8ae1a79ac63b78b48b9c851c00c845b8aedfc7805601385420716b9e65326fdab21340e8ba3cc4274" + +[update] +[update.modrinth] +mod-id = "5aaWibi9" +version = "AHxQGtuC" diff --git a/mods/ubes-delight.pw.toml b/mods/ubes-delight.pw.toml new file mode 100644 index 0000000..6f1be75 --- /dev/null +++ b/mods/ubes-delight.pw.toml @@ -0,0 +1,13 @@ +name = "Ube's Delight" +filename = "ubesdelight-fabric-1.20.1-0.2.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/PYjpoAys/versions/c2ubCIDG/ubesdelight-fabric-1.20.1-0.2.3.jar" +hash-format = "sha512" +hash = "eb5375b4c0c86c118f9e1a3110cbde3df9fc196a49b17a36b524daf1e06355ecbc69cb9a348741656cc953b21d0c2fa19361877be41df3cf3655f97f7cbb9910" + +[update] +[update.modrinth] +mod-id = "PYjpoAys" +version = "c2ubCIDG" diff --git a/mods/village-healthcare.pw.toml b/mods/village-healthcare.pw.toml new file mode 100644 index 0000000..79a4869 --- /dev/null +++ b/mods/village-healthcare.pw.toml @@ -0,0 +1,13 @@ +name = "Village Healthcare" +filename = "VillageHealthcare-1.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/j23NprwL/versions/8DodHkWU/VillageHealthcare-1.0.0.jar" +hash-format = "sha512" +hash = "8cc0ccffa28cca416b5ecaf0dabd5babd7b2cfc7dc41c1b2d991d2bfec1b9d12ca6c3a4a01c1f576d79a5622930e8c395a6575708ce00817017d12a64dd580f2" + +[update] +[update.modrinth] +mod-id = "j23NprwL" +version = "8DodHkWU" diff --git a/mods/villager-transportation.pw.toml b/mods/villager-transportation.pw.toml new file mode 100644 index 0000000..a157077 --- /dev/null +++ b/mods/villager-transportation.pw.toml @@ -0,0 +1,13 @@ +name = "Villager Transportation" +filename = "villager-transportation-1.3.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/vLUPqRLH/versions/c6BtwQYg/villager-transportation-1.3.1.jar" +hash-format = "sha512" +hash = "3bf795632dbb2ef1665bc44d8c38433d2ee622bb61236570f202e352d48badc6d9697d071b3c895a3b9e083b095a7f106b182ae7cd3041f83b645799995232e6" + +[update] +[update.modrinth] +mod-id = "vLUPqRLH" +version = "c6BtwQYg" diff --git a/mods/visual-workbench.pw.toml b/mods/visual-workbench.pw.toml new file mode 100644 index 0000000..6deb8fd --- /dev/null +++ b/mods/visual-workbench.pw.toml @@ -0,0 +1,13 @@ +name = "Visual Workbench" +filename = "VisualWorkbench-v8.0.0-1.20.1-Fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/kfqD1JRw/versions/vhuwOiNO/VisualWorkbench-v8.0.0-1.20.1-Fabric.jar" +hash-format = "sha512" +hash = "4f72d41398adeff00ae6228088fe2540668711b432b36e8f7e24c0dcdbca9a233974e194feab29154cd3fcd941aa977b10b82d8dfb7205f42e3d7d209a224485" + +[update] +[update.modrinth] +mod-id = "kfqD1JRw" +version = "vhuwOiNO" diff --git a/mods/voice-chat-interaction.pw.toml b/mods/voice-chat-interaction.pw.toml new file mode 100644 index 0000000..7427603 --- /dev/null +++ b/mods/voice-chat-interaction.pw.toml @@ -0,0 +1,13 @@ +name = "Voice Chat Interaction" +filename = "vcinteraction-fabric-1.20.1-1.0.6.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/qsSP2ZZ0/versions/LX0uNyw4/vcinteraction-fabric-1.20.1-1.0.6.jar" +hash-format = "sha512" +hash = "aaf799e4a0ab02f907538b5afb762b161d581904d98d41e9dc166005eab89dc5b0a489b5fe29c12f7e2285daec7ba2329711a7104a6a2d712d3a9fb25a0aaaf8" + +[update] +[update.modrinth] +mod-id = "qsSP2ZZ0" +version = "LX0uNyw4" diff --git a/mods/what-are-they-up-to.pw.toml b/mods/what-are-they-up-to.pw.toml new file mode 100644 index 0000000..7a10594 --- /dev/null +++ b/mods/what-are-they-up-to.pw.toml @@ -0,0 +1,13 @@ +name = "What Are They Up To (Watut)" +filename = "watut-fabric-1.20.1-1.1.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/AtB5mHky/versions/YALpdzXL/watut-fabric-1.20.1-1.1.3.jar" +hash-format = "sha512" +hash = "3a1bcd4eb1aa5aa61a7928a07acab8fd675e93ef193630baf6b8d7d1fdf2a4fee8b9c3dd897738f9fc00f085b16cfcb22399c9bd5b74a50019cff1fb2219d565" + +[update] +[update.modrinth] +mod-id = "AtB5mHky" +version = "YALpdzXL" diff --git a/mods/what-the-bucket.pw.toml b/mods/what-the-bucket.pw.toml new file mode 100644 index 0000000..1688869 --- /dev/null +++ b/mods/what-the-bucket.pw.toml @@ -0,0 +1,13 @@ +name = "What The Bucket" +filename = "WhatTheBucket-Fabric-1.20.1-11.0.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/zUxYvzMP/versions/nQlMahK0/WhatTheBucket-Fabric-1.20.1-11.0.3.jar" +hash-format = "sha512" +hash = "41020359fec29ad848dd844f60a113dee43885e4d9d628a98a3b516a4397ca81424ecc9bb445af50cd75c270b92e3b0341c2d1ba362a1200537f5ef67d7241d7" + +[update] +[update.modrinth] +mod-id = "zUxYvzMP" +version = "nQlMahK0" diff --git a/mods/wizards.pw.toml b/mods/wizards.pw.toml new file mode 100644 index 0000000..9edba08 --- /dev/null +++ b/mods/wizards.pw.toml @@ -0,0 +1,13 @@ +name = "Wizards (RPG Series)" +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-format = "sha512" +hash = "44a4c9f7d6d48fd3981178a8a4bb78e1ac6b30f05bc1cd1ed238562f67aec7b5a017435ef79773a5424c6f128322d231264e9996218b4435ce4750d68a63e7c8" + +[update] +[update.modrinth] +mod-id = "NkGaQMDA" +version = "hMGphtUf" diff --git a/mods/yacl.pw.toml b/mods/yacl.pw.toml new file mode 100644 index 0000000..0961a9b --- /dev/null +++ b/mods/yacl.pw.toml @@ -0,0 +1,13 @@ +name = "YetAnotherConfigLib (YACL)" +filename = "YetAnotherConfigLib-3.6.2+1.20.1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/1eAoo2KR/versions/yDSgD8Iz/YetAnotherConfigLib-3.6.2%2B1.20.1-fabric.jar" +hash-format = "sha512" +hash = "f155e42f9af56e552b422fe8906331366de0c957f2bf3910820bc6531980ce9004fe61e61f2b7860fe56ceb63da4cac84a807f8017e309cc3fe01c2f1ef8d031" + +[update] +[update.modrinth] +mod-id = "1eAoo2KR" +version = "yDSgD8Iz" diff --git a/mods/you-shall-not-spawn.pw.toml b/mods/you-shall-not-spawn.pw.toml new file mode 100644 index 0000000..78efb3b --- /dev/null +++ b/mods/you-shall-not-spawn.pw.toml @@ -0,0 +1,13 @@ +name = "You Shall Not Spawn!" +filename = "YouShallNotSpawn-fabric-1.20.x-2.0.2.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/EjXcpmEA/versions/2CpnF7bC/YouShallNotSpawn-fabric-1.20.x-2.0.2.jar" +hash-format = "sha512" +hash = "a409e0040396da04a8ca2831dfe78dda05519ea8fc4d3ac7e076d04a2996e46d225ee1501cd7e5d10faf978a9a9eb2a92e12835f324825e30b2032735b8e8e48" + +[update] +[update.modrinth] +mod-id = "EjXcpmEA" +version = "2CpnF7bC" diff --git a/mods/yungs-api.pw.toml b/mods/yungs-api.pw.toml new file mode 100644 index 0000000..d9f7866 --- /dev/null +++ b/mods/yungs-api.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's API" +filename = "YungsApi-1.20-Fabric-4.0.6.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Ua7DFN59/versions/lscV1N5k/YungsApi-1.20-Fabric-4.0.6.jar" +hash-format = "sha512" +hash = "90fea70f21cd09bdeefe9cb6bd23677595b32156b1b8053611449504ba84a21ee1e13e5a620851299090ce989f41b97b9b4bdc98def1ccecb33115e19553c64e" + +[update] +[update.modrinth] +mod-id = "Ua7DFN59" +version = "lscV1N5k" diff --git a/mods/yungs-better-desert-temples.pw.toml b/mods/yungs-better-desert-temples.pw.toml new file mode 100644 index 0000000..16aaf59 --- /dev/null +++ b/mods/yungs-better-desert-temples.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's Better Desert Temples" +filename = "YungsBetterDesertTemples-1.20-Fabric-3.0.3.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/XNlO7sBv/versions/1Z9HNWpj/YungsBetterDesertTemples-1.20-Fabric-3.0.3.jar" +hash-format = "sha512" +hash = "29839615e042435b0fdacab2b97524a6689190692a289c25e305dbaec34764f38e70c65cfd77b49ac0dcc549281b61cfe244edc62809082e39db54990ef84cbf" + +[update] +[update.modrinth] +mod-id = "XNlO7sBv" +version = "1Z9HNWpj" diff --git a/mods/yungs-better-dungeons.pw.toml b/mods/yungs-better-dungeons.pw.toml new file mode 100644 index 0000000..0812caf --- /dev/null +++ b/mods/yungs-better-dungeons.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's Better Dungeons" +filename = "YungsBetterDungeons-1.20-Fabric-4.0.4.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/o1C1Dkj5/versions/nidyvq2m/YungsBetterDungeons-1.20-Fabric-4.0.4.jar" +hash-format = "sha512" +hash = "02ee00641aea2e80806923c1d97a366b82eb6d6e1d749fc8fb4eeddeddea718c08f5a87ba5189427f747801b899abe5a6138a260c7e7f949e5e69b4065ac5464" + +[update] +[update.modrinth] +mod-id = "o1C1Dkj5" +version = "nidyvq2m" diff --git a/mods/yungs-better-jungle-temples.pw.toml b/mods/yungs-better-jungle-temples.pw.toml new file mode 100644 index 0000000..a572894 --- /dev/null +++ b/mods/yungs-better-jungle-temples.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's Better Jungle Temples" +filename = "YungsBetterJungleTemples-1.20-Fabric-2.0.5.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/z9Ve58Ih/versions/6LPrzuB0/YungsBetterJungleTemples-1.20-Fabric-2.0.5.jar" +hash-format = "sha512" +hash = "ea08ade714376f48cabdddd2e4b7376fc5cc5947e3911583ba4e182ab22c1335c884043441725cde21fb6e84402d17c43f509ade339d46a1a1db40f0e77ee81a" + +[update] +[update.modrinth] +mod-id = "z9Ve58Ih" +version = "6LPrzuB0" diff --git a/mods/yungs-better-mineshafts.pw.toml b/mods/yungs-better-mineshafts.pw.toml new file mode 100644 index 0000000..bd35ef0 --- /dev/null +++ b/mods/yungs-better-mineshafts.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's Better Mineshafts" +filename = "YungsBetterMineshafts-1.20-Fabric-4.0.4.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/HjmxVlSr/versions/qLnQnqXS/YungsBetterMineshafts-1.20-Fabric-4.0.4.jar" +hash-format = "sha512" +hash = "82d6e361ef403471beaaf2fa86964af541df167da56f53b820e5abfac693f63dd5d6c0aafbc9e9baa947b42a57c79f069ed6ede55e680a2523d2ca7f2e538b13" + +[update] +[update.modrinth] +mod-id = "HjmxVlSr" +version = "qLnQnqXS" diff --git a/mods/yungs-better-nether-fortresses.pw.toml b/mods/yungs-better-nether-fortresses.pw.toml new file mode 100644 index 0000000..35a78b4 --- /dev/null +++ b/mods/yungs-better-nether-fortresses.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's Better Nether Fortresses" +filename = "YungsBetterNetherFortresses-1.20-Fabric-2.0.6.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/Z2mXHnxP/versions/FL88RLRu/YungsBetterNetherFortresses-1.20-Fabric-2.0.6.jar" +hash-format = "sha512" +hash = "a752f0dea20fa86e6d3a4f87d180af706b2ad5e3d434185aaa624692fc55329a2e2e410e67f843ec982e7b90ae63565b4aed43adbee6c50ded403ef50d91d7fd" + +[update] +[update.modrinth] +mod-id = "Z2mXHnxP" +version = "FL88RLRu" diff --git a/mods/yungs-better-ocean-monuments.pw.toml b/mods/yungs-better-ocean-monuments.pw.toml new file mode 100644 index 0000000..11cbbce --- /dev/null +++ b/mods/yungs-better-ocean-monuments.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's Better Ocean Monuments" +filename = "YungsBetterOceanMonuments-1.20-Fabric-3.0.4.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/3dT9sgt4/versions/4c00pjbt/YungsBetterOceanMonuments-1.20-Fabric-3.0.4.jar" +hash-format = "sha512" +hash = "b050f94b70628f9cb64afe1d184b3fd5eee4a7d556ff81b05dd90e954484c415b24b235a8471085cbba2e28a1123e49de9a16e6e7bc52da585db81762562f186" + +[update] +[update.modrinth] +mod-id = "3dT9sgt4" +version = "4c00pjbt" diff --git a/mods/yungs-better-strongholds.pw.toml b/mods/yungs-better-strongholds.pw.toml new file mode 100644 index 0000000..98cd61f --- /dev/null +++ b/mods/yungs-better-strongholds.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's Better Strongholds" +filename = "YungsBetterStrongholds-1.20-Fabric-4.0.3.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/kidLKymU/versions/yV6hn0bB/YungsBetterStrongholds-1.20-Fabric-4.0.3.jar" +hash-format = "sha512" +hash = "e70c8daa91e88d8af97e99201264c9646c82a8cf1966b87ca1e53b591e7f1ed3cee2f8875dbe88f9b58e2a7d151fded34896bb4bd23f33f2bfef4c590fbba850" + +[update] +[update.modrinth] +mod-id = "kidLKymU" +version = "yV6hn0bB" diff --git a/mods/yungs-better-witch-huts.pw.toml b/mods/yungs-better-witch-huts.pw.toml new file mode 100644 index 0000000..5f9867b --- /dev/null +++ b/mods/yungs-better-witch-huts.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's Better Witch Huts" +filename = "YungsBetterWitchHuts-1.20-Fabric-3.0.3.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/t5FRdP87/versions/lYpHN3iF/YungsBetterWitchHuts-1.20-Fabric-3.0.3.jar" +hash-format = "sha512" +hash = "4182c4b580ac0446968d28561088807a5fc96c4ad792401bf918b2e693f7eb343237f2887d63121469af8a120c4ccc8c84d7add731ea1a45cb429f49092bd6ac" + +[update] +[update.modrinth] +mod-id = "t5FRdP87" +version = "lYpHN3iF" diff --git a/mods/yungs-bridges.pw.toml b/mods/yungs-bridges.pw.toml new file mode 100644 index 0000000..e09959d --- /dev/null +++ b/mods/yungs-bridges.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's Bridges" +filename = "YungsBridges-1.20-Fabric-4.0.3.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/Ht4BfYp6/versions/hvfjXu8d/YungsBridges-1.20-Fabric-4.0.3.jar" +hash-format = "sha512" +hash = "3cdd923781fe6446466670bce8132bbc0a1ee27ae9a76bb25bf0010c0e79c821ce1dc606405e3ffa00f22d92629aa1cd7cc680a17c98dfcf338166372b85dab1" + +[update] +[update.modrinth] +mod-id = "Ht4BfYp6" +version = "hvfjXu8d" diff --git a/mods/yungs-extras.pw.toml b/mods/yungs-extras.pw.toml new file mode 100644 index 0000000..7baba63 --- /dev/null +++ b/mods/yungs-extras.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's Extras" +filename = "YungsExtras-1.20-Fabric-4.0.3.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/ZYgyPyfq/versions/pfVTUz1L/YungsExtras-1.20-Fabric-4.0.3.jar" +hash-format = "sha512" +hash = "9fb06e136b12548ca9cb82d5d1035d760b74c7acded4b0d01ea29fb1e47c4666e1f289e6ce3e0c77510bc4bd10a64946e17633f99f60b5424a535d8d88025412" + +[update] +[update.modrinth] +mod-id = "ZYgyPyfq" +version = "pfVTUz1L" diff --git a/mods/yungs-menu-tweaks.pw.toml b/mods/yungs-menu-tweaks.pw.toml new file mode 100644 index 0000000..777b816 --- /dev/null +++ b/mods/yungs-menu-tweaks.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's Menu Tweaks" +filename = "YungsMenuTweaks-1.20.1-Fabric-1.0.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/Hcy2DFKF/versions/QRV0K267/YungsMenuTweaks-1.20.1-Fabric-1.0.2.jar" +hash-format = "sha512" +hash = "dabd072d735b802a1e62f62e8ce9b3276c931a16f6d4e160f77f31d511ebc368fa9a3580a70df8438739f86ad606e1d4e16b687b0953e5917bf9814ce5a8c930" + +[update] +[update.modrinth] +mod-id = "Hcy2DFKF" +version = "QRV0K267" diff --git a/mods/zoomify.pw.toml b/mods/zoomify.pw.toml new file mode 100644 index 0000000..b236fb1 --- /dev/null +++ b/mods/zoomify.pw.toml @@ -0,0 +1,13 @@ +name = "Zoomify" +filename = "Zoomify-2.11.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/w7ThoJFB/versions/gZr7EykF/Zoomify-2.11.2.jar" +hash-format = "sha512" +hash = "93b15012dab0e43a0ae4c32dc130e12baa4467c4d0a01a130f2a0fd8f8bf7ac5dd8b31660f98fb8124830f6b1e0e6973296251d614e4a85dfff30a5af4267ace" + +[update] +[update.modrinth] +mod-id = "w7ThoJFB" +version = "gZr7EykF" diff --git a/options.txt b/options.txt new file mode 100644 index 0000000..a4c9de7 --- /dev/null +++ b/options.txt @@ -0,0 +1,266 @@ +version:3465 +quilt_available_resource_packs:["vanilla","high_contrast","programmer_art","createfood/farmers_delight","railways/legacy_semaphore","railways/green_signals","createfood/rustic_delight","createfood/expanded_delight","minecraft/supporteatinganimation","itemswapper/classic","createfood/ubes_delight","createfood/cultural_delight","createfood/ends_delight","create/legacy_copper","itemswapper/default","createfood/farmers_respite","createfood/create","continuity/default","minecraft/estrogenprogrammerart","supplementaries/darker_ropes","immersive_weathering/visual_waxed_iron_items","seasons/seasonal_lush_caves","railways/legacy_palettes","elytratrims/legacy","continuity/glass_pane_culling_fix","minecraft/udsupporteatinganimation","resources/PixelTwemojiMC-9.zip","resources/what.zip","classic_icons","white_icons","black_icons","Moonlight Mods Dynamic Assets"] +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:0.5 +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:2 +particles:0 +maxFps:260 +graphicsMode:1 +ao:true +prioritizeChunkUpdates:0 +biomeBlendRadius:2 +renderClouds:"true" +resourcePacks:["minecraft/supporteatinganimation","itemswapper/default","seasons/seasonal_lush_caves","minecraft/udsupporteatinganimation"] +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:false +showAutosaveIndicator:true +allowServerListing:true +onlyShowSecureChat:false +panoramaScrollSpeed:1.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_key.estrogen.dash:key.keyboard.x +key_key.dynamic_fps.toggle_forced:key.keyboard.unknown +key_key.dynamic_fps.toggle_disabled:key.keyboard.unknown +key_key.perspectivemod.toggle:key.keyboard.f4 +key_key.itemswapper.itemswitcher:key.keyboard.r +key_key.itemswapper.openInventory:key.keyboard.unknown +key_treechop.key.toggle_chopping:key.keyboard.unknown +key_treechop.key.toggle_felling:key.keyboard.unknown +key_treechop.key.cycle_sneak_behavior:key.keyboard.unknown +key_treechop.key.open_settings_overlay:key.keyboard.n +key_key.replaymod.playeroverview:key.keyboard.b +key_key.replaymod.lighting:key.keyboard.z +key_key.replaymod.quickmode:key.keyboard.q +key_key.replaymod.settings:key.keyboard.unknown +key_key.replaymod.marker:key.keyboard.m +key_key.replaymod.thumbnail:key.keyboard.n +key_key.replaymod.playpause:key.keyboard.p +key_key.replaymod.rollclockwise:key.keyboard.l +key_key.replaymod.rollcounterclockwise:key.keyboard.j +key_key.replaymod.resettilt:key.keyboard.k +key_key.replaymod.pathpreview:key.keyboard.h +key_key.replaymod.keyframerepository:key.keyboard.x +key_key.replaymod.clearkeyframes:key.keyboard.c +key_key.replaymod.synctimeline:key.keyboard.v +key_key.replaymod.positionkeyframe:key.keyboard.i +key_key.replaymod.positiononlykeyframe:key.keyboard.unknown +key_key.replaymod.timekeyframe:key.keyboard.o +key_key.replaymod.bothkeyframes:key.keyboard.unknown +key_key.fog.toggle:key.keyboard.unknown +key_key.mousewheelie.open_config_screen:key.keyboard.unknown +key_key.mousewheelie.sort_inventory:key.mouse.middle +key_key.mousewheelie.scroll_up:key.amecsapi.mouse.scroll.up +key_key.mousewheelie.scroll_down:key.amecsapi.mouse.scroll.down +key_key.mousewheelie.pick_tool:key.keyboard.unknown +key_key.mousewheelie.whole_stack_modifier:key.keyboard.left.shift +key_key.mousewheelie.all_of_kind_modifier:key.keyboard.left.control +key_key.mousewheelie.drop_modifier:key.keyboard.left.alt +key_key.mousewheelie.deposit_modifier:key.keyboard.space +key_key.mousewheelie.restock_modifier:key.keyboard.space +key_supplementaries.keybind.quiver:key.keyboard.v +key_key.extraalchemy.magnetism_toggle:key.keyboard.n +key_key.extraalchemy.potion_bag_mode:key.keyboard.k +key_key.extraalchemy.toggle_extra_inv_rings:key.keyboard.y +key_key.entityculling.toggle:key.keyboard.unknown +key_orthocamera.key.toggle:key.keyboard.keypad.4 +key_orthocamera.key.scale_increase:key.keyboard.keypad.subtract +key_orthocamera.key.scale_decrease:key.keyboard.keypad.add +key_orthocamera.key.options:key.keyboard.unknown +key_orthocamera.key.fix_camera:key.keyboard.keypad.multiply +key_orthocamera.key.fixed_camera_rotate_up:key.keyboard.unknown +key_orthocamera.key.fixed_camera_rotate_down:key.keyboard.unknown +key_orthocamera.key.fixed_camera_rotate_left:key.keyboard.unknown +key_orthocamera.key.fixed_camera_rotate_right:key.keyboard.unknown +key_key.freecam.toggle:key.keyboard.f4 +key_key.freecam.playerControl:key.keyboard.unknown +key_key.freecam.tripodReset:key.keyboard.unknown +key_key.freecam.configGui:key.keyboard.unknown +key_key.do_a_barrel_roll.toggle_enabled:key.keyboard.i +key_key.do_a_barrel_roll.toggle_thrust:key.keyboard.unknown +key_key.do_a_barrel_roll.open_config:key.keyboard.unknown +key_key.do_a_barrel_roll.pitch_up:key.keyboard.unknown +key_key.do_a_barrel_roll.pitch_down:key.keyboard.unknown +key_key.do_a_barrel_roll.yaw_left:key.keyboard.a +key_key.do_a_barrel_roll.yaw_right:key.keyboard.d +key_key.do_a_barrel_roll.roll_left:key.keyboard.unknown +key_key.do_a_barrel_roll.roll_right:key.keyboard.unknown +key_key.do_a_barrel_roll.thrust_forward:key.keyboard.w +key_key.do_a_barrel_roll.thrust_backward:key.keyboard.unknown +key_Skip Forward:key.keyboard.unknown +key_Skip Previous:key.keyboard.unknown +key_Toggle Playing:key.keyboard.unknown +key_Toggle Craftify HUD:key.keyboard.unknown +key_create.keyinfo.toolmenu:key.keyboard.left.alt +key_create.keyinfo.toolbelt:key.keyboard.left.alt +key_create.keyinfo.ponder:key.keyboard.w +key_key.modmenu.open_menu:key.keyboard.unknown +key_tcdcommons.key.refresh_current_screen:key.keyboard.unknown +key_key.damageful.config_screen:key.keyboard.h +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.narrate:key.keyboard.keypad.5 +key_key.jade.show_details_alternative:key.keyboard.unknown +key_key.picohud.show:key.keyboard.left.alt +key_railways.keyinfo.bogey_menu:key.keyboard.left.alt +key_railways.keyinfo.cycle_menu:key.keyboard.left.alt +key_key.beansbackpacks.action:key.keyboard.unknown +key_key.beansbackpacks.inventory:key.keyboard.unknown +key_key.antique_atlas.open:key.keyboard.m +key_zoomify.key.zoom:key.keyboard.c +key_zoomify.key.zoom.secondary:key.keyboard.f6 +key_ping-wheel.key.ping-location:key.mouse.middle +key_ping-wheel.key.open-settings:key.keyboard.unknown +key_ping-wheel.key.name-labels:key.keyboard.left.alt +key_key.beetlebox.elytra_boost:key.keyboard.left.control +key_key.beetlebox.wall_climb:key.keyboard.j +key_key.beetlebox.bp_t_attack:key.keyboard.unknown +key_key.beetlebox.bp_t_flight:key.keyboard.unknown +key_key.beetlebox.bp_t_intake:key.keyboard.unknown +key_key.beetlebox.bp_open:key.keyboard.b +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.eugenes_horse_whistle.whistle:key.keyboard.h +key_key.createbigcannons.pitch_mode:key.keyboard.c +key_key.createbigcannons.fire_controlled_cannon:key.mouse.left +key_key.push_to_talk:key.mouse.5 +key_key.whisper:key.keyboard.unknown +key_key.mute_microphone:key.keyboard.unknown +key_key.disable_voice_chat:key.keyboard.n +key_key.hide_icons:key.keyboard.unknown +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.projectsavethepets.allowdamage:key.keyboard.unknown +key_iris.keybind.reload:key.keyboard.unknown +key_iris.keybind.toggleShaders:key.keyboard.k +key_iris.keybind.shaderPackSelection:key.keyboard.unknown +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..d188e90 --- /dev/null +++ b/pack.toml @@ -0,0 +1,13 @@ +name = "Vanilla Plus Plus" +author = "gabetoo & snedmore" +version = "1.0.0" +pack-format = "packwiz:1.1.0" + +[index] +file = "index.toml" +hash-format = "sha256" +hash = "798d2918dd133781ceac0a1c1e38526c6f88eaaa3e056aa0b5eba65e4db9a434" + +[versions] +minecraft = "1.20.1" +quilt = "0.27.1" diff --git a/servers.dat b/servers.dat new file mode 100644 index 0000000..dca85e1 Binary files /dev/null and b/servers.dat differ