From b83c1d7ab6a6a45c14372b0be2fbed6ed400f590 Mon Sep 17 00:00:00 2001 From: Jordy Goodridge Date: Sat, 25 May 2024 00:45:55 -0700 Subject: [PATCH] Initial commit --- .gitattributes | 2 + .gitignore | 8 + .packwizignore | 7 + config/allurement-common.toml | 158 ++ .../extra/config/notenoughanimations.json | 50 + .../defaultoptions/extra/config/xenon++.toml | 131 ++ .../extra/config/xenon-options.json | 30 + config/defaultoptions/keybindings.txt | 120 ++ config/defaultoptions/options.txt | 103 + config/everycomp-common.toml | 123 ++ config/mediumcore-common.toml | 20 + config/quark-common.toml | 1917 +++++++++++++++++ index.toml | 481 +++++ mods/advancement-frames.pw.toml | 13 + mods/advancement-plaques.pw.toml | 13 + mods/alexs-caves.pw.toml | 13 + mods/alexs-cloud-storage.pw.toml | 13 + mods/alexs-mediumcore.pw.toml | 13 + mods/alexs-mobs.pw.toml | 13 + mods/allurement!.pw.toml | 13 + mods/amendments.pw.toml | 13 + mods/appleskin.pw.toml | 13 + mods/architectury-api.pw.toml | 13 + mods/attributefix.pw.toml | 13 + mods/autumnity.pw.toml | 13 + mods/back-up-beds.pw.toml | 13 + mods/badpackets.pw.toml | 13 + mods/balm.pw.toml | 13 + mods/berry-good.pw.toml | 13 + mods/better-climbing.pw.toml | 13 + mods/blueprint.pw.toml | 13 + mods/boatload.pw.toml | 13 + mods/bookshelf-lib.pw.toml | 13 + mods/buzzier-bees.pw.toml | 13 + mods/catalogue.pw.toml | 13 + mods/chalk-mod.pw.toml | 13 + mods/citadel.pw.toml | 13 + mods/clayworks.pw.toml | 13 + mods/cloth-config.pw.toml | 13 + mods/clumps.pw.toml | 13 + mods/configured.pw.toml | 13 + mods/controlling.pw.toml | 13 + mods/default-options.pw.toml | 13 + mods/ding.pw.toml | 13 + mods/domestication-innovation.pw.toml | 13 + mods/emi-loot.pw.toml | 13 + mods/emi.pw.toml | 13 + mods/emitrades.pw.toml | 13 + mods/enchantment-descriptions.pw.toml | 13 + mods/enhanced-mushrooms.pw.toml | 13 + mods/every-compat.pw.toml | 13 + mods/exposure.pw.toml | 13 + mods/farmers-delight.pw.toml | 13 + mods/ferrite-core.pw.toml | 13 + mods/heartstone.pw.toml | 13 + mods/i-wanna-skate.pw.toml | 13 + mods/iceberg.pw.toml | 13 + mods/jade-addons-forge.pw.toml | 13 + mods/jade.pw.toml | 13 + mods/jei.pw.toml | 13 + ...st-enough-effect-descriptions-jeed.pw.toml | 13 + mods/just-enough-professions-jep.pw.toml | 13 + mods/just-enough-resources-jer.pw.toml | 13 + mods/justenoughbreeding.pw.toml | 13 + mods/local-looks.pw.toml | 13 + mods/lucent.pw.toml | 13 + mods/moonlight.pw.toml | 13 + mods/mouse-tweaks.pw.toml | 13 + mods/neapolitan.pw.toml | 13 + mods/no-chat-reports.pw.toml | 13 + mods/noisium.pw.toml | 13 + mods/not-enough-animations.pw.toml | 13 + mods/personality!.pw.toml | 13 + ...ade-secure-trading-between-players.pw.toml | 13 + mods/quark-oddities.pw.toml | 13 + mods/quark.pw.toml | 13 + mods/radium.pw.toml | 13 + mods/raised.pw.toml | 13 + mods/rats.pw.toml | 13 + mods/reef-redux.pw.toml | 13 + mods/rei.pw.toml | 13 + mods/retro-damage-indicators.pw.toml | 13 + ...ghly-enough-items-server-component.pw.toml | 13 + mods/roughly-enough-professions-rep.pw.toml | 13 + mods/searchables.pw.toml | 13 + mods/simple-voice-chat.pw.toml | 13 + mods/spark.pw.toml | 13 + mods/species.pw.toml | 13 + mods/structure-gel-api.pw.toml | 13 + mods/supplementaries-squared.pw.toml | 13 + mods/supplementaries.pw.toml | 13 + mods/the-conjurer.pw.toml | 13 + mods/transmog.pw.toml | 13 + mods/upgrade-aquatic.pw.toml | 13 + mods/waystones.pw.toml | 13 + mods/wits.pw.toml | 13 + mods/woodworks.pw.toml | 13 + mods/xenon-forge.pw.toml | 18 + mods/yungs-api.pw.toml | 13 + mods/yungs-menu-tweaks.pw.toml | 13 + mods/zeta.pw.toml | 13 + pack.toml | 14 + unsup.toml | 37 + 103 files changed, 4350 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .packwizignore create mode 100644 config/allurement-common.toml create mode 100644 config/defaultoptions/extra/config/notenoughanimations.json create mode 100644 config/defaultoptions/extra/config/xenon++.toml create mode 100644 config/defaultoptions/extra/config/xenon-options.json create mode 100644 config/defaultoptions/keybindings.txt create mode 100644 config/defaultoptions/options.txt create mode 100644 config/everycomp-common.toml create mode 100644 config/mediumcore-common.toml create mode 100644 config/quark-common.toml create mode 100644 index.toml create mode 100644 mods/advancement-frames.pw.toml create mode 100644 mods/advancement-plaques.pw.toml create mode 100644 mods/alexs-caves.pw.toml create mode 100644 mods/alexs-cloud-storage.pw.toml create mode 100644 mods/alexs-mediumcore.pw.toml create mode 100644 mods/alexs-mobs.pw.toml create mode 100644 mods/allurement!.pw.toml create mode 100644 mods/amendments.pw.toml create mode 100644 mods/appleskin.pw.toml create mode 100644 mods/architectury-api.pw.toml create mode 100644 mods/attributefix.pw.toml create mode 100644 mods/autumnity.pw.toml create mode 100644 mods/back-up-beds.pw.toml create mode 100644 mods/badpackets.pw.toml create mode 100644 mods/balm.pw.toml create mode 100644 mods/berry-good.pw.toml create mode 100644 mods/better-climbing.pw.toml create mode 100644 mods/blueprint.pw.toml create mode 100644 mods/boatload.pw.toml create mode 100644 mods/bookshelf-lib.pw.toml create mode 100644 mods/buzzier-bees.pw.toml create mode 100644 mods/catalogue.pw.toml create mode 100644 mods/chalk-mod.pw.toml create mode 100644 mods/citadel.pw.toml create mode 100644 mods/clayworks.pw.toml create mode 100644 mods/cloth-config.pw.toml create mode 100644 mods/clumps.pw.toml create mode 100644 mods/configured.pw.toml create mode 100644 mods/controlling.pw.toml create mode 100644 mods/default-options.pw.toml create mode 100644 mods/ding.pw.toml create mode 100644 mods/domestication-innovation.pw.toml create mode 100644 mods/emi-loot.pw.toml create mode 100644 mods/emi.pw.toml create mode 100644 mods/emitrades.pw.toml create mode 100644 mods/enchantment-descriptions.pw.toml create mode 100644 mods/enhanced-mushrooms.pw.toml create mode 100644 mods/every-compat.pw.toml create mode 100644 mods/exposure.pw.toml create mode 100644 mods/farmers-delight.pw.toml create mode 100644 mods/ferrite-core.pw.toml create mode 100644 mods/heartstone.pw.toml create mode 100644 mods/i-wanna-skate.pw.toml create mode 100644 mods/iceberg.pw.toml create mode 100644 mods/jade-addons-forge.pw.toml create mode 100644 mods/jade.pw.toml create mode 100644 mods/jei.pw.toml create mode 100644 mods/just-enough-effect-descriptions-jeed.pw.toml create mode 100644 mods/just-enough-professions-jep.pw.toml create mode 100644 mods/just-enough-resources-jer.pw.toml create mode 100644 mods/justenoughbreeding.pw.toml create mode 100644 mods/local-looks.pw.toml create mode 100644 mods/lucent.pw.toml create mode 100644 mods/moonlight.pw.toml create mode 100644 mods/mouse-tweaks.pw.toml create mode 100644 mods/neapolitan.pw.toml create mode 100644 mods/no-chat-reports.pw.toml create mode 100644 mods/noisium.pw.toml create mode 100644 mods/not-enough-animations.pw.toml create mode 100644 mods/personality!.pw.toml create mode 100644 mods/player-trade-secure-trading-between-players.pw.toml create mode 100644 mods/quark-oddities.pw.toml create mode 100644 mods/quark.pw.toml create mode 100644 mods/radium.pw.toml create mode 100644 mods/raised.pw.toml create mode 100644 mods/rats.pw.toml create mode 100644 mods/reef-redux.pw.toml create mode 100644 mods/rei.pw.toml create mode 100644 mods/retro-damage-indicators.pw.toml create mode 100644 mods/roughly-enough-items-server-component.pw.toml create mode 100644 mods/roughly-enough-professions-rep.pw.toml create mode 100644 mods/searchables.pw.toml create mode 100644 mods/simple-voice-chat.pw.toml create mode 100644 mods/spark.pw.toml create mode 100644 mods/species.pw.toml create mode 100644 mods/structure-gel-api.pw.toml create mode 100644 mods/supplementaries-squared.pw.toml create mode 100644 mods/supplementaries.pw.toml create mode 100644 mods/the-conjurer.pw.toml create mode 100644 mods/transmog.pw.toml create mode 100644 mods/upgrade-aquatic.pw.toml create mode 100644 mods/waystones.pw.toml create mode 100644 mods/wits.pw.toml create mode 100644 mods/woodworks.pw.toml create mode 100644 mods/xenon-forge.pw.toml create mode 100644 mods/yungs-api.pw.toml create mode 100644 mods/yungs-menu-tweaks.pw.toml create mode 100644 mods/zeta.pw.toml create mode 100644 pack.toml create mode 100644 unsup.toml diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..d790abd --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Disable Git line ending conversion, to prevent packwiz index hashes changing when committing from Windows +* -text \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fcf7a55 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +# Exclude exported CurseForge zip files +/*.zip + +# Exclude exported Modrinth modpacks +*.mrpack + +# Exclude packwiz binary +packwiz.exe \ No newline at end of file diff --git a/.packwizignore b/.packwizignore new file mode 100644 index 0000000..16fdb98 --- /dev/null +++ b/.packwizignore @@ -0,0 +1,7 @@ +# .packwizignore follows the same format as .gitignore, and can be used to exclude unwanted files from pack exports +# See https://git-scm.com/docs/gitignore + +# Exclude README +/README.md + +/static/* \ No newline at end of file diff --git a/config/allurement-common.toml b/config/allurement-common.toml new file mode 100644 index 0000000..eead8cd --- /dev/null +++ b/config/allurement-common.toml @@ -0,0 +1,158 @@ + +[enchantments] + + [enchantments.alleviating] + #Armor enchantment that heals the user when collecting experience + "Enable Alleviating" = true + #How much the experience value is multiplied by into health + #Range: 0.0 ~ 1.7976931348623157E308 + "Healing factor" = 0.25 + + [enchantments.launch] + #Weapon enchantment that launches enemies upwards rather than away + "Enable Launch" = true + #How much the target is affected on the vertical axis + #Range: 0.0 ~ 1.7976931348623157E308 + "Vertical factor" = 0.35 + + [enchantments.obedience] + #Horse armor enchantment tha prevents the horse from roaming around + "Enable Obedience" = true + + [enchantments.reeling] + #Crossbow enchantment that pulls targets towards the user + "Enable Reeling" = true + #How much the target is affected on the horizontal axis + #Range: 0.0 ~ 1.7976931348623157E308 + "Horizontal factor" = 0.5 + #How much the target is affected on the vertical axis + #Range: 0.0 ~ 1.7976931348623157E308 + "Vertical factor" = 0.25 + + [enchantments.reforming] + #Gear enchantment that very slowly repairs items over time + "Enable Reforming" = true + #How many ticks it takes a reforming item to repair + #Range: > 0 + "Reforming tick rate" = 600 + + [enchantments.shockwave] + #Boots enchantment that creates a shockwave when taking fall damage + "Enable Shockwave" = true + #If Shockwave tramples farmland within the wave radius + "Shockwave tramples farmland" = true + + [enchantments.vengeance] + #Armor enchantment that stores incoming damage and applies it to user's next attack + "Enable Vengeance" = true + #How much the damage taken with vengeance is multiplied for attacks + #Range: 0.0 ~ 1.7976931348623157E308 + "Damage factor" = 0.025 + + [enchantments.spread_of_ailments] + #Crossbow enchantment that applies the user's active effects to their arrows + "Enable Spread of Ailments" = true + +[curses] + + [curses.ascension_curse] + #Curse that causes the cursed item to float upwards when dropped + "Enable Curse of Ascension" = true + + [curses.fleeting_curse] + #Curse that causes nearby entities to repel the cursed item + "Enable Curse of Fleeting" = true + +[tweaks] + + [tweaks.enchanting] + #Allow enchanting power from bookshelves to transmit through any non-solid block, not just replaceable ones + "Non-solid blocks transmit enchanting power" = true + #Allow Chiseled Bookshelves to be usable to boost enchanting table power + "Chiseled Bookshelf enchanting" = true + #How many regular books are needed to increase the enchantment power by 1 + #Range: 1 ~ 6 + "Books needed" = 3 + #How many enchanted are needed to increase the enchantment power by 1 + #Range: 1 ~ 6 + "Enchanted Books needed" = 2 + + [tweaks.horse_armor] + #Allow horse armor to be enchanted + "Enchantable horse armor" = true + #If horse armor can appear enchanted when found in loot tables + "Generates in loot tables" = true + #Which loot tables horse armor can't appear enchanted in + "Unenchanted loot tables" = ["minecraft:chests/village/village_weaponsmith", "minecraft:chests/stronghold_corridor", "minecraft:chests/nether_bridge"] + + [tweaks.bane_of_arthropods] + #If Bane of Arthropods increases the mining speed of Cobwebs + "Bane of Arthropods mines cobwebs faster" = true + + [tweaks.feather_falling] + #If having Feather Falling prevents farmland from being trampled + "Feather Falling prevents trampling" = true + + [tweaks.infinity] + #If Infinity requires an arrow in the player's inventory in order to shoot + "Infinity requires arrows" = false + + [tweaks.protection] + #Remove the base Protection enchantment, requiring players to choose between the other types + "Disable Protection" = false + + [tweaks.riptide] + #Allow Riptide to function when in cauldrons + "Riptide works in cauldrons" = true + + [tweaks.soul_speed] + #Instead of losing durability as you run, Soul Speed makes incoming damage increase when on Soul Speed blocks + "Soul Speed change" = true + #How much damage is multiplied when hurt on Soul Speed blocks + #Range: 0.0 ~ 1.7976931348623157E308 + "Damage factor" = 1.5 + + [tweaks.experience] + + [tweaks.experience.dropped_xp] + #If the player drops a flat percentage of their experience rather than capping at level 7 + "Drop experience percentage" = true + #What percentage of the player's total experience is dropped + #Range: 0.0 ~ 1.0 + "Experience percentage" = 0.75 + + [tweaks.experience.level_scaling] + #Remove the amount of experience per level increasing (experimental) + "Remove level scaling" = false + #The amount of experience per level, if level scaling is removed (experimental) + #Range: > 0 + "Experience per level" = 50 + #If the level scaling should only be modified after it reaches the 'Experience per level' value (experimental) + "Remove level scaling after cap" = true + + [tweaks.experience.ender_dragon] + #If Ender Dragon experience dropping should be adjusted (to account for level scaling) + "Adjust Ender Dragon experience drop" = false + #The amount of experience (in points) that should be dropped by the Ender Dragon + #Range: > 0 + "Ender Dragon experience drop" = 3000 + #The amount of experience (in points) that should be dropped by a respawned Ender Dragon + #Range: > 0 + "Respawned Ender Dragon experience drop" = 750 + + [tweaks.experience.anvil] + #If renaming items should always cost 1 experience + "Cheap item renaming" = true + #Remove the cap of 40 on anvil repairing prices + "Remove too expensive" = true + #If anvils can be repaired by right clicking with an iron ingot or using a dispenser + "Anvil ingot repairing" = true + #The amount of tries it should take on average to repair an anvil with an ingot (1 in x chance) + #Range: > 0 + "Ingot repair chance" = 5 + #If anvil transaction costs should be capped at a certain level + "Cap anvil costs" = false + #The max amount of levels an anvil transaction should be able to cost + #Range: > 1 + "Anvil cost cap" = 30 + diff --git a/config/defaultoptions/extra/config/notenoughanimations.json b/config/defaultoptions/extra/config/notenoughanimations.json new file mode 100644 index 0000000..e813125 --- /dev/null +++ b/config/defaultoptions/extra/config/notenoughanimations.json @@ -0,0 +1,50 @@ +{ + "configVersion": 11, + "animationSmoothingSpeed": 0.2, + "holdingItems": [ + "minecraft:clock", + "minecraft:recovery_compass", + "minecraft:soul_lantern", + "minecraft:compass", + "minecraft:torch", + "minecraft:lantern", + "minecraft:soul_torch" + ], + "enableAnimationSmoothing": true, + "enableInWorldMapRendering": true, + "enableOffhandHiding": true, + "enableRotationLocking": true, + "enableLadderAnimation": false, + "ladderAnimationAmplifier": 0.35, + "ladderAnimationArmHeight": 1.7, + "ladderAnimationArmSpeed": 2.0, + "enableRotateToLadder": true, + "enableEatDrinkAnimation": true, + "enableRowBoatAnimation": true, + "enableHorseAnimation": true, + "dontHoldItemsInBed": true, + "freezeArmsInBed": true, + "rotationLock": "NONE", + "showLastUsedSword": false, + "sheathSwords": [ + "minecraft:golden_sword", + "minecraft:iron_sword", + "minecraft:wooden_sword", + "minecraft:stone_sword", + "minecraft:diamond_sword", + "minecraft:netherite_sword" + ], + "enableCrawlingAnimation": true, + "holdUpItemsMode": "NONE", + "holdUpItemOffset": 0.0, + "itemSwapAnimation": true, + "tweakElytraAnimation": true, + "petAnimation": true, + "fallingAnimation": true, + "freezingAnimation": true, + "huggingAnimation": true, + "narutoRunning": false, + "enableInWorldBookRendering": false, + "disableLegSmoothing": false, + "bowAnimation": "VANILLA" +} \ No newline at end of file diff --git a/config/defaultoptions/extra/config/xenon++.toml b/config/defaultoptions/extra/config/xenon++.toml new file mode 100644 index 0000000..c79a312 --- /dev/null +++ b/config/defaultoptions/extra/config/xenon++.toml @@ -0,0 +1,131 @@ + +[xenonextras] + + [xenonextras.general] + #Configure FPS Display mode + #Complete mode gives you min FPS count and average count + #Allowed Values: OFF, SIMPLE, ADVANCED, FRAMETIME + fpsDisplay = "OFF" + #Shows GPU and memory usage onto FPS display + #Allowed Values: OFF, ON, RAM + fpsDisplaySystem = "OFF" + #Set Fullscreen mode + #Borderless let you change between screens more faster and move your mouse across monitors + #Allowed Values: WINDOWED, BORDERLESS, FULLSCREEN + fullscreen = "WINDOWED" + #Configure FPS Display gravity + #Places counter on specified corner of your screen + #Allowed Values: LEFT, CENTER, RIGHT + fpsDisplayGravity = "LEFT" + #Toggle FPS Display shadow + #In case sometimes you can't see the text + fpsDisplayShadow = false + #Configure FPS Display margin + #Give some space between corner and text + #Range: 0 ~ 48 + fpsDisplayMargin = 12 + + [xenonextras.performance] + #Toggles JREI item rendering until searching + #Increases performance a little bit and cleans your screen when you don't want to use it + hideJREI = false + #Toggles Minecraft Fonts shadows + #Depending of the case may increase performance + #Gives a flat style text + fontShadows = true + + [xenonextras.performance.distanceCulling] + + [xenonextras.performance.distanceCulling.entities] + #Configure modifier applied to hostile entities + #Value is raw, 50% - 200% + #Range: 25 ~ 200 + hostileEntityModifier = 100 + #Configure horizontal max distance before cull entities + #Value is squared, default was 64^2 (or 64x64) + #Range: > 0 + cullingMaxDistanceX = 4096 + #Toggles distance culling for entities + enable = true + #Configure vertical max distance before cull entities + #Value is raw + #Range: 0 ~ 512 + cullingMaxDistanceY = 32 + #List of all Entities to be ignored by distance culling + #Uses ResourceLocation to identify it + #Example 1: "minecraft:bat" - Ignores bats only + #Example 2: "alexsmobs:*" - ignores all entities for alexmobs mod + whitelist = ["minecraft:ghast", "minecraft:ender_dragon", "iceandfire:*", "create:*"] + + [xenonextras.performance.distanceCulling.tileEntities] + #Configure horizontal max distance before cull Block entities + #Value is squared, default was 64^2 (or 64x64) + #Range: > 0 + cullingMaxDistanceX = 4096 + #Toggles distance culling for Block Entities + #Maybe you use another mod for that :( + enable = true + #Configure vertical max distance before cull Block entities + #Value is raw + #Range: 0 ~ 512 + cullingMaxDistanceY = 32 + #List of all Block Entities to be ignored by distance culling + #Uses ResourceLocation to identify it + #Example 1: "minecraft:chest" - Ignores chests only + #Example 2: "ae2:*" - ignores all Block entities from Applied Energetics 2 + whitelist = ["waterframes:*"] + + [xenonextras.others] + #Configure if borderless fullscreen option should be attached to F11 or replace vanilla fullscreen + #Allowed Values: ATTACH, REPLACE, OFF + borderlessAttachModeOnF11 = "ATTACH" + + [xenonextras.quality] + #Chunks fade in speed + #This option doesn't affect performance, just changes speed + #Allowed Values: OFF, FAST, SLOW + chunkFadeSpeed = "SLOW" + #Raise clouds + #Modify clouds height perfect for a adaptative world experience + #Range: 0 ~ 512 + cloudsHeight = 192 + #Toggle fog feature + #Fog was a vanilla feature, toggling off may increases performance + fog = true + + [xenonextras.quality.darkness] + #Configure fog brightness on nether when darkness is enabled + #Range: 0.0 ~ 1.0 + endFogBright = 0.5 + #Configure min moon brightness level with darkness + #Range: 0.0 ~ 1.0 + newMoonBright = 0.0 + #Toggle Darkness on End dimension + enableOnEnd = false + #Toggle Darkness default mode for modded dimensions + valueByDefault = false + #Configure Darkness Mode + #Each config changes what is considered 'true darkness' + #Allowed Values: TOTAL_DARKNESS, PITCH_BLACK, DARK, DIM, OFF + mode = "OFF" + #Toggles if moon phases affects darkness in the overworld + affectedByMoonPhase = true + #List of all dimensions to use True Darkness + #This option overrides 'valueByDefault' state + dimensionWhitelist = [] + #Configure max moon brightness level with darkness + #Range: 0.0 ~ 1.0 + fullMoonBright = 0.25 + #Configure fog brightness on nether when darkness is enabled + #Range: 0.0 ~ 1.0 + netherFogBright = 0.5 + #Toggle Darkness on Nether dimension + enableOnNether = false + #Toggle darkness when dimension has no SkyLight + enableOnNoSkyLight = false + #Disables all bright sources of darkness like moon or fog + #Only affects darkness effect + enableBlockLightOnly = false + #Toggle Darkness on Overworld dimension + enableOnOverworld = true + diff --git a/config/defaultoptions/extra/config/xenon-options.json b/config/defaultoptions/extra/config/xenon-options.json new file mode 100644 index 0000000..e413994 --- /dev/null +++ b/config/defaultoptions/extra/config/xenon-options.json @@ -0,0 +1,30 @@ +{ + "quality": { + "weather_quality": "DEFAULT", + "leaves_quality": "DEFAULT", + "enable_vignette": true + }, + "advanced": { + "enable_memory_tracing": false, + "use_advanced_staging_buffers": true, + "disable_incompatible_mod_warnings": false, + "cpu_render_ahead_limit": 3 + }, + "performance": { + "chunk_builder_threads": 0, + "always_defer_chunk_updates_v2": true, + "animate_only_visible_textures": true, + "use_entity_culling": true, + "leaf_culling_quality": "SOLID", + "use_fog_occlusion": true, + "use_block_face_culling": true, + "use_compact_vertex_format": true, + "use_translucent_face_sorting": false, + "use_no_error_g_l_context": true + }, + "notifications": { + "force_disable_donation_prompts": false, + "has_cleared_donation_button": false, + "has_seen_donation_prompt": false + } +} \ No newline at end of file diff --git a/config/defaultoptions/keybindings.txt b/config/defaultoptions/keybindings.txt new file mode 100644 index 0000000..4da0ff5 --- /dev/null +++ b/config/defaultoptions/keybindings.txt @@ -0,0 +1,120 @@ +key_key.attack:key.mouse.left:NONE +key_key.use:key.mouse.right:NONE +key_key.forward:key.keyboard.w:NONE +key_key.left:key.keyboard.a:NONE +key_key.back:key.keyboard.s:NONE +key_key.right:key.keyboard.d:NONE +key_key.jump:key.keyboard.space:NONE +key_key.sneak:key.keyboard.left.shift:NONE +key_key.sprint:key.keyboard.left.control:NONE +key_key.drop:key.keyboard.q:NONE +key_key.inventory:key.keyboard.e:NONE +key_key.chat:key.keyboard.t:NONE +key_key.playerlist:key.keyboard.tab:NONE +key_key.pickItem:key.mouse.middle:NONE +key_key.command:key.keyboard.slash:NONE +key_key.socialInteractions:key.keyboard.p:NONE +key_key.screenshot:key.keyboard.f2:NONE +key_key.togglePerspective:key.keyboard.f5:NONE +key_key.smoothCamera:key.keyboard.unknown:NONE +key_key.fullscreen:key.keyboard.f11:NONE +key_key.spectatorOutlines:key.keyboard.unknown:NONE +key_key.swapOffhand:key.keyboard.f:NONE +key_key.saveToolbarActivator:key.keyboard.unknown:NONE +key_key.loadToolbarActivator:key.keyboard.unknown:NONE +key_key.advancements:key.keyboard.l:NONE +key_key.hotbar.1:key.keyboard.1:NONE +key_key.hotbar.2:key.keyboard.2:NONE +key_key.hotbar.3:key.keyboard.3:NONE +key_key.hotbar.4:key.keyboard.4:NONE +key_key.hotbar.5:key.keyboard.5:NONE +key_key.hotbar.6:key.keyboard.6:NONE +key_key.hotbar.7:key.keyboard.7:NONE +key_key.hotbar.8:key.keyboard.8:NONE +key_key.hotbar.9:key.keyboard.9:NONE +key_key.jei.cheatItemStack2:key.mouse.middle:NONE +key_key.jei.previousPage:key.keyboard.unknown:NONE +key_key.jei.clearSearchBar:key.mouse.right:NONE +key_key.jei.cheatOneItem2:key.mouse.right:NONE +key_key.jei.nextRecipePage:key.keyboard.page.down:NONE +key_key.jei.toggleBookmarkOverlay:key.keyboard.unknown:NONE +key_key.jei.focusSearch:key.keyboard.f:CONTROL +key_key.jei.previousSearch:key.keyboard.up:NONE +key_key.jei.cheatItemStack:key.mouse.left:SHIFT +key_key.jei.cheatOneItem:key.mouse.left:NONE +key_key.jei.toggleOverlay:key.keyboard.o:CONTROL +key_key.jei.previousRecipePage:key.keyboard.page.up:NONE +key_key.jei.toggleHideIngredient:key.mouse.left:CONTROL +key_key.jei.toggleEditMode:key.keyboard.unknown:NONE +key_key.jei.showRecipe:key.keyboard.r:NONE +key_key.jei.toggleCheatMode:key.keyboard.unknown:NONE +key_key.jei.showRecipe2:key.mouse.left:NONE +key_key.jei.nextPage:key.keyboard.unknown:NONE +key_key.jei.showUses2:key.mouse.right:NONE +key_key.jei.toggleCheatModeConfigButton:key.mouse.left:CONTROL +key_key.jei.showUses:key.keyboard.u:NONE +key_key.jei.previousCategory:key.keyboard.page.up:SHIFT +key_key.jei.bookmark:key.keyboard.a:NONE +key_key.jei.closeRecipeGui:key.keyboard.escape:NONE +key_key.jei.nextSearch:key.keyboard.down:NONE +key_key.jei.nextCategory:key.keyboard.page.down:SHIFT +key_key.jei.toggleWildcardHideIngredient:key.mouse.right:CONTROL +key_key.jei.recipeBack:key.keyboard.backspace:NONE +key_key.jei.copy.recipe.id:key.keyboard.unknown:NONE +key_key.configured.open_mod_list:key.keyboard.unknown:NONE +key_key.exposure.camera_controls:key.keyboard.unknown:NONE +key_info.structure_gel.building_tool.undo:key.keyboard.z:CONTROL +key_info.structure_gel.building_tool.redo:key.keyboard.y:CONTROL +key_key.structure_gel.open_building_tool_gui:key.keyboard.r:NONE +key_key.special_ability:key.keyboard.g:NONE +key_key.push_to_talk:key.keyboard.unknown:NONE +key_key.whisper:key.keyboard.unknown:NONE +key_key.mute_microphone:key.keyboard.m:NONE +key_key.disable_voice_chat:key.keyboard.n:NONE +key_key.hide_icons:key.keyboard.h:NONE +key_key.voice_chat:key.keyboard.v:NONE +key_key.voice_chat_settings:key.keyboard.unknown:NONE +key_key.voice_chat_group:key.keyboard.unknown:NONE +key_key.voice_chat_toggle_recording:key.keyboard.unknown:NONE +key_key.voice_chat_adjust_volumes:key.keyboard.unknown:NONE +key_key.jade.config:key.keyboard.unknown:NONE +key_key.jade.show_overlay:key.keyboard.keypad.1:NONE +key_key.jade.toggle_liquid:key.keyboard.keypad.2:NONE +key_key.jade.show_recipes:key.keyboard.keypad.3:NONE +key_key.jade.show_uses:key.keyboard.keypad.4:NONE +key_key.jade.narrate:key.keyboard.keypad.5:NONE +key_key.jade.show_details:key.keyboard.left.shift:NONE +key_key.personality.crawl:key.keyboard.c:NONE +key_key.personality.sit:key.keyboard.z:NONE +key_quark.keybind.autorun:key.keyboard.unknown:NONE +key_quark.keybind.back:key.mouse.4:NONE +key_quark.keybind.camera_mode:key.keyboard.f12:NONE +key_quark.keybind.transfer_insert:key.keyboard.unknown:NONE +key_quark.keybind.transfer_extract:key.keyboard.unknown:NONE +key_quark.keybind.shift_lock:key.keyboard.unknown:NONE +key_quark.emote.no:key.keyboard.unknown:NONE +key_quark.emote.yes:key.keyboard.unknown:NONE +key_quark.emote.wave:key.keyboard.unknown:NONE +key_quark.emote.salute:key.keyboard.unknown:NONE +key_quark.emote.cheer:key.keyboard.unknown:NONE +key_quark.emote.clap:key.keyboard.unknown:NONE +key_quark.emote.think:key.keyboard.unknown:NONE +key_quark.emote.point:key.keyboard.unknown:NONE +key_quark.emote.shrug:key.keyboard.unknown:NONE +key_quark.emote.headbang:key.keyboard.unknown:NONE +key_quark.emote.weep:key.keyboard.unknown:NONE +key_quark.emote.facepalm:key.keyboard.unknown:NONE +key_quark.keybind.patreon_emote.dance:key.keyboard.unknown:NONE +key_quark.keybind.patreon_emote.tpose:key.keyboard.unknown:NONE +key_quark.keybind.patreon_emote.dab:key.keyboard.unknown:NONE +key_quark.keybind.patreon_emote.jet:key.keyboard.unknown:NONE +key_quark.keybind.patreon_emote.exorcist:key.keyboard.unknown:NONE +key_quark.keybind.patreon_emote.zombie:key.keyboard.unknown:NONE +key_quark.keybind.change_hotbar:key.keyboard.x:NONE +key_quark.keybind.sort_player:key.keyboard.unknown:NONE +key_quark.keybind.sort_container:key.keyboard.unknown:NONE +key_quark.keybind.lock_rotation:key.keyboard.k:NONE +key_quark.keybind.variant_selector:key.keyboard.unknown:NONE +key_supplementaries.keybind.quiver:key.keyboard.unknown:NONE +key_key.raised.options:key.keyboard.unknown:NONE +key_key.playertrade.trade_key:key.keyboard.semicolon:NONE diff --git a/config/defaultoptions/options.txt b/config/defaultoptions/options.txt new file mode 100644 index 0000000..f4a9f83 --- /dev/null +++ b/config/defaultoptions/options.txt @@ -0,0 +1,103 @@ +version:3465 +autoJump:false +operatorItemsTab:false +autoSuggestions:true +chatColors:true +chatLinks:true +chatLinksPrompt:true +enableVsync:true +entityShadows:true +forceUnicodeFont:false +discrete_mouse_scroll:false +invertYMouse:false +realmsNotifications:true +reducedDebugInfo:false +showSubtitles:false +directionalAudio:false +touchscreen:false +fullscreen:false +bobView:true +toggleCrouch:false +toggleSprint:false +darkMojangStudiosBackground:true +hideLightningFlashes:false +mouseSensitivity:0.5 +fov:0.0 +screenEffectScale:1.0 +fovEffectScale:1.0 +darknessEffectScale:1.0 +glintSpeed:0.5 +glintStrength:0.75 +damageTiltStrength:1.0 +highContrast:false +gamma:0.5 +renderDistance:12 +simulationDistance:12 +entityDistanceScaling:1.0 +guiScale:0 +particles:0 +maxFps:120 +graphicsMode:1 +ao:true +prioritizeChunkUpdates:0 +biomeBlendRadius:2 +renderClouds:"true" +resourcePacks:[] +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:find_tree +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 +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/config/everycomp-common.toml b/config/everycomp-common.toml new file mode 100644 index 0000000..be46079 --- /dev/null +++ b/config/everycomp-common.toml @@ -0,0 +1,123 @@ + +[general] + #Puts all the added items into a new Every Compat tab instead of their own mod tabs. Be warned that if disabled it could cause some issue with some mods that have custom tabs + creative_tab = true + #Makes dynamic assets that are generated depend on loaded resource packs. Turn off to make them just use vanilla assets + assets_depend_on_loaded_packs = true + #Creates a debug folder inside your instance directory where all the dynamically generated resources will be saved + save_debug_resources = false + #Sends a packet to verify all dependencies mod versions are the same on connect. DIsable if it causes issues + mod_version_check_packet = true + #Don't touch unless you are told to + debug_packet = false + + [general.tooltips] + #Enabled tooltips showing which mod an EC item is from + mod_origin_enabled = true + #Enabled tooltips showing which block type an EC item is made from + block_type_enabled = true + #Only show on advanced settings + show_on_advanced_tooltips = false + + #Disables certain types + [general.types] + + [general.types.cake] + + [general.types.cake.neapolitan] + vanilla_cake = true + chocolate_cake = true + strawberry_cake = true + banana_cake = true + mint_cake = true + adzuki_cake = true + + [general.types.wood_type] + + [general.types.wood_type.rats] + pirat = false + + [general.types.wood_type.quark] + azalea = false + ancient = false + blossom = false + + [general.types.wood_type.enhanced_mushrooms] + mushroom = true + + [general.types.wood_type.upgrade_aquatic] + driftwood = true + river = true + + [general.types.wood_type.alexscaves] + pewen = true + thornwood = true + + [general.types.wood_type.autumnity] + maple = true + + [general.types.leaves_type] + + [general.types.leaves_type.upgrade_aquatic] + river = true + + [general.types.leaves_type.alexscaves] + ancient = true + + [general.types.leaves_type.rats] + pirat = false + + [general.types.leaves_type.autumnity] + maple = true + yellow_maple = true + orange_maple = true + red_maple = true + + [general.types.leaves_type.quark] + ancient = false + blue_blossom = false + lavender_blossom = false + orange_blossom = false + yellow_blossom = false + red_blossom = false + + #Disables specific entries + [general.entries] + + [general.entries.wood_type] + + [general.entries.wood_type.woodworks] + bookshelf = true + chiseled_bookshelf = true + trapped_chest = true + boards = true + chest = true + ladder = true + beehive = true + + [general.entries.wood_type.quark] + vertical_planks = true + post = true + trapped_chest = false + bookshelf = false + chest = false + stripped_post = true + ladder = false + hollow_log = true + + [general.entries.wood_type.boatload] + large_boat = true + furnace_boat = true + + [general.entries.wood_type.farmersdelight] + cabinet = true + + [general.entries.leaves_type] + + [general.entries.leaves_type.quark] + hedge = true + leaf_carpet = false + + [general.entries.leaves_type.woodworks] + leaf_pile = true + diff --git a/config/mediumcore-common.toml b/config/mediumcore-common.toml new file mode 100644 index 0000000..9c7bbab --- /dev/null +++ b/config/mediumcore-common.toml @@ -0,0 +1,20 @@ +#Whether mediumcore appears as the first, default game mode when creating a new world. +mediumcore_default_game_mode = true +#Whether hearts appear with a different texture in mediumcore. +mediumcore_heart_texture = true +#The amount of max health each player starts with in mediumcore. Default is 20 HP, which is 10 hearts. +#Range: 0.5 ~ 1000.0 +starting_player_health = 20.0 +#The lowest amount of max health a player can have in mediumcore. Health will not decrease beyond this threshold no matter how many deaths are taken. Default is 6 HP, which is 3 hearts. +#Range: 0.5 ~ 1000.0 +minimum_player_health = 6.0 +#The amount of max health each player can possibly have in mediumcore. Default is 20 HP, which is 10 hearts. +#Range: 0.5 ~ 1000.0 +max_player_health = 20.0 +#The amount of max health lost with each death. Default is 2 HP, which is 1 heart. +#Range: 0.0 ~ 20.0 +health_decrease_per_death = 2.0 +#The amount of max health regained when healed. Default is 2 HP, which is 1 heart. +#Range: 0.0 ~ 20.0 +health_increase_per_heal = 2.0 + diff --git a/config/quark-common.toml b/config/quark-common.toml new file mode 100644 index 0000000..58f0d31 --- /dev/null +++ b/config/quark-common.toml @@ -0,0 +1,1917 @@ + +[general] + "Enable 'q' Button" = true + "'q' Button on the Right" = false + "Disable Q Menu Effects" = false + #How many advancements deep you can see in the advancement screen. Vanilla is 2. + #Allowed values: (0,) + "Advancement Visibility Depth" = 2 + #Blocks that Quark should treat as Shulker Boxes. + "Shulker Boxes" = ["minecraft:white_shulker_box", "minecraft:orange_shulker_box", "minecraft:magenta_shulker_box", "minecraft:light_blue_shulker_box", "minecraft:yellow_shulker_box", "minecraft:lime_shulker_box", "minecraft:pink_shulker_box", "minecraft:gray_shulker_box", "minecraft:light_gray_shulker_box", "minecraft:cyan_shulker_box", "minecraft:purple_shulker_box", "minecraft:blue_shulker_box", "minecraft:brown_shulker_box", "minecraft:green_shulker_box", "minecraft:red_shulker_box", "minecraft:black_shulker_box"] + #Should Quark treat anything with 'shulker_box' in its item identifier as a shulker box? + "Interpret Shulker Box Like Blocks" = true + #Set to true if you need to find the class name for a screen that's causing problems + "Print Screen Classnames" = false + #A list of screens that can accept quark's buttons. Use "Print Screen Classnames" to find the names of any others you'd want to add. + "Allowed Screens" = [] + #If set to true, the 'Allowed Screens' option will work as a Blacklist rather than a Whitelist. WARNING: Use at your own risk as some mods may not support this. + "Use Screen List Blacklist" = false + #If 'true' and TerraBlender is present, Quark will add a TerraBlender region. The region will contain vanilla biomes and the Glimmering Weald. + "Terrablender Add Region" = true + #Quark will set this weight for its TerraBlender region. + "Terrablender Region Weight" = 1 + #If 'true', Quark will modify the `minecraft:overworld` MultiNoiseBiomeSourceParameterList preset, even when Terrablender is installed. + #This will have various knock-on effects but might make the Weald more common, or appear closer to modded biomes. Who knows? + "Terrablender Modify Vanilla Anyway" = false + #Set to false to disable the popup message telling you that you can config quark in the q menu + "Enable Onboarding" = false + #The amount of slots the chest button system should seek when trying to figure out if a container should be eligible for them. + "Chest Button Slot Target" = 27 + #Set this to false to not generate the Quark Programmer Art resource pack + "Generate Programmer Art" = true + + [general.chest_button_offsets] + "Player X" = 0 + "Player Y" = 0 + "Top X" = 0 + "Top Y" = 0 + "Middle X" = 0 + "Middle Y" = 0 + +[categories] + automation = true + building = true + management = true + tools = true + tweaks = true + world = true + mobs = true + client = true + experimental = true + oddities = true + +[automation] + "Chains Connect Blocks" = true + Chute = true + Crafter = true + "Dispensers Place Blocks" = true + "Ender Watcher" = true + "Feeding Trough" = true + Gravisand = true + "Iron Rod" = true + "Metal Buttons" = true + "Obsidian Plate" = true + "Pistons Move Tile Entities" = true + "Redstone Randomizer" = true + + [automation.crafter] + #Setting this to true will change the Crafter to use Emi's original design instead of Mojang's. + #Emi's design allows only one item per slot, instead of continuing to fill it round robin. + #If this is enabled, Allow Items While Powered should also be set to false for the full design. + "Use Emi Logic" = false + #Set to false to allow items to be inserted into the Crafter even while it's powered. + "Allow Items While Powered" = true + + [automation.dispensers_place_blocks] + Blacklist = ["minecraft:water", "minecraft:lava", "minecraft:fire"] + #Set to false to refrain from registering any behaviors for blocks that have optional dispense behaviors already set. + #An optional behavior is one that will defer to the generic dispense item behavior if its condition fails. + #e.g. the Shulker Box behavior is optional, because it'll throw out the item if it fails, whereas TNT is not optional. + #If true, it'll attempt to use the previous behavior before trying to place the block in the world. + #Requires a game restart to re-apply. + "Wrap Existing Behaviors" = true + + [automation.feeding_trough] + #How long, in game ticks, between animals being able to eat from the trough + #Allowed values: [1,) + Cooldown = 30 + #The maximum amount of animals allowed around the trough's range for an animal to enter love mode + "Max Animals" = 32 + #The chance (between 0 and 1) for an animal to enter love mode when eating from the trough + #Allowed values: (0,1] + "Love Chance" = 0.333333333 + Range = 10.0 + #Chance that an animal decides to look for a through. Closer it is to 1 the more performance it will take. Decreasing will make animals take longer to find one + "Look Chance" = 0.015 + + [automation.iron_rod] + "Use Pre End Recipe" = false + + [automation.metal_buttons] + "Enable Iron" = true + "Enable Gold" = true + + [automation.pistons_move_tile_entities] + "Enable Chests Moving Together" = true + "Render Blacklist" = ["psi:programmer", "botania:starfield"] + "Movement Blacklist" = ["minecraft:spawner", "integrateddynamics:cable", "randomthings:blockbreaker", "minecraft:ender_chest", "minecraft:enchanting_table", "minecraft:trapped_chest", "quark:spruce_trapped_chest", "quark:birch_trapped_chest", "quark:jungle_trapped_chest", "quark:acacia_trapped_chest", "quark:dark_oak_trapped_chest", "endergetic:bolloom_bud"] + "Delayed Update List" = ["minecraft:dispenser", "minecraft:dropper"] + +[building] + "Celebratory Lamps" = true + "Compressed Blocks" = true + "Duskbound Blocks" = true + "Framed Glass" = true + "Glass Item Frame" = true + "Gold Bars" = true + Grate = true + Hedges = true + "Hollow Logs" = true + "Industrial Palette" = true + "Japanese Palette" = true + "Leaf Carpet" = false + Midori = true + "More Brick Types" = true + "More Mud Blocks" = true + "More Potted Plants" = true + "Nether Brick Fence Gate" = true + "Rainbow Lamps" = true + "Raw Metal Bricks" = true + Rope = true + "Shear Vines" = true + Shingles = true + "Soul Sandstone" = true + Stools = true + "Sturdy Stone" = true + Thatch = true + "Variant Bookshelves" = false + "Variant Chests" = false + "Variant Furnaces" = true + "Variant Ladders" = false + "Vertical Planks" = true + "Vertical Slabs" = true + "Wooden Posts" = true + "More Stone Variants" = true + + [building.celebratory_lamps] + "Light Level" = 15 + + [building.compressed_blocks] + "Charcoal Block and Blaze Lantern Stay On Fire Forever" = true + #Allowed values: [0,) + "Charcoal Block Fuel Time" = 16000 + #Allowed values: [0,) + "Blaze Lantern Fuel Time" = 24000 + #Allowed values: [0,) + "Stick Block Fuel Time" = 900 + "Enable Charcoal Block" = true + "Enable Sugar Cane Block" = true + "Enable Cactus Block" = true + "Enable Chorus Fruit Block" = true + "Enable Stick Block" = true + "Enable Apple Crate" = true + "Enable Golden Apple Crate" = true + "Enable Potato Crate" = true + "Enable Carrot Crate" = true + "Enable Golden Carrot Crate" = true + "Enable Beetroot Crate" = true + "Enable Cocoa Bean Sack" = true + "Enable Nether Wart Sack" = true + "Enable Gunpowder Sack" = true + "Enable Berry Sack" = true + "Enable Glow Berry Sack" = true + "Enable Blaze Lantern" = true + "Enable Bonded Leather" = true + "Enable Bonded Rabbit Hide" = true + + [building.glass_item_frame] + "Glass Item Frames Update Maps" = true + #Set to true for faster map updates. Default is every 3s + "Glass Item Frames Update Maps Every Tick" = false + #The scale at which items render in the Glass Item Frame. To match the vanilla Item Frame size, set to 1.0 + "Item Render Scale" = 1.5 + + [building.gold_bars] + "Generate In Nether Fortress" = true + + [building.hollow_logs] + "Enable Auto Crawl" = true + + [building.industrial_palette] + "Enable Iron Plates" = true + "Enable Iron Ladder" = true + + [building.japanese_palette] + "Enable Paper Blocks" = true + "Enable Bamboo Mats" = false + + [building.leaf_carpet] + #This feature disables itself if any of the following mods are loaded: + # - woodworks + # - immersive_weathering + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.more_brick_types] + #This also comes with a utility recipe for Red Nether Bricks + "Enable Blue Nether Bricks" = true + #This also includes Red Sandstone Bricks and Soul Sandstone Bricks + "Enable Sandstone Bricks" = true + #This also includes Mossy Cobblestone Bricks + "Enable Cobblestone Bricks" = true + #Requires Cobblestone Bricks to be enabled + "Enable Blackstone Bricks" = true + #Requires Cobblestone Bricks to be enabled + "Enable Dirt Bricks" = true + #Requires Cobblestone Bricks to be enabled + "Enable Netherrack Bricks" = true + + [building.rainbow_lamps] + "Light Level" = 15 + #Whether Rainbow Lamps should be made from and themed on Corundum if that module is enabled. + "Use Corundum" = true + + [building.rope] + #Set to true to allow ropes to move Tile Entities even if Pistons Push TEs is disabled. + #Note that ropes will still use the same blacklist. + "Force Enable Move Tile Entities" = false + "Enable Dispenser Behavior" = true + + [building.thatch] + #Allowed values: [0,1] + "Fall Damage Multiplier" = 0.5 + #This feature disables itself if any of the following mods are loaded: + # - goated + # - environmental + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.variant_bookshelves] + "Change Names" = true + #This feature disables itself if any of the following mods are loaded: + # - woodworks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.variant_chests] + "Enable Reverting Wooden Chests" = true + "Replace Worldgen Chests" = true + #Chests to put in structures. It's preferred to use worldgen tags for this. The format per entry is "structure=chest", where "structure" is a structure ID, and "chest" is a block ID, which must correspond to a standard chest block. + "Structure Chests" = [] + #This feature disables itself if any of the following mods are loaded: + # - woodworks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.variant_ladders] + "Change Names" = true + #This feature disables itself if any of the following mods are loaded: + # - woodworks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [building.vertical_planks] + #This feature disables itself if any of the following mods are loaded: + # - woodworks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = true + + [building.vertical_slabs] + #Should Walls and Panes attempt to connect to the side of Vertical Slabs? + "Allow Side Connections" = true + + [building.more_stone_variants] + "Enable Bricks" = true + "Enable Chiseled Bricks" = true + "Enable Pillar" = true + +[management] + "Automatic Tool Restock" = true + "Easy Transfering" = true + "Expanded Item Interactions" = true + "Hotbar Changer" = true + "Inventory Sorting" = true + "Item Sharing" = true + "Quick Armor Swapping" = true + + [management.automatic_tool_restock] + #Enchantments deemed important enough to have special priority when finding a replacement + "Important Enchantments" = ["minecraft:silk_touch", "minecraft:fortune", "minecraft:infinity", "minecraft:luck_of_the_sea", "minecraft:looting"] + #Enable replacing your tools with tools of the same type but not the same item + "Enable Loose Matching" = true + #Enable comparing enchantments to find a replacement + "Enable Enchant Matching" = true + #Allow pulling items from one hotbar slot to another + "Check Hotbar" = false + "Unstackables Only" = false + #Any items you place in this list will be ignored by the restock feature + "Ignored Items" = ["botania:exchange_rod", "botania:dirt_rod", "botania:skydirt_rod", "botania:cobble_rod"] + #This feature disables itself if any of the following mods are loaded: + # - inventorytweaks + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [management.easy_transfering] + "Enable Shift Lock" = true + + [management.expanded_item_interactions] + "Enable Armor Interaction" = true + "Enable Shulker Box Interaction" = true + "Enable Lava Interaction" = true + "Allow Opening Shulker Boxes" = true + "Allow Rotating Bundles" = true + + [management.inventory_sorting] + "Enable Player Inventory" = true + "Enable Player Inventory In Chests" = true + "Enable Chests" = true + #Play a click when sorting inventories using keybindings + "Satisfying Click" = true + + [management.item_sharing] + #In ticks. + #Allowed values: [0,) + Cooldown = 100 + "Render Items In Chat" = true + + [management.quick_armor_swapping] + "Swap Off Hand" = true + +[tools] + Abacus = true + "Ambient Discs" = true + "Ancient Tomes" = false + "Beacon Redirection" = true + "Bottled Cloud" = false + "Color Runes" = true + "Endermosh Music Disc" = true + "Parrot Eggs" = true + "Pathfinder Maps" = true + Pickarang = false + "Seed Pouch" = true + "Skull Pikes" = true + "Slime In A Bucket" = true + "Torch Arrow" = true + Trowel = true + + [tools.abacus] + + [tools.abacus.highlight_color] + A = 0.4 + R = 0.0 + G = 0.0 + B = 0.0 + + [tools.ambient_discs] + "Drop On Spider Kill" = true + Volume = 3.0 + + [tools.ancient_tomes] + #Format is lootTable,weight. i.e. "minecraft:chests/stronghold_library,30" + "Loot Tables" = ["minecraft:chests/stronghold_library,20", "minecraft:chests/simple_dungeon,20", "minecraft:chests/bastion_treasure,25", "minecraft:chests/woodland_mansion,15", "minecraft:chests/nether_bridge,0", "minecraft:chests/underwater_ruin_big,0", "minecraft:chests/underwater_ruin_small,0", "minecraft:chests/ancient_city,4", "quark:misc/monster_box,5"] + "Item Quality" = 2 + "Normal Upgrade Cost" = 10 + "Limit Break Upgrade Cost" = 30 + "Valid Enchantments" = ["minecraft:feather_falling", "minecraft:thorns", "minecraft:sharpness", "minecraft:smite", "minecraft:bane_of_arthropods", "minecraft:knockback", "minecraft:fire_aspect", "minecraft:looting", "minecraft:sweeping", "minecraft:efficiency", "minecraft:unbreaking", "minecraft:fortune", "minecraft:power", "minecraft:punch", "minecraft:luck_of_the_sea", "minecraft:lure", "minecraft:loyalty", "minecraft:riptide", "minecraft:impaling", "minecraft:piercing"] + "Overleveled Books Glow Rainbow" = true + #When enabled, Efficiency VI Diamond and Netherite pickaxes can instamine Deepslate when under Haste 2 + "Deepslate Tweak" = true + "Deepslate Tweak Needs Haste2" = true + #Master Librarians will offer to exchange Ancient Tomes, provided you give them a max-level Enchanted Book of the Tome's enchantment too. + "Librarians Exchange Ancient Tomes" = true + #Applying a tome will also randomly curse your item + "Curse Gear" = false + #Allows combining tomes with normal books + "Combine With Books" = true + #Whether a sanity check is performed on the valid enchantments. If this is turned off, enchantments such as Silk Touch will be allowed to generate Ancient Tomes, if explicitly added to the Valid Enchantments. + "Sanity Check" = true + + [tools.beacon_redirection] + "Horizontal Move Limit" = 64 + "Allow Tinted Glass Transparency" = true + + [tools.bottled_cloud] + "Cloud Level Bottom" = 191 + "Cloud Level Top" = 196 + + [tools.color_runes] + "Dungeon Weight" = 10 + "Nether Fortress Weight" = 8 + "Jungle Temple Weight" = 8 + "Desert Temple Weight" = 8 + "Item Quality" = 0 + + [tools.endermosh_music_disc] + "Play Endermosh During Enderdragon Fight" = false + "Add To End City Loot" = true + "Loot Weight" = 5 + "Loot Quality" = 1 + + [tools.parrot_eggs] + #The chance feeding a parrot will produce an egg + Chance = 0.05 + #How long it takes to create an egg + "Egg Time" = 12000 + "Enable Special Awesome Parrot" = true + + [tools.pathfinder_maps] + #In this section you can add custom Pathfinder Maps. This works for both vanilla and modded biomes. + #Each custom map must be on its own line. + #The format for a custom map is as follows: + #,,,,, + #With the following descriptions: + # - being the biome's ID NAME. You can find vanilla names here - https://minecraft.wiki/w/Biome#Biome_IDs + # - being the Cartographer villager level required for the map to be unlockable + # - being the cheapest (in Emeralds) the map can be + # - being the most expensive (in Emeralds) the map can be + # - being a hex color (without the #) for the map to display. You can generate one here - https://htmlcolorcodes.com/ + #Here's an example of a map to locate Ice Mountains: + #minecraft:ice_mountains,2,8,14,7FE4FF + Customs = [] + #Set to false to make it so the default quark Pathfinder Map Built-In don't get added, and only the custom ones do + "Apply Default Trades" = true + #How many steps in the search should the Pathfinder's Quill do per tick? The higher this value, the faster it'll find a result, but the higher chance it'll lag the game while doing so + "Pathfinders Quill Speed" = 32 + #Experimental. Determines if quills should be multithreaded instead. Will ignore quill speed. This could drastically improve performance as it execute the logic off the main thread ideally causing no lag at all + "Multi Threaded" = true + #Allows retrying after a pathfinder quill fails to find a biome nearby. Turn off if you think its op + "Allow Retrying" = true + "Search Radius" = 6400 + "Xp From Trade" = 5 + "Add To Cartographer" = true + "Add To Wandering Trader Forced" = true + "Add To Wandering Trader Generic" = false + "Add To Wandering Trader Rare" = false + "Draw Hud" = true + "Hud On Top" = false + + [tools.pickarang] + "Enable Flamerang" = true + #Set this to true to use the recipe without the Heart of Diamond, even if the Heart of Diamond is enabled. + "Never Use Heart Of Diamond" = false + + [tools.pickarang.pickarang] + #How long it takes before the Pickarang starts returning to the player if it doesn't hit anything. + Timeout = 20 + #Pickarang harvest level. 2 is Iron, 3 is Diamond, 4 is Netherite. + "Harvest Level" = 3 + #Pickarang durability. Set to -1 to have the Pickarang be unbreakable. + Durability = 800 + #Pickarang max hardness breakable. 22.5 is ender chests, 25.0 is monster boxes, 50 is obsidian. Most things are below 5. + "Max Hardness" = 20.0 + #How much damage the Pickarang deals when swung as an item + "Attack Damage" = 2 + #How many ticks do you have to wait between using the pickarang again + Cooldown = 10 + #Whether this pickarang type can act as a hoe. + "Can Act As Hoe" = false + #Whether this pickarang type can act as a shovel. + "Can Act As Shovel" = true + #Whether this pickarang type can act as an axe. + "Can Act As Axe" = true + + [tools.pickarang.flamerang] + #How long it takes before the Pickarang starts returning to the player if it doesn't hit anything. + Timeout = 20 + #Pickarang harvest level. 2 is Iron, 3 is Diamond, 4 is Netherite. + "Harvest Level" = 4 + #Pickarang durability. Set to -1 to have the Pickarang be unbreakable. + Durability = 1040 + #Pickarang max hardness breakable. 22.5 is ender chests, 25.0 is monster boxes, 50 is obsidian. Most things are below 5. + "Max Hardness" = 20.0 + #How much damage the Pickarang deals when swung as an item + "Attack Damage" = 3 + #How many ticks do you have to wait between using the pickarang again + Cooldown = 10 + #Whether this pickarang type can act as a hoe. + "Can Act As Hoe" = false + #Whether this pickarang type can act as a shovel. + "Can Act As Shovel" = true + #Whether this pickarang type can act as an axe. + "Can Act As Axe" = true + + [tools.seed_pouch] + "Max Items" = 640 + "Show All Variants In Creative" = true + "Shift Range" = 3 + #Allow putting bone meal into the Seed Pouch (or anything else in the tag 'quark:seed_pouch_fertilizers') + "Allow Fertilizer" = true + "Fertilizer Shift Range" = 3 + + [tools.skull_pikes] + "Pike Range" = 5.0 + + [tools.torch_arrow] + "Extinguish On Miss" = false + + [tools.trowel] + #Amount of blocks placed is this value + 1. + #Set to 0 to make the Trowel unbreakable + #Allowed values: [0,) + "Trowel Max Durability" = 0 + +[tweaks] + "Armed Armor Stands" = true + "Automatic Recipe Unlock" = true + "Better Elytra Rocket" = true + "Campfires Boost Elytra" = true + "Compasses Work Everywhere" = true + "Coral On Cactus" = true + "Diamond Repair" = true + "Double Door Opening" = true + "Dragon Scales" = true + "Dyeable Item Frames" = true + Emotes = true + "Enhanced Ladders" = true + "Glass Shard" = true + "Gold Tools Have Fortune" = true + "Grab Chickens" = true + "Hoe Harvesting" = true + "Horses Swim" = true + "Improved Sponges" = true + "Lock Rotation" = true + "Magma Keeps Concrete Powder" = true + "Map Washing" = true + "More Banner Layers" = true + "More Note Block Sounds" = true + "No Durability On Cosmetics" = true + "Pat The Dogs" = true + "Petals On Water" = true + "Pig Litters" = true + "Poison Potato Usage" = true + "Reacharound Placing" = true + "Renewable Spore Blossoms" = true + "Replace Scaffolding" = true + "Safer Creatures" = true + "Shulker Packing" = true + "Simple Harvest" = true + "Slabs To Blocks" = true + "Slimes To Magma Cubes" = true + "Snow Golem Player Heads" = true + "Utility Recipes" = true + "Vexes Die With Their Masters" = true + "Villagers Follow Emeralds" = true + "Zombie Villagers On Normal" = true + + [tweaks.automatic_recipe_unlock] + #A list of recipe names that should NOT be added in by default + "Ignored Recipes" = [] + "Force Limited Crafting" = false + "Disable Recipe Book" = false + #If enabled, advancements granting recipes will be stopped from loading, potentially reducing the lagspike on first world join. + "Filter Recipe Advancements" = true + #This feature disables itself if any of the following mods are loaded: + # - nerb + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [tweaks.campfires_boost_elytra] + "Boost Strength" = 0.5 + "Max Speed" = 1.0 + + [tweaks.compasses_work_everywhere] + "Enable Compass Nerf" = true + "Enable Clock Nerf" = true + "Enable Nether" = true + "Enable End" = true + + [tweaks.diamond_repair] + #List of changes to apply to repair items, format is "=" as seen in the defualt. + #Multiple repair items can be applied for the same base item, and as long as at least one is provided, any vanilla option will be removed. + #To use multiple items, comma separate them (e.g. "minecraft:diamond_sword=minecraft:diamond,minecraft:emerald")If you want the vanilla option back, you must add it again manually. + "Repair Item Changes" = ["minecraft:netherite_sword=minecraft:diamond", "minecraft:netherite_pickaxe=minecraft:diamond", "minecraft:netherite_axe=minecraft:diamond", "minecraft:netherite_shovel=minecraft:diamond", "minecraft:netherite_hoe=minecraft:diamond", "minecraft:netherite_helmet=minecraft:diamond", "minecraft:netherite_chestplate=minecraft:diamond", "minecraft:netherite_leggings=minecraft:diamond", "minecraft:netherite_boots=minecraft:diamond"] + "Unrepairable Items" = [] + "Enable Jei Hints" = true + + [tweaks.double_door_opening] + "Enable Doors" = true + "Enable Fence Gates" = true + #This feature disables itself if any of the following mods are loaded: + # - utilitix + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [tweaks.emotes] + #The enabled default emotes. Remove from this list to disable them. You can also re-order them, if you feel like it. + "Enabled Emotes" = ["no", "yes", "wave", "salute", "cheer", "clap", "think", "point", "shrug", "headbang", "weep", "facepalm"] + #The list of Custom Emotes to be loaded. + #Watch the tutorial on Custom Emotes to learn how to make your own: https://youtu.be/ourHUkan6aQ + "Custom Emotes" = [] + #Enable this to make custom emotes read the file every time they're triggered so you can edit on the fly. + #DO NOT ship enabled this in a modpack, please. + "Custom Emote Debug" = false + "Button Shift X" = 0 + "Button Shift Y" = 0 + + [tweaks.enhanced_ladders] + #Allowed values: (,0] + "Fall Speed" = -0.2 + "Allow Freestanding" = true + "Allow Dropping Down" = true + "Allow Sliding" = true + "Allow Inventory Sneak" = true + + [tweaks.gold_tools_have_fortune] + #Allowed values: [0,) + "Fortune Level" = 2 + #Allowed values: [0,4] + "Harvest Level" = 2 + "Display Baked Enchantments In Tooltip" = true + "Italic Tooltip" = true + #Enchantments other than Gold's Fortune/Looting to bake into items. Format is "item+enchant@level", such as "minecraft:stick+sharpness@10". + "Baked Enchantments" = [] + + [tweaks.grab_chickens] + "Needs No Helmet" = true + #Set to 0 to disable + "Slowness Level" = 1 + + [tweaks.hoe_harvesting] + #Allowed values: [1,5] + "Regular Hoe Radius" = 2 + #Allowed values: [1,5] + "High Tier Hoe Radius" = 3 + + [tweaks.improved_sponges] + #The maximum number of water tiles that a sponge can soak up. Vanilla default is 64. + #Allowed values: [64,) + "Maximum Water Drain" = 256 + #The maximum number of water tiles that a sponge can 'crawl along' for draining. Vanilla default is 6. + #Allowed values: [6,) + "Maximum Crawl Distance" = 10 + "Enable Placing On Water" = true + + [tweaks.map_washing] + #This feature disables itself if any of the following mods are loaded: + # - supplementaries + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [tweaks.more_banner_layers] + #Allowed values: [1,16] + "Layer Limit" = 16 + + [tweaks.more_note_block_sounds] + "Enable Amethyst Sound" = true + + [tweaks.no_durability_on_cosmetics] + #Allow applying cosmetic items such as color runes with no anvil durability usage? Cosmetic items are defined in the quark:cosmetic_anvil_items tag + "Allow Cosmetic Items" = true + + [tweaks.pat_the_dogs] + #How many ticks it takes for a dog to want affection after being pet/tamed; leave -1 to disable + "Dogs Want Love" = -1 + #Whether you can pet all mobs + "Pet All Mobs" = false + #If `petAllMobs` is set, these mobs still can't be pet + "Pettable Denylist" = ["minecraft:ender_dragon", "minecraft:wither", "minecraft:armor_stand"] + #Even if `petAllMobs` is not set, these mobs can be pet + "Pettable Allowlist" = [] + + [tweaks.pig_litters] + #Allowed values: [1,) + "Min Pig Litter Size" = 2 + #Allowed values: [1,) + "Max Pig Litter Size" = 3 + "Pigs Eat Golden Carrots" = true + #Allowed values: [0,) + "Min Golden Carrot Boost" = 0 + #Allowed values: [0,) + "Max Golden Carrot Boost" = 2 + + [tweaks.poison_potato_usage] + Chance = 0.1 + "Poison Effect" = true + + [tweaks.reacharound_placing] + #Allowed values: [0,1] + Leniency = 0.5 + Whitelist = [] + Blacklist = [] + + [tweaks.renewable_spore_blossoms] + "Bone Meal Chance" = 0.2 + + [tweaks.replace_scaffolding] + #How many times the algorithm for finding out where a block would be placed is allowed to turn. If you set this to large values (> 3) it may start producing weird effects. + "Max Bounces" = 1 + + [tweaks.safer_creatures] + #How many blocks should be subtracted from the rabbit fall height when calculating fall damage. 5 is the same value as vanilla frogs + "Height Reduction" = 5.0 + "Enable Slime Fall Damage Removal" = true + + [tweaks.simple_harvest] + #Can players harvest crops with empty hand clicks? + "Empty Hand Harvest" = true + #Does harvesting crops with a hoe cost durability? + "Harvesting Costs Durability" = false + #Should Quark look for(nonvanilla) crops, and handle them? + "Do Harvesting Search" = true + #Should villagers use simple harvest instead of breaking crops? + "Villagers Use Simple Harvest" = true + #Which crops can be harvested? + #Format is: "harvestState[,afterHarvest]", i.e. "minecraft:wheat[age=7]" or "minecraft:cocoa[age=2,facing=north],minecraft:cocoa[age=0,facing=north]" + "Harvestable Blocks" = ["minecraft:wheat[age=7]", "minecraft:carrots[age=7]", "minecraft:potatoes[age=7]", "minecraft:beetroots[age=3]", "minecraft:nether_wart[age=3]", "minecraft:cocoa[age=2,facing=north],minecraft:cocoa[age=0,facing=north]", "minecraft:cocoa[age=2,facing=south],minecraft:cocoa[age=0,facing=south]", "minecraft:cocoa[age=2,facing=east],minecraft:cocoa[age=0,facing=east]", "minecraft:cocoa[age=2,facing=west],minecraft:cocoa[age=0,facing=west]"] + #Which blocks should right click harvesting simulate a click on instead of breaking? + #This is for blocks like sweet berry bushes, which have right click harvesting built in. + "Right Clickable Blocks" = ["minecraft:sweet_berry_bush", "minecraft:cave_vines"] + + [tweaks.utility_recipes] + #Can any wool color be dyed? + "Dye Any Wool" = true + #Can other stone-like materials be used for crafting stone tools? + "Better Stone Tool Crafting" = true + #Can a dispenser be crafted by adding a bow to a dropper? + "Enable Dispenser" = true + #Can a repeater be crafted with the pattern for a redstone torch? + "Enable Repeater" = true + #Can you craft a minecart around blocks which can be placed inside? + "Enable Minecarts" = true + #Can you craft a boat around a chest to directly make a chest boat? + "Enable Chest Boats" = true + #Can you craft four chests at once using logs? + "Logs To Chests" = true + #Can Coral be crafted into dye? + "Coral To Dye" = true + #Can cookies, paper, and bread be crafted in a 2x2 crafting table? + "Bent Recipes" = true + #Can Rotten Flesh and Poisonous Potatoes be composted? + "Compostable Toxins" = true + #Does Dragon Breath return a bottle when used as a reagent or material? + "Effective Dragon Breath" = true + #Can torches can be used as fuel in furnaces? + "Torches Burn" = true + #Can bones be smelted down to bone meal? + "Bone Meal Utility" = true + #Can Charcoal be crafted into Black Dye? + "Charcoal To Black Dye" = true + #Can two Logs be used instead of a Chest to make a Hopper? + "Easy Hopper" = true + #Can two Logs be used to craft 16 sticks? + "Easy Sticks" = true + #Can raw ore blocks be smelted, taking 9x the time a normal item? + "Smelt Raw Ore Blocks" = true + +[world] + "Ancient Wood" = false + "Azalea Wood" = false + "Big Stone Clusters" = true + "Blossom Trees" = false + "Chorus Vegetation" = true + Corundum = true + "Fairy Rings" = true + "Fallen Logs" = false + "Glimmering Weald" = true + "Monster Box" = true + "Nether Obsidian Spikes" = true + "New Stone Types" = false + "No More Lava Pockets" = true + Permafrost = true + "Spiral Spires" = true + + [world.ancient_wood] + "Ancient Fruit Gives Exp" = true + #Allowed values: [1,) + "Ancient Fruit Exp Value" = 10 + #Set to a value other than 0 to enable Ancient City loot chest generation (8 recommended if you do) + #Allowed values: [0,) + "Ancient City Loot Weight" = 0 + #Allowed values: [0,) + "Ancient City Loot Quality" = 1 + #Set to 0 to disable sniffer sniffing. The vanilla loot table has every entry at weight 1, so without editing it, it's impossible to make the sapling more rare + #Allowed values: [0,) + "Sniffing Loot Weight" = 1 + #Allowed values: [0,) + "Sniffing Loot Quality" = 0 + + [world.azalea_wood] + #This feature disables itself if any of the following mods are loaded: + # - caverns_and_chasms + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [world.big_stone_clusters] + #Blocks that stone clusters can replace. If you want to make it so it only replaces in one dimension, + #do "block|dimension", as we do for netherrack and end stone by default. + "Blocks To Replace" = ["minecraft:stone", "minecraft:andesite", "minecraft:diorite", "minecraft:granite", "minecraft:netherrack|minecraft:the_nether", "minecraft:end_stone|minecraft:the_end", "quark:marble", "quark:limestone", "quark:jasper", "quark:slate"] + + [world.big_stone_clusters.calcite] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.calcite.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.big_stone_clusters.calcite.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.calcite.biomes.tags] + "Biome Tags" = ["minecraft:is_mountain"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.calcite.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.limestone] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.limestone.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.big_stone_clusters.limestone.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.limestone.biomes.tags] + "Biome Tags" = ["forge:is_swamp", "minecraft:is_ocean"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.limestone.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.jasper] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.jasper.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.big_stone_clusters.jasper.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.jasper.biomes.tags] + "Biome Tags" = ["minecraft:is_badlands", "forge:is_sandy"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.jasper.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.shale] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.shale.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.big_stone_clusters.shale.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.shale.biomes.tags] + "Biome Tags" = ["forge:is_snowy"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.shale.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.myalite] + "Generate In Air" = true + Enabled = true + #Allowed values: [0,) + Rarity = 100 + "Min Y Level" = 58 + "Max Y Level" = 62 + #Allowed values: [0,) + "Horizontal Size" = 20 + #Allowed values: [0,) + "Vertical Size" = 40 + #Allowed values: [0,) + "Horizontal Variation" = 6 + #Allowed values: [0,) + "Vertical Variation" = 10 + + [world.big_stone_clusters.myalite.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_end"] + + [world.big_stone_clusters.myalite.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.myalite.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.myalite.biomes.biomes] + Biomes = ["minecraft:end_highlands"] + "Is Blacklist" = false + + [world.blossom_trees] + "Drop Leaf Particles" = true + + [world.blossom_trees.blue] + Rarity = 200 + + [world.blossom_trees.blue.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.blue.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.blue.biome_config.tags] + "Biome Tags" = ["forge:is_snowy"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.blue.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.lavender] + Rarity = 100 + + [world.blossom_trees.lavender.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.lavender.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.lavender.biome_config.tags] + "Biome Tags" = ["forge:is_swamp"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.lavender.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.orange] + Rarity = 100 + + [world.blossom_trees.orange.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.orange.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.orange.biome_config.tags] + "Biome Tags" = ["minecraft:is_savanna"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.orange.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.yellow] + Rarity = 200 + + [world.blossom_trees.yellow.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.yellow.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.yellow.biome_config.tags] + "Biome Tags" = ["forge:is_plains"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.yellow.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.red] + Rarity = 30 + + [world.blossom_trees.red.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.red.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.red.biome_config.tags] + "Biome Tags" = ["minecraft:is_badlands"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.red.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.chorus_vegetation] + Rarity = 150 + Radius = 7 + "Chunk Attempts" = 120 + "Highlands Chance" = 1.0 + "Midlands Chance" = 0.2 + "Other End Biomes Chance" = 0.0 + "Passive Teleport Chance" = 0.2 + "Endermite Spawn Chance" = 0.01 + "Teleport Duplication Chance" = 0.01 + + [world.corundum] + #Allowed values: [0,1] + "Crystal Chance" = 0.16 + #Allowed values: [0,1] + "Crystal Cluster Chance" = 0.2 + #Allowed values: [0,1] + "Crystal Cluster On Sides Chance" = 0.6 + #Allowed values: [0,1] + "Double Crystal Chance" = 0.2 + #The chance that a crystal can grow, this is on average 1 in X world ticks, set to a higher value to make them grow slower. Minimum is 1, for every tick. Set to 0 to disable growth. + "Cave Crystal Growth Chance" = 5 + "Crystals Craft Runes" = true + "Enable Collateral Movement" = true + + [world.corundum.generation_settings] + #Allowed values: [0,) + Rarity = 400 + "Min Y Level" = 0 + "Max Y Level" = 64 + #Allowed values: [0,) + "Horizontal Size" = 36 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 8 + #Allowed values: [0,) + "Vertical Variation" = 6 + + [world.corundum.generation_settings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.corundum.generation_settings.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.corundum.generation_settings.biomes.tags] + "Biome Tags" = ["minecraft:is_ocean"] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.corundum.generation_settings.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.fairy_rings] + "Forest Chance" = 0.00625 + "Plains Chance" = 0.0025 + Ores = ["minecraft:emerald_ore", "minecraft:diamond_ore"] + + [world.fairy_rings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.fallen_logs] + #Requires the Hollow Logs module to be enabled too + "Use Hollow Logs" = true + Rarity = 5 + "Sparse Biome Rarity" = 12 + #Tags that define which biomes can have which wood types + "Biome Tags" = ["quark:has_fallen_acacia=minecraft:acacia_log", "quark:has_fallen_birch=minecraft:birch_log", "quark:has_fallen_cherry=minecraft:cherry_log", "quark:has_fallen_dark_oak=minecraft:dark_oak_log", "quark:has_fallen_jungle=minecraft:jungle_log", "quark:has_fallen_mangrove=minecraft:mangrove_log", "quark:has_fallen_oak=minecraft:oak_log", "quark:has_fallen_spruce=minecraft:spruce_log"] + + [world.fallen_logs.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.monster_box] + #The chance for the monster box generator to try and place one in a chunk. 0 is 0%, 1 is 100% + #This can be higher than 100% if you want multiple per chunk. + "Chance Per Chunk" = 0.2 + "Min Y" = -50 + "Max Y" = 0 + "Min Mob Count" = 5 + "Max Mob Count" = 8 + "Enable Extra Loot Table" = true + "Activation Range" = 2.5 + #How many blocks to search vertically from a position before trying to place a block. Higher means you'll get more boxes in open spaces. + "Search Range" = 15 + + [world.monster_box.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.nether_obsidian_spikes] + #The chance for a chunk to contain spikes (1 is 100%, 0 is 0%) + "Chance Per Chunk" = 0.1 + #The chance for a spike to be big (1 is 100%, 0 is 0%) + "Big Spike Chance" = 0.03 + #Should a chunk have spikes, how many would the generator try to place + "Tries Per Chunk" = 4 + "Big Spike Spawners" = true + + [world.nether_obsidian_spikes.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_nether"] + + [world.new_stone_types] + "Enable Limestone" = true + "Enable Jasper" = true + "Enable Shale" = true + "Enable Myalite" = true + "Add New Stones To Mason Trades" = true + + [world.new_stone_types.limestone] + + [world.new_stone_types.limestone.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.new_stone_types.limestone.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.limestone.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.new_stone_types.jasper] + + [world.new_stone_types.jasper.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.new_stone_types.jasper.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.jasper.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.new_stone_types.shale] + + [world.new_stone_types.shale.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.new_stone_types.shale.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.shale.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.new_stone_types.myalite] + + [world.new_stone_types.myalite.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_end"] + + [world.new_stone_types.myalite.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.myalite.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.permafrost] + + [world.permafrost.generation_settings] + #Allowed values: [0,) + Rarity = 2 + "Min Y Level" = 105 + "Max Y Level" = 140 + #Allowed values: [0,) + "Horizontal Size" = 72 + #Allowed values: [0,) + "Vertical Size" = 15 + #Allowed values: [0,) + "Horizontal Variation" = 22 + #Allowed values: [0,) + "Vertical Variation" = 4 + + [world.permafrost.generation_settings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.permafrost.generation_settings.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.permafrost.generation_settings.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.permafrost.generation_settings.biomes.biomes] + Biomes = ["minecraft:frozen_peaks"] + "Is Blacklist" = false + + [world.spiral_spires] + Rarity = 200 + Radius = 15 + "Enable Myalite Viaducts" = true + #Allowed values: [2,1,024] + "Myalite Conduit Distance" = 24 + "Renewable Myalite" = true + + [world.spiral_spires.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_end"] + + [world.spiral_spires.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.spiral_spires.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.spiral_spires.biomes.biomes] + Biomes = ["minecraft:end_highlands"] + "Is Blacklist" = false + +[mobs] + Crabs = true + Forgotten = true + Foxhound = true + Shiba = true + Stonelings = true + Toretoise = true + Wraith = true + + [mobs.crabs] + "Enable Brewing" = true + #Whether Resilience should be required for 'How Did We Get Here?' and (if brewing is enabled) 'A Furious Cocktail'. + #Keep this on when brewing is disabled if your pack adds an alternative source for the effect. + "Resilience Required For All Effects" = true + "Add Crab Leg To Fisherman Trades" = true + + [mobs.crabs.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 5 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 3 + + [mobs.crabs.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.crabs.spawn_config.biomes.tags] + "Biome Tags" = ["minecraft:is_beach"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.crabs.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.forgotten] + #This is the probability of a Skeleton that spawns under the height threshold being replaced with a Forgotten. + "Forgotten Spawn Rate" = 0.05 + "Max Height For Spawn" = 0 + + [mobs.foxhound] + #The chance coal will tame a foxhound + "Tame Chance" = 0.05 + "Foxhounds Speed Up Furnaces" = true + + [mobs.foxhound.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 30 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 2 + + [mobs.foxhound.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.foxhound.spawn_config.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.foxhound.spawn_config.biomes.biomes] + Biomes = ["minecraft:nether_wastes", "minecraft:basalt_deltas"] + "Is Blacklist" = false + + [mobs.foxhound.lesser_spawn_config] + "Max Cost" = 0.7 + "Spawn Cost" = 0.15 + #Allowed values: (0,) + "Spawn Weight" = 2 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 1 + + [mobs.foxhound.lesser_spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.foxhound.lesser_spawn_config.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.foxhound.lesser_spawn_config.biomes.biomes] + Biomes = ["minecraft:soul_sand_valley"] + "Is Blacklist" = false + + [mobs.shiba] + "Ignore Areas With Skylight" = false + + [mobs.shiba.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 40 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 3 + + [mobs.shiba.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.shiba.spawn_config.biomes.tags] + "Biome Tags" = ["minecraft:is_mountain"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.shiba.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.stonelings] + "Max Y Level" = 0 + "Enable Diamond Heart" = true + #When enabled, stonelings are much more aggressive in checking for players + "Cautious Stonelings" = false + "Tamable Stonelings" = true + #Disabled if if Pathfinder Maps are disabled. + "Weald Pathfinder Maps" = true + + [mobs.stonelings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [mobs.stonelings.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 80 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 1 + + [mobs.stonelings.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.stonelings.spawn_config.biomes.tags] + "Biome Tags" = ["forge:is_void", "minecraft:is_nether", "minecraft:is_end"] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.stonelings.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.toretoise] + "Max Y Level" = 0 + #The number of ticks from mining a tortoise until feeding it could cause it to regrow. + "Cooldown Ticks" = 1200 + #The items that can be fed to toretoises to make them regrow ores. + Foods = ["minecraft:glow_berries"] + "Allow Toretoise To Regrow" = true + #Feeding a toretoise after cooldown will regrow them with a one-in-this-number chance. Set to 1 to always regrow, higher = lower chance. + "Regrow Chance" = 3 + + [mobs.toretoise.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [mobs.toretoise.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 120 + #Allowed values: [1,) + "Min Group Size" = 2 + #Allowed values: [1,) + "Max Group Size" = 4 + + [mobs.toretoise.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.toretoise.spawn_config.biomes.tags] + "Biome Tags" = ["forge:is_void", "minecraft:is_nether", "minecraft:is_end"] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.toretoise.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.wraith] + #List of sound sets to use with wraiths. + #Three sounds must be provided per entry, separated by | (in the format idle|hurt|death). Leave blank for no sound (i.e. if a mob has no ambient noise) + "Wraith Sounds" = ["entity.sheep.ambient|entity.sheep.hurt|entity.sheep.death", "entity.cow.ambient|entity.cow.hurt|entity.cow.death", "entity.pig.ambient|entity.pig.hurt|entity.pig.death", "entity.chicken.ambient|entity.chicken.hurt|entity.chicken.death", "entity.horse.ambient|entity.horse.hurt|entity.horse.death", "entity.cat.ambient|entity.cat.hurt|entity.cat.death", "entity.wolf.ambient|entity.wolf.hurt|entity.wolf.death", "entity.villager.ambient|entity.villager.hurt|entity.villager.death", "entity.polar_bear.ambient|entity.polar_bear.hurt|entity.polar_bear.death", "entity.zombie.ambient|entity.zombie.hurt|entity.zombie.death", "entity.skeleton.ambient|entity.skeleton.hurt|entity.skeleton.death", "entity.spider.ambient|entity.spider.hurt|entity.spider.death", "|entity.creeper.hurt|entity.creeper.death", "entity.endermen.ambient|entity.endermen.hurt|entity.endermen.death", "entity.zombie_pig.ambient|entity.zombie_pig.hurt|entity.zombie_pig.death", "entity.witch.ambient|entity.witch.hurt|entity.witch.death", "entity.blaze.ambient|entity.blaze.hurt|entity.blaze.death", "entity.llama.ambient|entity.llama.hurt|entity.llama.death", "|quark:entity.stoneling.cry|quark:entity.stoneling.die", "quark:entity.frog.idle|quark:entity.frog.hurt|quark:entity.frog.die"] + + [mobs.wraith.spawn_config] + "Max Cost" = 0.7 + "Spawn Cost" = 0.15 + #Allowed values: (0,) + "Spawn Weight" = 5 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 3 + + [mobs.wraith.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.wraith.spawn_config.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.wraith.spawn_config.biomes.biomes] + Biomes = ["minecraft:soul_sand_valley"] + "Is Blacklist" = false + +[client] + "Auto Walk Keybind" = true + "Back Button Keybind" = true + "Buckets Show Inhabitants" = true + Camera = true + "Chest Searching" = true + "Elytra Indicator" = true + "Greener Grass" = false + "Improved Tooltips" = true + "Long Range Pick Block" = true + "Microcrafting Helper" = true + "Soul Candles" = true + "Usage Ticker" = true + "Uses For Curses" = true + "Variant Animal Textures" = true + "Wool Shuts Up Minecarts" = true + + [client.auto_walk_keybind] + "Draw Hud" = true + "Hud Height" = 10 + + [client.buckets_show_inhabitants] + "Show Axolotls" = true + "Show Crabs" = true + "Show Tropical Fish" = true + "Show Shiny Slime" = true + + [client.camera] + #Date format that will be displayed in screenshots. Must be a valid one (i.e. MM/dd/yyyy) + "Date Format" = "MM/dd/yyyy" + + [client.chest_searching] + + [client.chest_searching.overlay_color] + A = 0.67 + R = 0.0 + G = 0.0 + B = 0.0 + + [client.greener_grass] + "Affect Leaves" = true + "Affect Water" = false + "Block List" = ["minecraft:large_fern", "minecraft:tall_grass", "minecraft:grass_block", "minecraft:fern", "minecraft:grass", "minecraft:potted_fern", "minecraft:sugar_cane", "environmental:giant_tall_grass", "valhelsia_structures:grass_block"] + "Leaves List" = ["minecraft:spruce_leaves", "minecraft:birch_leaves", "minecraft:oak_leaves", "minecraft:jungle_leaves", "minecraft:acacia_leaves", "minecraft:dark_oak_leaves", "atmospheric:rosewood_leaves", "atmospheric:morado_leaves", "atmospheric:yucca_leaves", "autumnity:maple_leaves", "environmental:willow_leaves", "environmental:hanging_willow_leaves", "minecraft:vine"] + + [client.greener_grass.color_matrix] + R = [0.89, 0.0, 0.0] + G = [0.0, 1.11, 0.0] + B = [0.0, 0.0, 0.89] + + [client.greener_grass.water_matrix] + R = [0.86, 0.0, 0.0] + G = [0.0, 1.0, 0.22] + B = [0.0, 0.0, 1.22] + + [client.improved_tooltips] + "Attribute Tooltips" = true + "Food Tooltips" = false + "Shulker Tooltips" = true + "Map Tooltips" = true + "Enchanting Tooltips" = true + "Fuel Time Tooltips" = true + "Shulker Box Use Colors" = true + "Shulker Box Require Shift" = false + "Map Require Shift" = false + #The value of each shank of food. + #Tweak this when using mods like Hardcore Hunger which change that value. + "Food Divisor" = 2 + "Show Saturation" = true + "Food Compression Threshold" = 4 + "Fuel Time Divisor" = 200 + #Should item attributes be colored relative to your current equipped item? + #e.g. if wearing an Iron Helmet, the armor value in a Diamond Helmet will show as green, and vice versa would be red. + #If set to false, item attributes will show in white or red if they're negative values. + "Show Upgrade Status" = true + "Animate Up Down Arrows" = true + "Enchanting Stacks" = ["minecraft:diamond_sword", "minecraft:diamond_pickaxe", "minecraft:diamond_shovel", "minecraft:diamond_axe", "minecraft:diamond_hoe", "minecraft:diamond_helmet", "minecraft:diamond_chestplate", "minecraft:diamond_leggings", "minecraft:diamond_boots", "minecraft:shears", "minecraft:bow", "minecraft:fishing_rod", "minecraft:crossbow", "minecraft:trident", "minecraft:elytra", "minecraft:shield", "quark:pickarang", "supplementaries:slingshot", "supplementaries:bubble_blower", "farmersdelight:diamond_knife", "the_bumblezone:stinger_spear", "the_bumblezone:crystal_cannon", "the_bumblezone:honey_crystal_shield", "the_bumblezone:honey_bee_leggings_2"] + #A list of additional stacks to display on each enchantment + #The format is as follows: + #enchant_id=item1,item2,item3... + #So to display a carrot on a stick on a mending book, for example, you use: + #minecraft:mending=minecraft:carrot_on_a_stick + "Enchanting Additional Stacks" = [] + + [client.usage_ticker] + #Switch the armor display to the off hand side and the hand display to the main hand side + Invert = false + "Shift Left" = 0 + "Shift Right" = 0 + "Enable Main Hand" = true + "Enable Off Hand" = true + "Enable Armor" = true + + [client.uses_for_curses] + "Vanish Pumpkin Overlay" = true + "Bind Armor Stands With Player Heads" = true + + [client.variant_animal_textures] + "Enable Cow" = true + "Enable Pig" = true + "Enable Chicken" = true + "Enable Shiny Rabbit" = true + "Enable Shiny Llama" = true + "Enable Shiny Dolphin" = true + "Enable Shiny Slime" = true + "Enable L G B T Bees" = true + "Every Bee Is L G B T" = false + #The chance for an animal to have a special "Shiny" skin, like a shiny pokemon. This is 1 in X. Set to 0 to disable. + "Shiny Animal Chance" = 2048 + #If a shiny animal should emit occasional sparkles. + "Shiny Sparkles" = true + +[experimental] + "Adjustable Chat" = false + "Climate Control Remover" = false + #This feature generates Resource Pack Item Model predicates on the items defined in 'Items to Change' + #for the Enchantments defined in 'Enchantments to Register'. + #Example: if 'minecraft:silk_touch' is added to 'Enchantments to Register', and 'minecraft:netherite_pickaxe' + #is added to 'Items to Change', then a predicate named 'quark_has_enchant_minecraft_silk_touch' will be available + #to the netherite_pickaxe.json item model, whose value will be the enchantment level. + "Enchantment Predicates" = false + "Enchantments Begone" = false + "Game Nerfs" = false + "Narrator Readout" = false + "Overlay Shader" = false + "Spawner Replacer" = false + #Allows placing variant blocks automatically via a selector menu triggered from a keybind + "Variant Selector" = false + "Villager Rerolling Rework" = false + + [experimental.adjustable_chat] + "Horizontal Shift" = 0 + "Vertical Shift" = 0 + + [experimental.climate_control_remover] + #Disables the temperature comparison when choosing biomes to generate. + "Disable Temperature" = false + #Disables the humidity comparison when choosing biomes to generate. + "Disable Humidity" = false + #Disables the 'continentalness' comparison when choosing biomes to generate. + #WARNING: Enabling this will probably make oceans act a lot more like rivers. + "Disable Continentalness" = false + #Disables the 'erosion' comparison when choosing biomes to generate. + #WARNING: Enabling this will probably create very extreme height differences, and will make the End more chaotic. + "Disable Erosion" = false + #Disables the 'depth' comparison when choosing biomes to generate. + #WARNING: Enabling this will probably make cave biomes appear at unusual heights. + "Disable Depth" = false + #Disables the 'weirdness' comparison when choosing biomes to generate. + #WARNING: Enabling this will... well, probably make things weird. + "Disable Weirdness" = false + #Disables the 'offset' parameter when choosing biomes to generate. + #WARNING: Enabling this will make rarer nether biomes more common. + "Disable Offset" = false + + #This feature generates Resource Pack Item Model predicates on the items defined in 'Items to Change' + #for the Enchantments defined in 'Enchantments to Register'. + #Example: if 'minecraft:silk_touch' is added to 'Enchantments to Register', and 'minecraft:netherite_pickaxe' + #is added to 'Items to Change', then a predicate named 'quark_has_enchant_minecraft_silk_touch' will be available + #to the netherite_pickaxe.json item model, whose value will be the enchantment level. + [experimental.enchantment_predicates] + "Items To Change" = [] + "Enchantments To Register" = [] + + [experimental.enchantments_begone] + "Enchantments To Begone" = [] + + [experimental.game_nerfs] + #Makes Mending act like the Unmending mod + #https://www.curseforge.com/minecraft/mc-mods/unmending + "Nerf Mending" = true + #Makes Mending II still work even if mending is nerfed. + #If you want Mending II, disable the sanity check on Ancient Tomes and add minecraft:mending to the tomes. + "No Nerf for Mending II" = false + #Resets all villager discounts when zombified to prevent reducing prices to ridiculous levels + "Nerf Villager Discount" = true + #Makes Iron Golems not drop Iron Ingots + "Disable Iron Farms" = true + #Makes Boats not glide on ice + "Disable Ice Roads" = true + #Makes Sheep not drop Wool when killed + "Disable Wool Drops" = true + #Disables mob griefing for only specific entities + "Enable Selective Mob Griefing" = true + #Force Elytra to only work in specific dimensions + "Enable Dimension Locked Elytra" = true + #Makes falling blocks not able to be duped via dimension crossing + "Disable Falling Block Dupe" = true + #Fixes several piston physics exploits, most notably including TNT duping + "Disable Piston Physics Exploits" = true + #Fixes mushroom growth being able to replace blocks + "Disable Mushroom Block Removal" = true + #Makes tripwire hooks unable to be duplicated + "Disable Tripwire Hook Dupe" = true + "Non Griefing Entities" = ["minecraft:creeper", "minecraft:enderman"] + "Elytra Allowed Dimensions" = ["minecraft:the_end"] + + [experimental.overlay_shader] + #Sets the name of the shader to load on a regular basis. This can load any shader the Camera module can (and requires the Camera module enabled to apply said logic). + #Some useful shaders include 'desaturate', 'oversaturate', 'bumpy' + #Colorblind simulation shaders are available in the form of 'deuteranopia', 'protanopia', 'tritanopia', and 'achromatopsia' + Shader = "none" + + [experimental.spawner_replacer] + #Mobs to be replaced with other mobs. + #Format is: "mob1,mob2", i.e. "minecraft:spider,minecraft:skeleton" + "Replace Mobs" = [] + + #Allows placing variant blocks automatically via a selector menu triggered from a keybind + [experimental.variant_selector] + #Set this to true to automatically convert any dropped variant items into their originals. Do this ONLY if you intend to take control of every recipe via a data pack or equivalent, as this will introduce dupes otherwise. + "Convert Variant Items" = false + #Enable the hammer, allowing variants to be swapped between eachother, including the original block. Do this ONLY under the same circumstances as Convert Variant Items. + "Enable Hammer" = false + "Show Tooltip" = true + "Align Hud To Hotbar" = false + "Show Simple Hud" = false + "Show Hud" = true + "Enable Green Tint" = true + "Override Held Item Render" = true + "Hud Offset X" = 0 + "Hud Offset Y" = 0 + + [experimental.variant_selector.variants] + #The list of all variant types available for players to use. Values are treated as suffixes to block IDs for scanning. + #Prefix any variant type with ! to make it show up for Manual Variants but not be automatically scanned for. (e.g. '!polish') + "Variant Types" = ["slab", "stairs", "wall", "fence", "fence_gate", "vertical_slab"] + #By default, only a mod's namespace is scanned for variants for its items (e.g. if coolmod adds coolmod:fun_block, it'll search only for coolmod:fun_block_stairs). + # Mods in this list are also scanned for variants if none are found in itself (e.g. if quark is in the list and coolmod:fun_block_stairs doesn't exist, it'll try to look for quark:fun_block_stairs next) + "Tested Mods" = ["quark"] + "Print Variant Map To Log" = false + #Format is 'alias=original' in each value (e.g. 'wall=fence' means that a failed search for, minecraft:cobblestone_fence will try cobblestone_wall next) + Aliases = ["carpet=slab", "pane=fence"] + #Ends of block IDs to try and remove when looking for variants. (e.g. minecraft:oak_planks goes into minecraft:oak_stairs, so we have to include '_planks' in this list for it to find them or else it'll only look for minecraft:oak_planks_stairs) + "Strip Candidates" = ["_planks", "_wool", "_block", "s"] + #Add manual variant overrides here, the format is 'type,block,output' (e.g. polish,minecraft:stone_bricks,minecraft:chiseled_stone_bricks). The type must be listed in Variant Types + "Manual Variants" = [] + # A list of block IDs and mappings to be excluded from variant selection. + #To exclude a block from being turned into other blocks, just include the block ID (e.g. minecraft:cobblestone). + #To exclude a block from having other blocks turned into it, suffix it with = (e.g. =minecraft:cobblestone_stairs) + #To exclude a specific block->variant combination, put = between the two (e.g. minecraft:cobblestone=minecraft:cobblestone_stairs) + Blacklist = ["minecraft:snow", "minecraft:bamboo", "minecraft:bamboo_block"] + + [experimental.villager_rerolling_rework] + #If enabled, the first two trades a villager generates for a profession will always be the same for a given villager. + #This prevents repeatedly placing down a job site block to reroll the villager's trades. + "Seed Initial Villager Trades" = true + #Set to 0 to disable the chance to reroll trades when restocking. + #It's possible for a trade to not restock even when the chance is 1. This happens when the rerolled trade is one the villager already has. + #This chance only guarantees a reroll will be attempted. + #Allowed values: [0,1] + "Chance To Reroll When Restocking" = 0.25 + #Set to 0 to disable the chance to reroll trades when restocking. Set to -1 to allow unlimited rerolling. + #Trades earlier in the list will restock first. + "Maximum Restocks Per Day" = 3 + #If enabled, villagers will reroll when they restock, rather than when they begin work for the day. + #If disabled, players can prevent rerolling by ensuring the villager isn't out of stock on their last restock of the day. + "Reroll On Any Restock" = false + #If enabled, villagers will be able to reroll any trade that has been used AT ALL since the last restock. + "Reroll Even If Not Out Of Stock" = false + +[oddities] + Backpack = true + Crate = true + Magnets = true + "Matrix Enchanting" = false + Pipes = true + "Tiny Potato" = true + "Totem Of Holding" = true + + [oddities.backpack] + #Set this to true to allow the backpacks to be unequipped even with items in them + "Super Op Mode" = false + "Enable Ravager Hide" = true + "Items In Backpack Tick" = true + "Base Ravager Hide Drop" = 1 + "Extra Chance Per Looting" = 0.5 + "Allow Armor Stand Unloading" = true + + [oddities.crate] + "Max Items" = 640 + + [oddities.magnets] + #Any items you place in this list will be derived so that any block made of it will become magnetizable + "Magnetic Derivation List" = ["minecraft:iron_ingot", "minecraft:copper_ingot", "minecraft:exposed_copper", "minecraft:weathered_copper", "minecraft:oxidized_copper", "minecraft:raw_iron", "minecraft:raw_copper", "minecraft:iron_ore", "minecraft:deepslate_iron_ore", "minecraft:copper_ore", "minecraft:deepslate_copper_ore", "quark:gravisand"] + #Block IDs to force-allow magnetism on, regardless of their crafting recipe + "Magnetic Whitelist" = ["minecraft:chipped_anvil", "minecraft:damaged_anvil"] + #Block IDs to force-disable magnetism on, regardless of their crafting recipe + "Magnetic Blacklist" = ["minecraft:tripwire_hook"] + "Use Pre End Recipe" = false + + [oddities.matrix_enchanting] + #The maximum enchanting power the matrix enchanter can accept + "Max Bookshelves" = 15 + #Should this be X, the price of a piece increase by 1 every X pieces you generate + "Piece Price Scale" = 9 + #The higher this is, the better enchantments you'll get on books + "Book Enchantability" = 12 + #How many pieces you can generate without any bookshelves + "Base Max Piece Count" = 3 + #How many pieces you can generate without any bookshelves (for Books) + "Base Max Piece Count Book" = 1 + #At which piece count the calculation for the min level should default to increasing one per piece rather than using the scale factor + "Min Level Cutoff" = 8 + #How many pieces a single Lapis can generate + "Charge Per Lapis" = 4 + #How much the min level requirement for adding a new piece should increase for each piece added (up until the value of Min Level Cutoff) + "Min Level Scale Factor" = 1.2 + #How much the min level requirement for adding a new piece to a book should increase per each bookshelf being used + "Min Level Scale Factor Book" = 2.0 + #How much to multiply the frequency of pieces where at least one of the same type has been generated + "Dupe Multiplier" = 1.4 + #How much to multiply the frequency of pieces where incompatible pieces have been generated + "Incompatible Multiplier" = 0.0 + #Set to false to disable the ability to create Enchanted Books + "Allow Books" = true + #Set this to true to allow treasure enchantments to be rolled as pieces + "Allow Treasures" = false + #Any treasure enchantment IDs here will be able to appear in books in matrix enchanting + "Treasure Whitelist" = [] + #Set to false to disable the tooltip for items with pending enchantments + "Show Tooltip" = true + #By default, enchantment rarities are fuzzed a bit to feel better with the new system. Set this to false to override this behaviour. + "Normalize Rarity" = true + #Matrix Enchanting can be done with water instead of air around the enchanting table. Set this to false to disable this behaviour. + "Allow Underwater Enchanting" = true + #Matrix Enchanting can be done with short (<= 3px blocks) instead of air around the enchanting table. Set this to false to disable this behaviour. + "Allow Short Block Enchanting" = true + #Candles with soul sand below them or below the bookshelves dampen enchantments instead of influence them. + "Soul Candles Invert" = true + #A list of enchantment IDs you don't want the enchantment table to be able to create + "Disallowed Enchantments" = [] + #An array of influences each candle should apply. This list must be 16 elements long, and is in order of wool colors. + #A minus sign before an enchantment will make the influence decrease the probability of that enchantment. + "Influences List" = ["minecraft:unbreaking", "minecraft:fire_protection", "minecraft:knockback,minecraft:punch", "minecraft:feather_falling", "minecraft:looting,minecraft:fortune,minecraft:luck_of_the_sea", "minecraft:blast_protection", "minecraft:silk_touch,minecraft:channeling", "minecraft:bane_of_arthropods", "minecraft:protection", "minecraft:respiration,minecraft:loyalty,minecraft:infinity", "minecraft:sweeping,minecraft:multishot", "minecraft:efficiency,minecraft:sharpness,minecraft:lure,minecraft:power,minecraft:impaling,minecraft:quick_charge", "minecraft:aqua_affinity,minecraft:depth_strider,minecraft:riptide", "minecraft:thorns,minecraft:piercing", "minecraft:fire_aspect,minecraft:flame", "minecraft:smite,minecraft:projectile_protection"] + #An array of influences that other blocks should apply. + #Format is: "blockstate;strength;color;enchantments", i.e. "minecraft:sea_pickle[pickles=1,waterlogged=false];1;#008000;minecraft:aqua_affinity,minecraft:depth_strider,minecraft:riptide" (etc) or "minecraft:anvil[facing=north];#808080;-minecraft:thorns,minecraft:unbreaking" (etc) + "States To Influences" = [] + #Set to false to disable the ability to influence enchantment outcomes with candles + "Allow Influencing" = true + #The max amount of candles that can influence a single enchantment + "Influence Max" = 4 + #How much each candle influences an enchantment. This works as a multiplier to its weight + "Influence Power" = 0.125 + #If you set this to false, the vanilla Enchanting Table will no longer automatically convert to the Matrix Enchanting table. You'll have to add a recipe for the Matrix Enchanting Table to make use of this. + "Automatically Convert" = true + + [oddities.pipes] + #How long it takes for an item to cross a pipe. Bigger = slower. + "Pipe Speed" = 5 + #Set to 0 if you don't want pipes to have a max amount of items + "Max Pipe Items" = 16 + #When items eject or are absorbed by pipes, should they make sounds? + "Do Pipes Whoosh" = true + "Enable Encased Pipes" = true + "Render Pipe Items" = true + "Emit Vibrations" = true + + [oddities.tiny_potato] + #Set this to true to use the recipe without the Heart of Diamond, even if the Heart of Diamond is enabled. + "Never Use Heart Of Diamond" = false + #This feature disables itself if any of the following mods are loaded: + # - botania + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [oddities.totem_of_holding] + #Set this to false to remove the behaviour where totems destroy themselves if the player dies again. + "Dark Souls Mode" = true + #Totem will always spawn if the player killer is themselves. + "Spawn Totem on PVP Kill" = false + #Set this to true to make it so that if a totem is destroyed, the items it holds are destroyed alongside it rather than dropped + "Destroy Lost Items" = false + #Set this to false to only allow the owner of a totem to collect its items rather than any player + "Allow Anyone To Collect" = true + "Enable Soul Compass" = true + diff --git a/index.toml b/index.toml new file mode 100644 index 0000000..4d6a422 --- /dev/null +++ b/index.toml @@ -0,0 +1,481 @@ +hash-format = "sha256" + +[[files]] +file = "config/allurement-common.toml" +hash = "1e10f0bf2d27dededeaa726379e8f6375defa3df7cdadcb22244938e3c8c49e3" + +[[files]] +file = "config/defaultoptions/extra/config/notenoughanimations.json" +hash = "503070bad750f39e08f8d87678c61487edbfece1a3353a9527b08f7197f4aea3" + +[[files]] +file = "config/defaultoptions/extra/config/xenon++.toml" +hash = "5596c8e03becf322cffca6bc0b70eafc06d4e457806caf34ef40103f7ffa3e69" + +[[files]] +file = "config/defaultoptions/extra/config/xenon-options.json" +hash = "f0e339d4133faeac1297f951b32526510dabc6d30a2aa6701d6b5879c8ac8432" + +[[files]] +file = "config/defaultoptions/keybindings.txt" +hash = "492453a867917f0f4095ac97a1503c706842b0bc27382dbaaf0821063cf20aed" + +[[files]] +file = "config/defaultoptions/options.txt" +hash = "b049c4d7ae52e2bf445e87214b3deb0e3927d57869438352fc34d1d196d4670f" + +[[files]] +file = "config/everycomp-common.toml" +hash = "69a0410ceef163d01f3aa69f4da71830b425b56b4b1c4a91b5f4f9c72e1a841d" + +[[files]] +file = "config/mediumcore-common.toml" +hash = "fd2d673e6b5cb45172098c9a5a3ed5c24b3b7873cfeb5158985e446a0b7e5777" + +[[files]] +file = "config/quark-common.toml" +hash = "0e9253017e7e4899a312c1d33ae29f5a693ddedd141acbf757345b314ab7b0be" + +[[files]] +file = "mods/advancement-frames.pw.toml" +hash = "34b19d5e2f564339152197ab80c46252a7f1dfc8cdb221af8388001689ed6379" +metafile = true + +[[files]] +file = "mods/advancement-plaques.pw.toml" +hash = "d0578c8686aa8e24f7ba2660cb771baf27b04ae33521c686aec67ff622f1fbb1" +metafile = true + +[[files]] +file = "mods/alexs-caves.pw.toml" +hash = "ec436a1f3378f8bd08ccd02e0ee74c441ff51d73bb62d446f6123eb2d6ebed6b" +metafile = true + +[[files]] +file = "mods/alexs-cloud-storage.pw.toml" +hash = "bdbae88750284cfad729dd5dced813bdbb9f86b8ff2097ee55f50ad5c4db832c" +metafile = true + +[[files]] +file = "mods/alexs-mediumcore.pw.toml" +hash = "9f3c246c9b6c26fb6fab8ee94cc3c1db6564eb2071e87c162ec0294067a95668" +metafile = true + +[[files]] +file = "mods/alexs-mobs.pw.toml" +hash = "c7ef8f8629620ae3d9d2da71aaf440624c40157a80c0eda4298c0aa60b7c76c0" +metafile = true + +[[files]] +file = "mods/allurement!.pw.toml" +hash = "66637845d4532fda28d72b58fd28e57be92354ad250fff4048d352508e27f364" +metafile = true + +[[files]] +file = "mods/amendments.pw.toml" +hash = "fb72e8b371be37587b541f8442f6ad79a9873196a9d5a10a5f971258b9228a4e" +metafile = true + +[[files]] +file = "mods/appleskin.pw.toml" +hash = "0a1d5aeaae3975eaa4bb3a98e91852f797a5095794af70df41d50841c57ca347" +metafile = true + +[[files]] +file = "mods/architectury-api.pw.toml" +hash = "fa34a3117af7f8ed553ec563a7c90c1d6462184c7df5b837c831cb482c6ae582" +metafile = true + +[[files]] +file = "mods/attributefix.pw.toml" +hash = "ecdd4372e076170c6b3bc4665dfdc5dac60292aaac013c7f95305b43e8916495" +metafile = true + +[[files]] +file = "mods/autumnity.pw.toml" +hash = "ad9187e9de71c0259c492269a0bdf2959c98a86822bd8575678172620fabd0dd" +metafile = true + +[[files]] +file = "mods/back-up-beds.pw.toml" +hash = "b36c0ec51318660f2ec8a162247f96dd8b39042fff4af4f563deff3ff01ce8fe" +metafile = true + +[[files]] +file = "mods/badpackets.pw.toml" +hash = "b1e70c01c737670dab9430ea844053bdc0ffbb62519ea8846deaeb3c49de9655" +metafile = true + +[[files]] +file = "mods/balm.pw.toml" +hash = "1447df8a4bd1fd2cce2ae71f900f3d1f1626baa2fe37c877cef19549a4101c36" +metafile = true + +[[files]] +file = "mods/berry-good.pw.toml" +hash = "3e9b02238da5a6b6a89e7eccd519ad392ea3fd2af3e9012e208522937efd7c1a" +metafile = true + +[[files]] +file = "mods/better-climbing.pw.toml" +hash = "1bf633be9aa13b87fe2381a0aa4bf49df3d201303743142151bd443a0c87072b" +metafile = true + +[[files]] +file = "mods/blueprint.pw.toml" +hash = "dc0b2fab9c86d45c490e46a37bf1560698425f2c83609853a6c530b2b38ce321" +metafile = true + +[[files]] +file = "mods/boatload.pw.toml" +hash = "40ab7ade1fde2b98ce6fc644db5b8c4ca7c3aaabfbe7c45a55f7bdc019870351" +metafile = true + +[[files]] +file = "mods/bookshelf-lib.pw.toml" +hash = "64be5125bb867f68dec3ca9241395373ea49142b0fc0edf3a39bc12955b76b82" +metafile = true + +[[files]] +file = "mods/buzzier-bees.pw.toml" +hash = "d922768e2b70ad98fcbfb9954f14d1111f30f7e526e76ae864c3b27c33d3aaeb" +metafile = true + +[[files]] +file = "mods/catalogue.pw.toml" +hash = "0722da0022c3d9dcf6be08f561828222f61911b62aed7d8c75f71c126e12e1b8" +metafile = true + +[[files]] +file = "mods/chalk-mod.pw.toml" +hash = "98efea80bf5c0169b2566c3b76bec9afa4a349253ed87c0287b345c8f11b15a3" +metafile = true + +[[files]] +file = "mods/citadel.pw.toml" +hash = "e06b4f6a4a5fa7982439f57ca5015b616c606789d9deef0ddb78838b85306fed" +metafile = true + +[[files]] +file = "mods/clayworks.pw.toml" +hash = "d22e3505597e1e469d8d8c3df5c51c4bfca59c3a3f95a29f4014a5107c0380b8" +metafile = true + +[[files]] +file = "mods/cloth-config.pw.toml" +hash = "38cf4a76862812fefc9b1ae0b8fac02b3f706716f3228eb859b511950273e791" +metafile = true + +[[files]] +file = "mods/clumps.pw.toml" +hash = "fb8e035187556a9406507176782dd251769d8cdf14e9712b508bcc47ff6904d9" +metafile = true + +[[files]] +file = "mods/configured.pw.toml" +hash = "c1bdeff356cd2ac164e2c0e6d0ceeda234db9774c2df44fb9f0e71d3960cc3f1" +metafile = true + +[[files]] +file = "mods/controlling.pw.toml" +hash = "2a50d21837bba88e3c9490c6bb8e0a9b44b052645d5c1481b48a060439c20a3c" +metafile = true + +[[files]] +file = "mods/default-options.pw.toml" +hash = "91c2538d726a12623122d1a2945a6ad3d2d5b290d43c72149f21af560e8465eb" +metafile = true + +[[files]] +file = "mods/ding.pw.toml" +hash = "9a47ae3e125db2d8222de6b8e145678687201e500f9b788b9fd014619db091c3" +metafile = true + +[[files]] +file = "mods/domestication-innovation.pw.toml" +hash = "815edded2c6be145f2a82e48a4044955e4969a220d29d4290f395d38a6ff15e8" +metafile = true + +[[files]] +file = "mods/emi-loot.pw.toml" +hash = "5e3e6bd38266786f78f570307f54ab49bfc6337a0e6667d2635d3407c857ff86" +metafile = true + +[[files]] +file = "mods/emi.pw.toml" +hash = "50cccc98a2eabd7abf8d7b0fbb506bbf408a04c40aba21370e6d30053cb0d9bd" +metafile = true + +[[files]] +file = "mods/emitrades.pw.toml" +hash = "e141c57090cc48337e6a8b88e10edb3b434de8967aa6cbff252896b4ed53cf89" +metafile = true + +[[files]] +file = "mods/enchantment-descriptions.pw.toml" +hash = "9eccc7dd35aa94937c4ec819379dd8502d427616d56b85a603648926a223cf29" +metafile = true + +[[files]] +file = "mods/enhanced-mushrooms.pw.toml" +hash = "23a7bb32b5061475bb891159f3216235feabe3efa5e8eeb2036f0bca7f7a44b3" +metafile = true + +[[files]] +file = "mods/every-compat.pw.toml" +hash = "f8a6b91ac7b8164c5b88a955dceb3c7e2a0a3af017e43a969e141515c42f70a4" +metafile = true + +[[files]] +file = "mods/exposure.pw.toml" +hash = "5eb5a1b0ce99c73188ebfd5d45d2c563fe745556ad18d7e1dc745a70afd55e1b" +metafile = true + +[[files]] +file = "mods/farmers-delight.pw.toml" +hash = "32504030cc409f25f4864cb0387b906cd07f1c818301302faddd0de7f777d51c" +metafile = true + +[[files]] +file = "mods/ferrite-core.pw.toml" +hash = "4a73f04a8986129d79ea4f283a0a33ce51af17079b6efa23596af5bc685e1c1e" +metafile = true + +[[files]] +file = "mods/heartstone.pw.toml" +hash = "48259ca967372079e53a4144b5b96d6ffdd47e3142802663f42eb661df50e9e0" +metafile = true + +[[files]] +file = "mods/i-wanna-skate.pw.toml" +hash = "a36d0eeb8e5ad976c9b2ffb3910c9df0ba8535e17f781e169f4173086e34cda0" +metafile = true + +[[files]] +file = "mods/iceberg.pw.toml" +hash = "d0d383d4ff24fd6a4c5a9319806b0c99da9d0120fa14719911596eb39abc6f20" +metafile = true + +[[files]] +file = "mods/jade-addons-forge.pw.toml" +hash = "ee91acdffc481f535911c38fbc06c62c85e6531a2ee7e4e116401b3ad544e74a" +metafile = true + +[[files]] +file = "mods/jade.pw.toml" +hash = "ab6c2176b162ad517d68ddd9bb2c16f3cacc1fae5ad76abd6e62bc2f1d747f4b" +metafile = true + +[[files]] +file = "mods/jei.pw.toml" +hash = "e93f24623fe48bd7eee6e54e80c223ce71e639e210372124b8f22dd6b72924cc" +metafile = true + +[[files]] +file = "mods/just-enough-effect-descriptions-jeed.pw.toml" +hash = "2bc2974c8a78fbb020c5ed1d568e2539d090803cedc1fe9ac3a64b9ba8e06cef" +metafile = true + +[[files]] +file = "mods/just-enough-professions-jep.pw.toml" +hash = "76ad5b491a38df4f6debfae8808cb455c9b7ecd6c039a814ce1639278ac1f86c" +metafile = true + +[[files]] +file = "mods/just-enough-resources-jer.pw.toml" +hash = "83219231c7af4677a2507e01ca0faf39acca69f05506148d1d6a3e47b4c94562" +metafile = true + +[[files]] +file = "mods/justenoughbreeding.pw.toml" +hash = "200f03de3e7604b4f18a98310d0fb94ec1266dd72f9874808eb1f9601114a8e6" +metafile = true + +[[files]] +file = "mods/local-looks.pw.toml" +hash = "fb8b62337ee46a034b13546ec18dd8b0f8ced85533f8773bc54f6510805e3634" +metafile = true + +[[files]] +file = "mods/lucent.pw.toml" +hash = "62041794a3b89328e32fd32fe2fd85702b000978fb6aa34d9b60c2f67bf8a0d4" +metafile = true + +[[files]] +file = "mods/moonlight.pw.toml" +hash = "9836e452ae6c62dfccd573462e8a2c8bfdc9e03bb7b1d8271fa13dc6275fdfaf" +metafile = true + +[[files]] +file = "mods/mouse-tweaks.pw.toml" +hash = "ea7f91e66e1e475cd5fa10f56caa46a6a53754da99ed3252e6a6f68b731699b1" +metafile = true + +[[files]] +file = "mods/neapolitan.pw.toml" +hash = "d01255f11201634a26e318142a28fe47705388c27d2c44e0bc3fd69593870a00" +metafile = true + +[[files]] +file = "mods/no-chat-reports.pw.toml" +hash = "9a3c80bf6eee8234001d2a1602b3e123ac5706af051902e40f24abe317b86e50" +metafile = true + +[[files]] +file = "mods/noisium.pw.toml" +hash = "c60be719d5ede034bcc81d79fdec100b8d07c09a270ac01f571cf516840a263b" +metafile = true + +[[files]] +file = "mods/not-enough-animations.pw.toml" +hash = "26ca76ce6d17ce793960ef92cf1933f0e2330a425ff4f048d7d094f2a133f508" +metafile = true + +[[files]] +file = "mods/personality!.pw.toml" +hash = "cb0de35c2b0c500669ec9486ae381f3987c437070c56a4788697d2430ae6d531" +metafile = true + +[[files]] +file = "mods/player-trade-secure-trading-between-players.pw.toml" +hash = "990403dd8663ceea74c43fda30c1cd40a9c4e720220e9ce29b31ea9d685c439b" +metafile = true + +[[files]] +file = "mods/quark-oddities.pw.toml" +hash = "4b6d6900e40ceea949928423e7863817aeb07c17dba719ca45dac34d3f8d5b41" +metafile = true + +[[files]] +file = "mods/quark.pw.toml" +hash = "e513f146124930d8d2c9ae3c192fb399129efa16bb844140124c5b8da6ff8558" +metafile = true + +[[files]] +file = "mods/radium.pw.toml" +hash = "70153a0d8cc39a3584589a0d66e7746c09acb43497cd0d271b6a69839fedebf3" +metafile = true + +[[files]] +file = "mods/raised.pw.toml" +hash = "0ac29579249ed15e4fde2e62792e601d16a08f602d69ed96cd1ca37571973861" +metafile = true + +[[files]] +file = "mods/rats.pw.toml" +hash = "835f492eb562981d516fcce7b6784b8b83f81255166eb11bac1205a35dd32b0d" +metafile = true + +[[files]] +file = "mods/reef-redux.pw.toml" +hash = "54a07a9caf118de8cb355b5af7f06dc6e8876837df263c8db7a48177e519855a" +metafile = true + +[[files]] +file = "mods/rei.pw.toml" +hash = "6069264d5bd6f36ac4818f64b19b0734dc36f31b694f09d13368c437529dcf2d" +metafile = true + +[[files]] +file = "mods/retro-damage-indicators.pw.toml" +hash = "d5cb65a7e8f9f7d19d6749b22cae9e983d2f13f60aacde1d355c64201d5759ea" +metafile = true + +[[files]] +file = "mods/roughly-enough-items-server-component.pw.toml" +hash = "a511fe9c283cf212559795f83dda289a1b5e45a07ae4f2ce8ffe3793c9f3230e" +metafile = true + +[[files]] +file = "mods/roughly-enough-professions-rep.pw.toml" +hash = "6fd9a6d68248f4f9651ffef54116ca3dee692e7f9a3aebdf95fd79a431dfd8be" +metafile = true + +[[files]] +file = "mods/searchables.pw.toml" +hash = "35905f57cdb21a2aaa26345f2fabe3137ee2db6ee3bb2149cea206611b11ef69" +metafile = true + +[[files]] +file = "mods/simple-voice-chat.pw.toml" +hash = "0ba94a262f7f8ec584fdf46363c7c2a13f5b23610c8cee9a5423d1ab4a9b19ae" +metafile = true + +[[files]] +file = "mods/spark.pw.toml" +hash = "dbe2c430bf58c773082d7fd9d1bee2d510a2e0c08f390f7465e819b6e321ae09" +metafile = true + +[[files]] +file = "mods/species.pw.toml" +hash = "3953ac0eb81d402025a5ebefff82709dbedc8a411df8a70afc5149ab7e083309" +metafile = true + +[[files]] +file = "mods/structure-gel-api.pw.toml" +hash = "f9966c3e2ba050306b8c96f610ed705931cc48fedca54fb4270af875aa54dff3" +metafile = true + +[[files]] +file = "mods/supplementaries-squared.pw.toml" +hash = "a463bada10798e1cd951c6bedd167628d98b063bbf2ae94d7e6e60361fa0ac8d" +metafile = true + +[[files]] +file = "mods/supplementaries.pw.toml" +hash = "51d5ed928f1e8800a9dd42b44e0f8a4c547780dd763a91748812312b5d29f371" +metafile = true + +[[files]] +file = "mods/the-conjurer.pw.toml" +hash = "e7c7d4f5233ce10edc53b6e4a4aa02e79428b3d7a044b50510b7b8e8e06dd6b3" +metafile = true + +[[files]] +file = "mods/transmog.pw.toml" +hash = "8e4b77f9c0d67fb1279104d15966e847e983618c9263fbb51dec91f3768e5335" +metafile = true + +[[files]] +file = "mods/upgrade-aquatic.pw.toml" +hash = "427a4ac2edeca19b458978f01611b2be1179e325b609e3d56241f97c8415a789" +metafile = true + +[[files]] +file = "mods/waystones.pw.toml" +hash = "05bf4c054b1346db1696d76ebbbea07fc30668251a3c78905a98b3045df4dbf7" +metafile = true + +[[files]] +file = "mods/wits.pw.toml" +hash = "20dc25320ab64a7138f58f8fef29bbafba9ec30dd6873e81a8266645542514ce" +metafile = true + +[[files]] +file = "mods/woodworks.pw.toml" +hash = "d8b1fdcc4d8437ed8a69ef63821a9be7e99660e33cbd4166addab7f32548d6f3" +metafile = true + +[[files]] +file = "mods/xenon-forge.pw.toml" +hash = "5ad6515fd0e1d2f45e219e0a15066ff46c115a9aedba1a6e78d618dcf86fad7f" +metafile = true + +[[files]] +file = "mods/yungs-api.pw.toml" +hash = "896b09e7166d70f08e089862ad5eb8dbc8cfed02608f2c478587dbea191aadf2" +metafile = true + +[[files]] +file = "mods/yungs-menu-tweaks.pw.toml" +hash = "5b5fdfaf8e757e4f54e621aca1c52f5d8c90c7be3bc78c2978173326f5c02bf5" +metafile = true + +[[files]] +file = "mods/zeta.pw.toml" +hash = "86f3fe9dfda1e20b94ab08770214641e16882e314230d250f2f854a2051b4bde" +metafile = true + +[[files]] +file = "unsup.toml" +hash = "c222f49308e2c9cb6d111a1cca2727d707ea52f3b0f4d28d362062749f771dd5" diff --git a/mods/advancement-frames.pw.toml b/mods/advancement-frames.pw.toml new file mode 100644 index 0000000..78f2419 --- /dev/null +++ b/mods/advancement-frames.pw.toml @@ -0,0 +1,13 @@ +name = "Advancement Frames" +filename = "advancementframes-1.20-2.2.7.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/zUBn5hHr/versions/syxp8b5I/advancementframes-1.20-2.2.7.jar" +hash-format = "sha1" +hash = "c87f89d50e050752b61c6d7121bd766842fc0766" + +[update] +[update.modrinth] +mod-id = "zUBn5hHr" +version = "syxp8b5I" diff --git a/mods/advancement-plaques.pw.toml b/mods/advancement-plaques.pw.toml new file mode 100644 index 0000000..f7ce3ff --- /dev/null +++ b/mods/advancement-plaques.pw.toml @@ -0,0 +1,13 @@ +name = "Advancement Plaques" +filename = "AdvancementPlaques-1.20.1-forge-1.5.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/9NM0dXub/versions/1GjhWcGQ/AdvancementPlaques-1.20.1-forge-1.5.1.jar" +hash-format = "sha1" +hash = "459bf06be69d28ebf522d22905019cba785978c9" + +[update] +[update.modrinth] +mod-id = "9NM0dXub" +version = "1GjhWcGQ" diff --git a/mods/alexs-caves.pw.toml b/mods/alexs-caves.pw.toml new file mode 100644 index 0000000..fb70e46 --- /dev/null +++ b/mods/alexs-caves.pw.toml @@ -0,0 +1,13 @@ +name = "Alex's Caves" +filename = "alexscaves-1.1.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/U6GY0xp0/versions/pdifL7d0/alexscaves-1.1.4.jar" +hash-format = "sha1" +hash = "3899837681e024ab4d520301346980fe51eceffa" + +[update] +[update.modrinth] +mod-id = "U6GY0xp0" +version = "pdifL7d0" diff --git a/mods/alexs-cloud-storage.pw.toml b/mods/alexs-cloud-storage.pw.toml new file mode 100644 index 0000000..ac16d94 --- /dev/null +++ b/mods/alexs-cloud-storage.pw.toml @@ -0,0 +1,13 @@ +name = "Cloud Storage" +filename = "cloudstorage-1.4.0-1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ZiATPR3I/versions/RdcFsm0S/cloudstorage-1.4.0-1.20.jar" +hash-format = "sha1" +hash = "583d797ade4d5b4e8de5f0171957cf6b2f691d8d" + +[update] +[update.modrinth] +mod-id = "ZiATPR3I" +version = "RdcFsm0S" diff --git a/mods/alexs-mediumcore.pw.toml b/mods/alexs-mediumcore.pw.toml new file mode 100644 index 0000000..badc85b --- /dev/null +++ b/mods/alexs-mediumcore.pw.toml @@ -0,0 +1,13 @@ +name = "Mediumcore" +filename = "mediumcore-1.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/XjSJMp3X/versions/sLPdr0s2/mediumcore-1.0.0.jar" +hash-format = "sha1" +hash = "5edd02797337895a7c0dbe78f72640bbcc0d9ed1" + +[update] +[update.modrinth] +mod-id = "XjSJMp3X" +version = "sLPdr0s2" diff --git a/mods/alexs-mobs.pw.toml b/mods/alexs-mobs.pw.toml new file mode 100644 index 0000000..a60e7b8 --- /dev/null +++ b/mods/alexs-mobs.pw.toml @@ -0,0 +1,13 @@ +name = "Alex's Mobs" +filename = "alexsmobs-1.22.8.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/2cMuAZAp/versions/oaRqJ7uM/alexsmobs-1.22.8.jar" +hash-format = "sha1" +hash = "1bf92f4c70a4e01af077600d5543a63812e4d815" + +[update] +[update.modrinth] +mod-id = "2cMuAZAp" +version = "oaRqJ7uM" diff --git a/mods/allurement!.pw.toml b/mods/allurement!.pw.toml new file mode 100644 index 0000000..be9a3df --- /dev/null +++ b/mods/allurement!.pw.toml @@ -0,0 +1,13 @@ +name = "Allurement" +filename = "allurement-1.20.1-4.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/eIO12l2t/versions/qc1hOxYD/allurement-1.20.1-4.0.0.jar" +hash-format = "sha1" +hash = "1687ae1c9475c70f4044e7b381aa8df1c4249e1e" + +[update] +[update.modrinth] +mod-id = "eIO12l2t" +version = "qc1hOxYD" diff --git a/mods/amendments.pw.toml b/mods/amendments.pw.toml new file mode 100644 index 0000000..5af9a05 --- /dev/null +++ b/mods/amendments.pw.toml @@ -0,0 +1,13 @@ +name = "Amendments" +filename = "amendments-1.20-1.1.31.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/6iTJugQR/versions/iFucsSea/amendments-1.20-1.1.31.jar" +hash-format = "sha1" +hash = "8d554e03863249f677dda814ffe0b4daa2a56804" + +[update] +[update.modrinth] +mod-id = "6iTJugQR" +version = "iFucsSea" diff --git a/mods/appleskin.pw.toml b/mods/appleskin.pw.toml new file mode 100644 index 0000000..80a0124 --- /dev/null +++ b/mods/appleskin.pw.toml @@ -0,0 +1,13 @@ +name = "AppleSkin" +filename = "appleskin-forge-mc1.20.1-2.5.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/EsAfCjCV/versions/XdXDExVF/appleskin-forge-mc1.20.1-2.5.1.jar" +hash-format = "sha1" +hash = "81919356f84eab14258db98924b66c3c38e372b1" + +[update] +[update.modrinth] +mod-id = "EsAfCjCV" +version = "XdXDExVF" diff --git a/mods/architectury-api.pw.toml b/mods/architectury-api.pw.toml new file mode 100644 index 0000000..e4122ce --- /dev/null +++ b/mods/architectury-api.pw.toml @@ -0,0 +1,13 @@ +name = "Architectury API" +filename = "architectury-9.2.14-forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/1MKTLiiG/architectury-9.2.14-forge.jar" +hash-format = "sha1" +hash = "a52918a500ff421180a1cbd1a0cabee712134ec4" + +[update] +[update.modrinth] +mod-id = "lhGA9TYQ" +version = "1MKTLiiG" diff --git a/mods/attributefix.pw.toml b/mods/attributefix.pw.toml new file mode 100644 index 0000000..fc85c7f --- /dev/null +++ b/mods/attributefix.pw.toml @@ -0,0 +1,13 @@ +name = "AttributeFix" +filename = "AttributeFix-Forge-1.20.1-21.0.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/lOOpEntO/versions/Y42wjyly/AttributeFix-Forge-1.20.1-21.0.4.jar" +hash-format = "sha1" +hash = "6eb69343eb21d38f95d1b1d00e6bc777bdb336fa" + +[update] +[update.modrinth] +mod-id = "lOOpEntO" +version = "Y42wjyly" diff --git a/mods/autumnity.pw.toml b/mods/autumnity.pw.toml new file mode 100644 index 0000000..a14062d --- /dev/null +++ b/mods/autumnity.pw.toml @@ -0,0 +1,13 @@ +name = "Autumnity" +filename = "autumnity-1.20.1-5.0.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/cRh6MJ6n/versions/dNSKgdoR/autumnity-1.20.1-5.0.1.jar" +hash-format = "sha1" +hash = "b7dcdc74db6c25c5c6f1644304491a161f459a14" + +[update] +[update.modrinth] +mod-id = "cRh6MJ6n" +version = "dNSKgdoR" diff --git a/mods/back-up-beds.pw.toml b/mods/back-up-beds.pw.toml new file mode 100644 index 0000000..b18a1fc --- /dev/null +++ b/mods/back-up-beds.pw.toml @@ -0,0 +1,13 @@ +name = "Back Up Beds" +filename = "backupbeds-1.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/emKWxR7d/versions/aCh5Ua9b/backupbeds-1.0.0.jar" +hash-format = "sha1" +hash = "9175527cdade0ff5dd5efac11d15c4cdbd446596" + +[update] +[update.modrinth] +mod-id = "emKWxR7d" +version = "aCh5Ua9b" diff --git a/mods/badpackets.pw.toml b/mods/badpackets.pw.toml new file mode 100644 index 0000000..8b946fc --- /dev/null +++ b/mods/badpackets.pw.toml @@ -0,0 +1,13 @@ +name = "bad packets" +filename = "badpackets-forge-0.4.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ftdbN0KK/versions/aXZqpNgH/badpackets-forge-0.4.3.jar" +hash-format = "sha1" +hash = "34b4ae0b51fe8bb55529dd20968bf58e20b4a21e" + +[update] +[update.modrinth] +mod-id = "ftdbN0KK" +version = "aXZqpNgH" diff --git a/mods/balm.pw.toml b/mods/balm.pw.toml new file mode 100644 index 0000000..41a80a3 --- /dev/null +++ b/mods/balm.pw.toml @@ -0,0 +1,13 @@ +name = "Balm" +filename = "balm-forge-1.20.1-7.2.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/MBAkmtvl/versions/fzqus8s0/balm-forge-1.20.1-7.2.2.jar" +hash-format = "sha1" +hash = "c0bb062b52fa0a234d922e066d3e09c3df4297d9" + +[update] +[update.modrinth] +mod-id = "MBAkmtvl" +version = "fzqus8s0" diff --git a/mods/berry-good.pw.toml b/mods/berry-good.pw.toml new file mode 100644 index 0000000..ecc9e18 --- /dev/null +++ b/mods/berry-good.pw.toml @@ -0,0 +1,13 @@ +name = "Berry Good" +filename = "berry_good-1.20.1-7.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/2WZWaKCl/versions/a8xhP8dI/berry_good-1.20.1-7.0.0.jar" +hash-format = "sha1" +hash = "ae052f061baeffac6d7e79a570fe7341081d83cd" + +[update] +[update.modrinth] +mod-id = "2WZWaKCl" +version = "a8xhP8dI" diff --git a/mods/better-climbing.pw.toml b/mods/better-climbing.pw.toml new file mode 100644 index 0000000..6575b97 --- /dev/null +++ b/mods/better-climbing.pw.toml @@ -0,0 +1,13 @@ +name = "Better Climbing" +filename = "better_climbing-forge-3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ZucWZEBV/versions/DWFhllFz/better_climbing-forge-3.jar" +hash-format = "sha1" +hash = "74558f3499d9e5e1f4e29e0163781c594df52eb8" + +[update] +[update.modrinth] +mod-id = "ZucWZEBV" +version = "DWFhllFz" diff --git a/mods/blueprint.pw.toml b/mods/blueprint.pw.toml new file mode 100644 index 0000000..38fe055 --- /dev/null +++ b/mods/blueprint.pw.toml @@ -0,0 +1,13 @@ +name = "Blueprint" +filename = "blueprint-1.20.1-7.1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/VsM5EDoI/versions/LkOcOC7A/blueprint-1.20.1-7.1.0.jar" +hash-format = "sha1" +hash = "5ff3b2c8ff096d6481ed252f0371aeb60b460f27" + +[update] +[update.modrinth] +mod-id = "VsM5EDoI" +version = "LkOcOC7A" diff --git a/mods/boatload.pw.toml b/mods/boatload.pw.toml new file mode 100644 index 0000000..a861ccf --- /dev/null +++ b/mods/boatload.pw.toml @@ -0,0 +1,13 @@ +name = "Boatload" +filename = "boatload-1.20.1-5.0.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/hevpK888/versions/hCft0zTY/boatload-1.20.1-5.0.1.jar" +hash-format = "sha1" +hash = "7e04920780f58a0556f88f9934797deb2107641a" + +[update] +[update.modrinth] +mod-id = "hevpK888" +version = "hCft0zTY" diff --git a/mods/bookshelf-lib.pw.toml b/mods/bookshelf-lib.pw.toml new file mode 100644 index 0000000..38d71cc --- /dev/null +++ b/mods/bookshelf-lib.pw.toml @@ -0,0 +1,13 @@ +name = "Bookshelf" +filename = "Bookshelf-Forge-1.20.1-20.1.10.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/uy4Cnpcm/versions/zozOd4AM/Bookshelf-Forge-1.20.1-20.1.10.jar" +hash-format = "sha1" +hash = "6f9ac2d30eb64781ddd47ddf0b2ea84c32501e03" + +[update] +[update.modrinth] +mod-id = "uy4Cnpcm" +version = "zozOd4AM" diff --git a/mods/buzzier-bees.pw.toml b/mods/buzzier-bees.pw.toml new file mode 100644 index 0000000..da16a1d --- /dev/null +++ b/mods/buzzier-bees.pw.toml @@ -0,0 +1,13 @@ +name = "Buzzier Bees" +filename = "buzzier_bees-1.20.1-6.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/b7vOFSIp/versions/PyMRj9VM/buzzier_bees-1.20.1-6.0.0.jar" +hash-format = "sha1" +hash = "5de23e8c0e88ded278bb7fd1bddd245c88c72eb4" + +[update] +[update.modrinth] +mod-id = "b7vOFSIp" +version = "PyMRj9VM" diff --git a/mods/catalogue.pw.toml b/mods/catalogue.pw.toml new file mode 100644 index 0000000..170a247 --- /dev/null +++ b/mods/catalogue.pw.toml @@ -0,0 +1,13 @@ +name = "Catalogue" +filename = "catalogue-forge-1.20.1-1.8.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "b8cc73db430fa6015671492d4332a65a8c2f5cae" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4766090 +project-id = 459701 diff --git a/mods/chalk-mod.pw.toml b/mods/chalk-mod.pw.toml new file mode 100644 index 0000000..3bb09b4 --- /dev/null +++ b/mods/chalk-mod.pw.toml @@ -0,0 +1,13 @@ +name = "Chalk" +filename = "chalk-1.20.1-1.6.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/YWGP4Y1d/versions/YhueAXpz/chalk-1.20.1-1.6.4.jar" +hash-format = "sha1" +hash = "22f996677b1525316ec35c3cabb9099788847b62" + +[update] +[update.modrinth] +mod-id = "YWGP4Y1d" +version = "YhueAXpz" diff --git a/mods/citadel.pw.toml b/mods/citadel.pw.toml new file mode 100644 index 0000000..e8054c0 --- /dev/null +++ b/mods/citadel.pw.toml @@ -0,0 +1,13 @@ +name = "Citadel" +filename = "citadel-2.5.4-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/jJfV67b1/versions/ssXkoBKk/citadel-2.5.4-1.20.1.jar" +hash-format = "sha1" +hash = "e7f209ae09cf818ecf98698482b82a1cbe0fe058" + +[update] +[update.modrinth] +mod-id = "jJfV67b1" +version = "ssXkoBKk" diff --git a/mods/clayworks.pw.toml b/mods/clayworks.pw.toml new file mode 100644 index 0000000..299ddee --- /dev/null +++ b/mods/clayworks.pw.toml @@ -0,0 +1,13 @@ +name = "Clayworks" +filename = "clayworks-1.20.1-3.0.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/1iicrEO3/versions/aoLZaKRo/clayworks-1.20.1-3.0.1.jar" +hash-format = "sha1" +hash = "34a0a74ac1dc524ad00e3eea5608b397bd05552c" + +[update] +[update.modrinth] +mod-id = "1iicrEO3" +version = "aoLZaKRo" diff --git a/mods/cloth-config.pw.toml b/mods/cloth-config.pw.toml new file mode 100644 index 0000000..8d63340 --- /dev/null +++ b/mods/cloth-config.pw.toml @@ -0,0 +1,13 @@ +name = "Cloth Config API" +filename = "cloth-config-11.1.118-forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9s6osm5g/versions/nr1znv5v/cloth-config-11.1.118-forge.jar" +hash-format = "sha1" +hash = "c46ca3fba95691873a765f4e79750c615f33e446" + +[update] +[update.modrinth] +mod-id = "9s6osm5g" +version = "nr1znv5v" diff --git a/mods/clumps.pw.toml b/mods/clumps.pw.toml new file mode 100644 index 0000000..e11a134 --- /dev/null +++ b/mods/clumps.pw.toml @@ -0,0 +1,13 @@ +name = "Clumps" +filename = "Clumps-forge-1.20.1-12.0.0.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Wnxd13zP/versions/nAHGB5ls/Clumps-forge-1.20.1-12.0.0.4.jar" +hash-format = "sha1" +hash = "8809c7aa6c71389e9c59abfe5def52c1cb8d4f1c" + +[update] +[update.modrinth] +mod-id = "Wnxd13zP" +version = "nAHGB5ls" diff --git a/mods/configured.pw.toml b/mods/configured.pw.toml new file mode 100644 index 0000000..cb9cc8c --- /dev/null +++ b/mods/configured.pw.toml @@ -0,0 +1,13 @@ +name = "Configured" +filename = "configured-forge-1.20.1-2.2.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "065c2d287a52f52fc8d33d780192325ee6f4b6ae" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5180900 +project-id = 457570 diff --git a/mods/controlling.pw.toml b/mods/controlling.pw.toml new file mode 100644 index 0000000..a5459e8 --- /dev/null +++ b/mods/controlling.pw.toml @@ -0,0 +1,13 @@ +name = "Controlling" +filename = "Controlling-forge-1.20.1-12.0.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/xv94TkTM/versions/LH6Bi6Am/Controlling-forge-1.20.1-12.0.2.jar" +hash-format = "sha1" +hash = "6195a3d1464f8fb641d7e165163aea1a857ce08e" + +[update] +[update.modrinth] +mod-id = "xv94TkTM" +version = "LH6Bi6Am" diff --git a/mods/default-options.pw.toml b/mods/default-options.pw.toml new file mode 100644 index 0000000..c11612b --- /dev/null +++ b/mods/default-options.pw.toml @@ -0,0 +1,13 @@ +name = "Default Options" +filename = "defaultoptions-forge-1.20-18.0.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/WEg59z5b/versions/CKNINccT/defaultoptions-forge-1.20-18.0.1.jar" +hash-format = "sha1" +hash = "73af2309627a68a7bff3e53e02ea22fb5c4651e5" + +[update] +[update.modrinth] +mod-id = "WEg59z5b" +version = "CKNINccT" diff --git a/mods/ding.pw.toml b/mods/ding.pw.toml new file mode 100644 index 0000000..42a1a78 --- /dev/null +++ b/mods/ding.pw.toml @@ -0,0 +1,13 @@ +name = "Ding" +filename = "Ding-1.20.1-Forge-1.4.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/UEtTD3gP/versions/ZvOp5eWG/Ding-1.20.1-Forge-1.4.1.jar" +hash-format = "sha1" +hash = "c46db36e9fc40865d54590c1a59ea71915e341a6" + +[update] +[update.modrinth] +mod-id = "UEtTD3gP" +version = "ZvOp5eWG" diff --git a/mods/domestication-innovation.pw.toml b/mods/domestication-innovation.pw.toml new file mode 100644 index 0000000..d01e066 --- /dev/null +++ b/mods/domestication-innovation.pw.toml @@ -0,0 +1,13 @@ +name = "Domestication Innovation" +filename = "domesticationinnovation-1.7.1-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/h5JyLdjM/versions/SGxCLghg/domesticationinnovation-1.7.1-1.20.1.jar" +hash-format = "sha1" +hash = "8feae4ba8a3ffb117fa7b3b4291a520e2497fa1e" + +[update] +[update.modrinth] +mod-id = "h5JyLdjM" +version = "SGxCLghg" diff --git a/mods/emi-loot.pw.toml b/mods/emi-loot.pw.toml new file mode 100644 index 0000000..25e00b9 --- /dev/null +++ b/mods/emi-loot.pw.toml @@ -0,0 +1,13 @@ +name = "EMI Loot" +filename = "emi_loot-0.6.5+1.20.1+forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/qbbO7Jns/versions/91c49w5V/emi_loot-0.6.5%2B1.20.1%2Bforge.jar" +hash-format = "sha1" +hash = "dbaf0e9e00267860015d8991f0c4c38e39a994ed" + +[update] +[update.modrinth] +mod-id = "qbbO7Jns" +version = "91c49w5V" diff --git a/mods/emi.pw.toml b/mods/emi.pw.toml new file mode 100644 index 0000000..853d4ee --- /dev/null +++ b/mods/emi.pw.toml @@ -0,0 +1,13 @@ +name = "EMI" +filename = "emi-1.1.6+1.20.1+forge.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/fRiHVvU7/versions/5b1435Qy/emi-1.1.6%2B1.20.1%2Bforge.jar" +hash-format = "sha1" +hash = "3241252653bab30468bac7c1402edd8fd807fa83" + +[update] +[update.modrinth] +mod-id = "fRiHVvU7" +version = "5b1435Qy" diff --git a/mods/emitrades.pw.toml b/mods/emitrades.pw.toml new file mode 100644 index 0000000..a7697a7 --- /dev/null +++ b/mods/emitrades.pw.toml @@ -0,0 +1,13 @@ +name = "EMI Trades" +filename = "emitrades-forge-1.2.1+mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/j2HhbEE7/versions/LBT7pcVH/emitrades-forge-1.2.1%2Bmc1.20.1.jar" +hash-format = "sha1" +hash = "ea86eceb04978bc366fe022bbab5dd5ea0bd3ab4" + +[update] +[update.modrinth] +mod-id = "j2HhbEE7" +version = "LBT7pcVH" diff --git a/mods/enchantment-descriptions.pw.toml b/mods/enchantment-descriptions.pw.toml new file mode 100644 index 0000000..cee8b14 --- /dev/null +++ b/mods/enchantment-descriptions.pw.toml @@ -0,0 +1,13 @@ +name = "Enchantment Descriptions" +filename = "EnchantmentDescriptions-Forge-1.20.1-17.0.15.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/UVtY3ZAC/versions/P4T8CChc/EnchantmentDescriptions-Forge-1.20.1-17.0.15.jar" +hash-format = "sha1" +hash = "3a74fe0e8907520df16759f33a69804c2b91a070" + +[update] +[update.modrinth] +mod-id = "UVtY3ZAC" +version = "P4T8CChc" diff --git a/mods/enhanced-mushrooms.pw.toml b/mods/enhanced-mushrooms.pw.toml new file mode 100644 index 0000000..2d49e55 --- /dev/null +++ b/mods/enhanced-mushrooms.pw.toml @@ -0,0 +1,13 @@ +name = "Enhanced Mushrooms" +filename = "enhanced_mushrooms-5.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/4Zf7J76Q/versions/DSNxiUU9/enhanced_mushrooms-5.0.0.jar" +hash-format = "sha1" +hash = "8c82416022e838af7e19849e65199c478aa975fc" + +[update] +[update.modrinth] +mod-id = "4Zf7J76Q" +version = "DSNxiUU9" diff --git a/mods/every-compat.pw.toml b/mods/every-compat.pw.toml new file mode 100644 index 0000000..6e79a56 --- /dev/null +++ b/mods/every-compat.pw.toml @@ -0,0 +1,13 @@ +name = "Every Compat (Wood Good)" +filename = "everycomp-1.20-2.6.55.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/eiktJyw1/versions/UcNI6KkG/everycomp-1.20-2.6.55.jar" +hash-format = "sha1" +hash = "dfb56c2a8342a24605080a492487474218d54259" + +[update] +[update.modrinth] +mod-id = "eiktJyw1" +version = "UcNI6KkG" diff --git a/mods/exposure.pw.toml b/mods/exposure.pw.toml new file mode 100644 index 0000000..a669b96 --- /dev/null +++ b/mods/exposure.pw.toml @@ -0,0 +1,13 @@ +name = "Exposure" +filename = "exposure-1.20.1-1.6.0-forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/hB899VmG/versions/IaNkecwg/exposure-1.20.1-1.6.0-forge.jar" +hash-format = "sha1" +hash = "e8540cbffbdc957edadf124bef5a01779dfdcf09" + +[update] +[update.modrinth] +mod-id = "hB899VmG" +version = "IaNkecwg" diff --git a/mods/farmers-delight.pw.toml b/mods/farmers-delight.pw.toml new file mode 100644 index 0000000..ca92066 --- /dev/null +++ b/mods/farmers-delight.pw.toml @@ -0,0 +1,13 @@ +name = "Farmer's Delight" +filename = "FarmersDelight-1.20.1-1.2.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/R2OftAxM/versions/AxgOboGq/FarmersDelight-1.20.1-1.2.4.jar" +hash-format = "sha1" +hash = "71daa55fd88b6f181c51ec6892600415df591f64" + +[update] +[update.modrinth] +mod-id = "R2OftAxM" +version = "AxgOboGq" diff --git a/mods/ferrite-core.pw.toml b/mods/ferrite-core.pw.toml new file mode 100644 index 0000000..1a54c1b --- /dev/null +++ b/mods/ferrite-core.pw.toml @@ -0,0 +1,13 @@ +name = "FerriteCore" +filename = "ferritecore-6.0.1-forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/uXXizFIs/versions/DG5Fn9Sz/ferritecore-6.0.1-forge.jar" +hash-format = "sha1" +hash = "417fb6ce8f52abf40bd9d0390371790f9576f8ba" + +[update] +[update.modrinth] +mod-id = "uXXizFIs" +version = "DG5Fn9Sz" diff --git a/mods/heartstone.pw.toml b/mods/heartstone.pw.toml new file mode 100644 index 0000000..674cdf9 --- /dev/null +++ b/mods/heartstone.pw.toml @@ -0,0 +1,13 @@ +name = "Heartstone" +filename = "heartstone-1.20-1.3.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/NBY6AFje/versions/CU7DW2ln/heartstone-1.20-1.3.0.jar" +hash-format = "sha1" +hash = "1caf5715c4265882f695b2c8ec37257a527fdec6" + +[update] +[update.modrinth] +mod-id = "NBY6AFje" +version = "CU7DW2ln" diff --git a/mods/i-wanna-skate.pw.toml b/mods/i-wanna-skate.pw.toml new file mode 100644 index 0000000..f3c37da --- /dev/null +++ b/mods/i-wanna-skate.pw.toml @@ -0,0 +1,13 @@ +name = "I Wanna Skate" +filename = "iwannaskate-1.2.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/OuJDwbIs/versions/V5qgYPzs/iwannaskate-1.2.0.jar" +hash-format = "sha1" +hash = "13d32a92909c7079d7e18598f42dbfe1497b40cf" + +[update] +[update.modrinth] +mod-id = "OuJDwbIs" +version = "V5qgYPzs" diff --git a/mods/iceberg.pw.toml b/mods/iceberg.pw.toml new file mode 100644 index 0000000..f86d9e3 --- /dev/null +++ b/mods/iceberg.pw.toml @@ -0,0 +1,13 @@ +name = "Iceberg" +filename = "Iceberg-1.20.1-forge-1.1.21.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/5faXoLqX/versions/boNnPeth/Iceberg-1.20.1-forge-1.1.21.jar" +hash-format = "sha1" +hash = "1692af84ef74a07b1f2e5dcdbff821effafdd24b" + +[update] +[update.modrinth] +mod-id = "5faXoLqX" +version = "boNnPeth" diff --git a/mods/jade-addons-forge.pw.toml b/mods/jade-addons-forge.pw.toml new file mode 100644 index 0000000..80e9f4f --- /dev/null +++ b/mods/jade-addons-forge.pw.toml @@ -0,0 +1,13 @@ +name = "Jade Addons (Forge)" +filename = "JadeAddons-1.20.1-forge-5.2.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/xuDOzCLy/versions/AdyaTuHw/JadeAddons-1.20.1-forge-5.2.2.jar" +hash-format = "sha1" +hash = "74b567a2b23bf34cd37ee4c02059318f8cc702d7" + +[update] +[update.modrinth] +mod-id = "xuDOzCLy" +version = "AdyaTuHw" diff --git a/mods/jade.pw.toml b/mods/jade.pw.toml new file mode 100644 index 0000000..1a99dff --- /dev/null +++ b/mods/jade.pw.toml @@ -0,0 +1,13 @@ +name = "Jade 🔍" +filename = "Jade-1.20.1-forge-11.9.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/nvQzSEkH/versions/X6kFPDSp/Jade-1.20.1-forge-11.9.2.jar" +hash-format = "sha1" +hash = "c393847a8a8fc5ed6f594a12618e68900abe447c" + +[update] +[update.modrinth] +mod-id = "nvQzSEkH" +version = "X6kFPDSp" diff --git a/mods/jei.pw.toml b/mods/jei.pw.toml new file mode 100644 index 0000000..8e332af --- /dev/null +++ b/mods/jei.pw.toml @@ -0,0 +1,13 @@ +name = "Just Enough Items" +filename = "jei-1.20.1-forge-15.3.0.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/u6dRKJwZ/versions/PeYsGsQy/jei-1.20.1-forge-15.3.0.4.jar" +hash-format = "sha1" +hash = "1a431d34991d51998f9971c4291bac2d58eaa154" + +[update] +[update.modrinth] +mod-id = "u6dRKJwZ" +version = "PeYsGsQy" diff --git a/mods/just-enough-effect-descriptions-jeed.pw.toml b/mods/just-enough-effect-descriptions-jeed.pw.toml new file mode 100644 index 0000000..ee77cdb --- /dev/null +++ b/mods/just-enough-effect-descriptions-jeed.pw.toml @@ -0,0 +1,13 @@ +name = "Just Enough Effect Descriptions (JEED)" +filename = "jeed-1.20-2.1.12.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/EO27GKs1/versions/rONG0iY3/jeed-1.20-2.1.12.jar" +hash-format = "sha1" +hash = "38d95e3a45183e01dd527289ea765fbb69917646" + +[update] +[update.modrinth] +mod-id = "EO27GKs1" +version = "rONG0iY3" diff --git a/mods/just-enough-professions-jep.pw.toml b/mods/just-enough-professions-jep.pw.toml new file mode 100644 index 0000000..45dd710 --- /dev/null +++ b/mods/just-enough-professions-jep.pw.toml @@ -0,0 +1,13 @@ +name = "Just Enough Professions (JEP)" +filename = "JustEnoughProfessions-forge-1.20.1-3.0.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/kB56GtWA/versions/ANKVJC3T/JustEnoughProfessions-forge-1.20.1-3.0.1.jar" +hash-format = "sha1" +hash = "dd8b3252f980da6ff4bc39127a84d786cf0bd06f" + +[update] +[update.modrinth] +mod-id = "kB56GtWA" +version = "ANKVJC3T" diff --git a/mods/just-enough-resources-jer.pw.toml b/mods/just-enough-resources-jer.pw.toml new file mode 100644 index 0000000..229c60a --- /dev/null +++ b/mods/just-enough-resources-jer.pw.toml @@ -0,0 +1,13 @@ +name = "Just Enough Resources (JER)" +filename = "JustEnoughResources-1.20.1-1.4.0.247.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/uEfK2CXF/versions/jW52tbTk/JustEnoughResources-1.20.1-1.4.0.247.jar" +hash-format = "sha1" +hash = "526e788a9b38afc5171fab49b64a5a54e1bb25d7" + +[update] +[update.modrinth] +mod-id = "uEfK2CXF" +version = "jW52tbTk" diff --git a/mods/justenoughbreeding.pw.toml b/mods/justenoughbreeding.pw.toml new file mode 100644 index 0000000..9d553e9 --- /dev/null +++ b/mods/justenoughbreeding.pw.toml @@ -0,0 +1,13 @@ +name = "Just Enough Breeding (JEBr)" +filename = "justenoughbreeding-forge-1.20.x-1.2.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/9Pk89J3g/versions/96ywZ7No/justenoughbreeding-forge-1.20.x-1.2.1.jar" +hash-format = "sha1" +hash = "effa02960c81b5ff3d47316f793b76ca7b423db4" + +[update] +[update.modrinth] +mod-id = "9Pk89J3g" +version = "96ywZ7No" diff --git a/mods/local-looks.pw.toml b/mods/local-looks.pw.toml new file mode 100644 index 0000000..6f1e930 --- /dev/null +++ b/mods/local-looks.pw.toml @@ -0,0 +1,13 @@ +name = "Local Looks" +filename = "locallooks-1.5-1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/QYMWGqdh/versions/pPZVmGpY/locallooks-1.5-1.20.jar" +hash-format = "sha1" +hash = "348c9051b085f33e130b7f4619f9f634c106424a" + +[update] +[update.modrinth] +mod-id = "QYMWGqdh" +version = "pPZVmGpY" diff --git a/mods/lucent.pw.toml b/mods/lucent.pw.toml new file mode 100644 index 0000000..320e10d --- /dev/null +++ b/mods/lucent.pw.toml @@ -0,0 +1,13 @@ +name = "Lucent" +filename = "lucent-1.20.1-1.5.5.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/JE0fgMUp/versions/YHpxVMDQ/lucent-1.20.1-1.5.5.jar" +hash-format = "sha1" +hash = "d72dc411c4e35869044840e4b551e8734788bc51" + +[update] +[update.modrinth] +mod-id = "JE0fgMUp" +version = "YHpxVMDQ" diff --git a/mods/moonlight.pw.toml b/mods/moonlight.pw.toml new file mode 100644 index 0000000..6451b5e --- /dev/null +++ b/mods/moonlight.pw.toml @@ -0,0 +1,13 @@ +name = "Moonlight Lib" +filename = "moonlight-1.20-2.11.29-forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/twkfQtEc/versions/N9LlGRuD/moonlight-1.20-2.11.29-forge.jar" +hash-format = "sha1" +hash = "26eea72b9a7d721500abc45a9c7d54ab9ebfca5c" + +[update] +[update.modrinth] +mod-id = "twkfQtEc" +version = "N9LlGRuD" diff --git a/mods/mouse-tweaks.pw.toml b/mods/mouse-tweaks.pw.toml new file mode 100644 index 0000000..873d02a --- /dev/null +++ b/mods/mouse-tweaks.pw.toml @@ -0,0 +1,13 @@ +name = "Mouse Tweaks" +filename = "MouseTweaks-forge-mc1.20.1-2.25.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/aC3cM3Vq/versions/7JVXOe3K/MouseTweaks-forge-mc1.20.1-2.25.1.jar" +hash-format = "sha1" +hash = "d751153e722a4e014691c83f39f5b07c6ec5333c" + +[update] +[update.modrinth] +mod-id = "aC3cM3Vq" +version = "7JVXOe3K" diff --git a/mods/neapolitan.pw.toml b/mods/neapolitan.pw.toml new file mode 100644 index 0000000..2d60c63 --- /dev/null +++ b/mods/neapolitan.pw.toml @@ -0,0 +1,13 @@ +name = "Neapolitan" +filename = "neapolitan-1.20.1-5.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/InYMuiQt/versions/bSOBBF52/neapolitan-1.20.1-5.0.0.jar" +hash-format = "sha1" +hash = "2ef19ce68ea3873d572eb1440da58b0f1f9a41db" + +[update] +[update.modrinth] +mod-id = "InYMuiQt" +version = "bSOBBF52" diff --git a/mods/no-chat-reports.pw.toml b/mods/no-chat-reports.pw.toml new file mode 100644 index 0000000..9228d31 --- /dev/null +++ b/mods/no-chat-reports.pw.toml @@ -0,0 +1,13 @@ +name = "No Chat Reports" +filename = "NoChatReports-FORGE-1.20.1-v2.2.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/qQyHxfxd/versions/ksEG6N5E/NoChatReports-FORGE-1.20.1-v2.2.2.jar" +hash-format = "sha1" +hash = "069396e689ae887d065c8d61b7945e685fbcc65b" + +[update] +[update.modrinth] +mod-id = "qQyHxfxd" +version = "ksEG6N5E" diff --git a/mods/noisium.pw.toml b/mods/noisium.pw.toml new file mode 100644 index 0000000..13f8006 --- /dev/null +++ b/mods/noisium.pw.toml @@ -0,0 +1,13 @@ +name = "Noisium" +filename = "noisium-merged-2.0.1+mc1.20.x.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/KuNKN7d2/versions/AfjBJbK1/noisium-merged-2.0.1%2Bmc1.20.x.jar" +hash-format = "sha1" +hash = "1f51eb9613a49ee421d839ccb7c9f004b534dcaf" + +[update] +[update.modrinth] +mod-id = "KuNKN7d2" +version = "AfjBJbK1" diff --git a/mods/not-enough-animations.pw.toml b/mods/not-enough-animations.pw.toml new file mode 100644 index 0000000..66d20ab --- /dev/null +++ b/mods/not-enough-animations.pw.toml @@ -0,0 +1,13 @@ +name = "Not Enough Animations" +filename = "notenoughanimations-forge-1.7.3-mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/MPCX6s5C/versions/Av1z44jf/notenoughanimations-forge-1.7.3-mc1.20.1.jar" +hash-format = "sha1" +hash = "e51e63167f18672a8d34cdec9c1efe75914d18cb" + +[update] +[update.modrinth] +mod-id = "MPCX6s5C" +version = "Av1z44jf" diff --git a/mods/personality!.pw.toml b/mods/personality!.pw.toml new file mode 100644 index 0000000..3ef3cab --- /dev/null +++ b/mods/personality!.pw.toml @@ -0,0 +1,13 @@ +name = "Personality" +filename = "personality-1.20.1-4.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/zrAMu1nt/versions/K0BDgtcD/personality-1.20.1-4.0.0.jar" +hash-format = "sha1" +hash = "9996ee9d399e23c8110ac5df72009ae1445ac640" + +[update] +[update.modrinth] +mod-id = "zrAMu1nt" +version = "K0BDgtcD" diff --git a/mods/player-trade-secure-trading-between-players.pw.toml b/mods/player-trade-secure-trading-between-players.pw.toml new file mode 100644 index 0000000..c151edc --- /dev/null +++ b/mods/player-trade-secure-trading-between-players.pw.toml @@ -0,0 +1,13 @@ +name = "Player Trade - Secure Trading Between Players" +filename = "playertrade-1.20.1-b.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d8ce5bb9d87521b13d2df2b22fe19f5aacf52f40" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5110900 +project-id = 499619 diff --git a/mods/quark-oddities.pw.toml b/mods/quark-oddities.pw.toml new file mode 100644 index 0000000..1f28c24 --- /dev/null +++ b/mods/quark-oddities.pw.toml @@ -0,0 +1,13 @@ +name = "Quark Oddities" +filename = "QuarkOddities-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/qeEEslrN/versions/NrzERFzz/QuarkOddities-1.20.1.jar" +hash-format = "sha1" +hash = "69ed292c207af89febd156d83b3e78f64b35b969" + +[update] +[update.modrinth] +mod-id = "qeEEslrN" +version = "NrzERFzz" diff --git a/mods/quark.pw.toml b/mods/quark.pw.toml new file mode 100644 index 0000000..40e7033 --- /dev/null +++ b/mods/quark.pw.toml @@ -0,0 +1,13 @@ +name = "Quark" +filename = "Quark-4.0-443.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/qnQsVE2z/versions/mTZKUEO8/Quark-4.0-443.jar" +hash-format = "sha1" +hash = "4bb048c40a82963aa493b23776fb127d13386967" + +[update] +[update.modrinth] +mod-id = "qnQsVE2z" +version = "mTZKUEO8" diff --git a/mods/radium.pw.toml b/mods/radium.pw.toml new file mode 100644 index 0000000..2e06260 --- /dev/null +++ b/mods/radium.pw.toml @@ -0,0 +1,13 @@ +name = "Radium" +filename = "radium-mc1.20.1-0.12.3+git.50c5c33.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/2gvRmQXx/versions/NhMILNAm/radium-mc1.20.1-0.12.3%2Bgit.50c5c33.jar" +hash-format = "sha1" +hash = "c498557a39250523a29a40678ae86f1c03d757c0" + +[update] +[update.modrinth] +mod-id = "2gvRmQXx" +version = "NhMILNAm" diff --git a/mods/raised.pw.toml b/mods/raised.pw.toml new file mode 100644 index 0000000..881f805 --- /dev/null +++ b/mods/raised.pw.toml @@ -0,0 +1,13 @@ +name = "Raised" +filename = "raised-forge-1.20.1-3.1.3.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/nCQRBEiR/versions/rHORzYiO/raised-forge-1.20.1-3.1.3.jar" +hash-format = "sha1" +hash = "b8bfb049c7f4b5d8cca9739f78f42520ab119836" + +[update] +[update.modrinth] +mod-id = "nCQRBEiR" +version = "rHORzYiO" diff --git a/mods/rats.pw.toml b/mods/rats.pw.toml new file mode 100644 index 0000000..1245285 --- /dev/null +++ b/mods/rats.pw.toml @@ -0,0 +1,13 @@ +name = "Rats" +filename = "Rats-1.20.1-8.1.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/CETpiisl/versions/T5O7lDfS/Rats-1.20.1-8.1.2.jar" +hash-format = "sha1" +hash = "27505c72565156018e8c9219c14bc1f2b8bd1233" + +[update] +[update.modrinth] +mod-id = "CETpiisl" +version = "T5O7lDfS" diff --git a/mods/reef-redux.pw.toml b/mods/reef-redux.pw.toml new file mode 100644 index 0000000..60c74e5 --- /dev/null +++ b/mods/reef-redux.pw.toml @@ -0,0 +1,13 @@ +name = "Reef Redux" +filename = "reefredux-1.20.1-1.1.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/cXc3rmTO/versions/QeyzDYF7/reefredux-1.20.1-1.1.1.jar" +hash-format = "sha1" +hash = "01d116358c884769687304b7ab768f5634731c8f" + +[update] +[update.modrinth] +mod-id = "cXc3rmTO" +version = "QeyzDYF7" diff --git a/mods/rei.pw.toml b/mods/rei.pw.toml new file mode 100644 index 0000000..020ce3a --- /dev/null +++ b/mods/rei.pw.toml @@ -0,0 +1,13 @@ +name = "Roughly Enough Items (REI)" +filename = "RoughlyEnoughItems-12.1.725-forge.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/nfn13YXA/versions/2bDXz4ej/RoughlyEnoughItems-12.1.725-forge.jar" +hash-format = "sha1" +hash = "f238c2913044eaf48282dff46b7aab2dcd1a270b" + +[update] +[update.modrinth] +mod-id = "nfn13YXA" +version = "2bDXz4ej" diff --git a/mods/retro-damage-indicators.pw.toml b/mods/retro-damage-indicators.pw.toml new file mode 100644 index 0000000..5241e0f --- /dev/null +++ b/mods/retro-damage-indicators.pw.toml @@ -0,0 +1,13 @@ +name = "Retro Damage Indicators" +filename = "retrodamageindicators-1.0.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/5xDsLBRb/versions/2XsyrIHD/retrodamageindicators-1.0.1.jar" +hash-format = "sha1" +hash = "a63e8e355a866b285269e8bc654f854b488278c8" + +[update] +[update.modrinth] +mod-id = "5xDsLBRb" +version = "2XsyrIHD" diff --git a/mods/roughly-enough-items-server-component.pw.toml b/mods/roughly-enough-items-server-component.pw.toml new file mode 100644 index 0000000..07f94b4 --- /dev/null +++ b/mods/roughly-enough-items-server-component.pw.toml @@ -0,0 +1,13 @@ +name = "Roughly Enough Items Server Component (REI-SC)" +filename = "RoughlyEnoughItems-12.1.725-server-only.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/OM4ZYSws/versions/VvR2jxYh/RoughlyEnoughItems-12.1.725-server-only.jar" +hash-format = "sha1" +hash = "20e13ac7f58b04a2058e02af4637667609b4b507" + +[update] +[update.modrinth] +mod-id = "OM4ZYSws" +version = "VvR2jxYh" diff --git a/mods/roughly-enough-professions-rep.pw.toml b/mods/roughly-enough-professions-rep.pw.toml new file mode 100644 index 0000000..886995f --- /dev/null +++ b/mods/roughly-enough-professions-rep.pw.toml @@ -0,0 +1,13 @@ +name = "Roughly Enough Professions (REP)" +filename = "RoughlyEnoughProfessions-forge-1.20.1-2.0.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/V8XJ8f5f/versions/qdLND0lY/RoughlyEnoughProfessions-forge-1.20.1-2.0.2.jar" +hash-format = "sha1" +hash = "5e685b5a74d2ce0a5255822f26238ccca423943c" + +[update] +[update.modrinth] +mod-id = "V8XJ8f5f" +version = "qdLND0lY" diff --git a/mods/searchables.pw.toml b/mods/searchables.pw.toml new file mode 100644 index 0000000..4e675b3 --- /dev/null +++ b/mods/searchables.pw.toml @@ -0,0 +1,13 @@ +name = "Searchables" +filename = "Searchables-forge-1.20.1-1.0.3.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/fuuu3xnx/versions/PM9yAW1G/Searchables-forge-1.20.1-1.0.3.jar" +hash-format = "sha1" +hash = "5b976f6e76ec74cdef21865e31f56bcb11558db7" + +[update] +[update.modrinth] +mod-id = "fuuu3xnx" +version = "PM9yAW1G" diff --git a/mods/simple-voice-chat.pw.toml b/mods/simple-voice-chat.pw.toml new file mode 100644 index 0000000..b0e8f53 --- /dev/null +++ b/mods/simple-voice-chat.pw.toml @@ -0,0 +1,13 @@ +name = "Simple Voice Chat" +filename = "voicechat-forge-1.20.1-2.5.15.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9eGKb6K1/versions/akzMlJ1h/voicechat-forge-1.20.1-2.5.15.jar" +hash-format = "sha1" +hash = "621d54e3e42a5f927178447f5e37b3f0812dfefc" + +[update] +[update.modrinth] +mod-id = "9eGKb6K1" +version = "akzMlJ1h" diff --git a/mods/spark.pw.toml b/mods/spark.pw.toml new file mode 100644 index 0000000..20a1acf --- /dev/null +++ b/mods/spark.pw.toml @@ -0,0 +1,13 @@ +name = "spark" +filename = "spark-1.10.53-forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/l6YH9Als/versions/4FXHDE9F/spark-1.10.53-forge.jar" +hash-format = "sha1" +hash = "231fb325368c0660954f47bfb03493f5246fa4d1" + +[update] +[update.modrinth] +mod-id = "l6YH9Als" +version = "4FXHDE9F" diff --git a/mods/species.pw.toml b/mods/species.pw.toml new file mode 100644 index 0000000..2efc297 --- /dev/null +++ b/mods/species.pw.toml @@ -0,0 +1,13 @@ +name = "Species" +filename = "Species-1.20.1-1.3-Forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/s5d4P01r/versions/WWJ8Aftw/Species-1.20.1-1.3-Forge.jar" +hash-format = "sha1" +hash = "1606c1845882c951f574b7d17d05addaf6d7a383" + +[update] +[update.modrinth] +mod-id = "s5d4P01r" +version = "WWJ8Aftw" diff --git a/mods/structure-gel-api.pw.toml b/mods/structure-gel-api.pw.toml new file mode 100644 index 0000000..39f7136 --- /dev/null +++ b/mods/structure-gel-api.pw.toml @@ -0,0 +1,13 @@ +name = "Structure Gel API" +filename = "structure_gel-1.20.1-2.16.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/T8TGycIQ/versions/xavY0MZc/structure_gel-1.20.1-2.16.2.jar" +hash-format = "sha1" +hash = "ec8c59d2a69eca3249a8da673f572b40b6d59895" + +[update] +[update.modrinth] +mod-id = "T8TGycIQ" +version = "xavY0MZc" diff --git a/mods/supplementaries-squared.pw.toml b/mods/supplementaries-squared.pw.toml new file mode 100644 index 0000000..5d316d6 --- /dev/null +++ b/mods/supplementaries-squared.pw.toml @@ -0,0 +1,13 @@ +name = "Supplementaries Squared" +filename = "suppsquared-1.20-1.1.14.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/dCCkNFwE/versions/8PXoizc7/suppsquared-1.20-1.1.14.jar" +hash-format = "sha1" +hash = "1b02c35166233a7d59200456603b1fc3880497aa" + +[update] +[update.modrinth] +mod-id = "dCCkNFwE" +version = "8PXoizc7" diff --git a/mods/supplementaries.pw.toml b/mods/supplementaries.pw.toml new file mode 100644 index 0000000..ece8ac5 --- /dev/null +++ b/mods/supplementaries.pw.toml @@ -0,0 +1,13 @@ +name = "Supplementaries" +filename = "supplementaries-1.20-2.8.10.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fFEIiSDQ/versions/bY4VCxjZ/supplementaries-1.20-2.8.10.jar" +hash-format = "sha1" +hash = "f1c66ee484536135d907b0cb1834a0e179bad57f" + +[update] +[update.modrinth] +mod-id = "fFEIiSDQ" +version = "bY4VCxjZ" diff --git a/mods/the-conjurer.pw.toml b/mods/the-conjurer.pw.toml new file mode 100644 index 0000000..f2dd443 --- /dev/null +++ b/mods/the-conjurer.pw.toml @@ -0,0 +1,13 @@ +name = "The Conjurer" +filename = "the-conjurer-1.20.1-1.1.6.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/84MLqQxZ/versions/87u1KPDZ/the-conjurer-1.20.1-1.1.6.jar" +hash-format = "sha1" +hash = "0b7aee55e8fd499950185ef263115228fc200c5e" + +[update] +[update.modrinth] +mod-id = "84MLqQxZ" +version = "87u1KPDZ" diff --git a/mods/transmog.pw.toml b/mods/transmog.pw.toml new file mode 100644 index 0000000..0d59fd0 --- /dev/null +++ b/mods/transmog.pw.toml @@ -0,0 +1,13 @@ +name = "Transmog" +filename = "transmog-forge-1.3.0+1.20.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Th33t82F/versions/m4flMQ8W/transmog-forge-1.3.0%2B1.20.jar" +hash-format = "sha1" +hash = "fb009825144e608895e0c5e52d4fdbcc80b1105f" + +[update] +[update.modrinth] +mod-id = "Th33t82F" +version = "m4flMQ8W" diff --git a/mods/upgrade-aquatic.pw.toml b/mods/upgrade-aquatic.pw.toml new file mode 100644 index 0000000..a488e76 --- /dev/null +++ b/mods/upgrade-aquatic.pw.toml @@ -0,0 +1,13 @@ +name = "Upgrade Aquatic" +filename = "upgrade_aquatic-1.20.1-6.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/gTuTFFyz/versions/VUl1Dsmx/upgrade_aquatic-1.20.1-6.0.0.jar" +hash-format = "sha1" +hash = "439b2023c88929edda20f4cfbdb630df0050b10c" + +[update] +[update.modrinth] +mod-id = "gTuTFFyz" +version = "VUl1Dsmx" diff --git a/mods/waystones.pw.toml b/mods/waystones.pw.toml new file mode 100644 index 0000000..05d8919 --- /dev/null +++ b/mods/waystones.pw.toml @@ -0,0 +1,13 @@ +name = "Waystones" +filename = "waystones-forge-1.20-14.1.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/LOpKHB2A/versions/TlRV5nuf/waystones-forge-1.20-14.1.3.jar" +hash-format = "sha1" +hash = "b85d0fb174e544a025d4db86282773f8cc43b1e8" + +[update] +[update.modrinth] +mod-id = "LOpKHB2A" +version = "TlRV5nuf" diff --git a/mods/wits.pw.toml b/mods/wits.pw.toml new file mode 100644 index 0000000..20b79f1 --- /dev/null +++ b/mods/wits.pw.toml @@ -0,0 +1,13 @@ +name = "WITS (What Is This Structure?)" +filename = "wits-1.1.0+1.20.1-forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/AVo2esap/versions/KdWVlCUM/wits-1.1.0%2B1.20.1-forge.jar" +hash-format = "sha1" +hash = "59b065469899b8bb5f0dea25abc164baca278587" + +[update] +[update.modrinth] +mod-id = "AVo2esap" +version = "KdWVlCUM" diff --git a/mods/woodworks.pw.toml b/mods/woodworks.pw.toml new file mode 100644 index 0000000..11cf2d2 --- /dev/null +++ b/mods/woodworks.pw.toml @@ -0,0 +1,13 @@ +name = "Woodworks" +filename = "woodworks-1.20.1-3.0.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/rv1sovni/versions/LKgMFANs/woodworks-1.20.1-3.0.1.jar" +hash-format = "sha1" +hash = "80d25e86dbda17ced5f49b721b8b0b60c44572c3" + +[update] +[update.modrinth] +mod-id = "rv1sovni" +version = "LKgMFANs" diff --git a/mods/xenon-forge.pw.toml b/mods/xenon-forge.pw.toml new file mode 100644 index 0000000..8afaf4d --- /dev/null +++ b/mods/xenon-forge.pw.toml @@ -0,0 +1,18 @@ +name = "Xenon" +filename = "xenon-0.3.11+mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/aWDwN8NN/versions/JaqFrl3A/xenon-0.3.11%2Bmc1.20.1.jar" +hash-format = "sha1" +hash = "3fe71e8c80f93882a3d3c266af14d1f32d141e84" + +[option] +optional = true +default = true +description = "Xenon is a fork of Embeddium, which is a fork of Rubidium, which is a fork of Sodium.\n\nBasically, it's an client-side optimization mod. It's not required and can cause some rendering issues with other mods, so you can disable it to fix those minor visual bugs at the cost of performance." + +[update] +[update.modrinth] +mod-id = "aWDwN8NN" +version = "JaqFrl3A" diff --git a/mods/yungs-api.pw.toml b/mods/yungs-api.pw.toml new file mode 100644 index 0000000..e5e85f7 --- /dev/null +++ b/mods/yungs-api.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's API" +filename = "YungsApi-1.20-Forge-4.0.5.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Ua7DFN59/versions/aMs83SRk/YungsApi-1.20-Forge-4.0.5.jar" +hash-format = "sha1" +hash = "c3a989fdf8429828bd784e35e83f89c0786b43de" + +[update] +[update.modrinth] +mod-id = "Ua7DFN59" +version = "aMs83SRk" diff --git a/mods/yungs-menu-tweaks.pw.toml b/mods/yungs-menu-tweaks.pw.toml new file mode 100644 index 0000000..9dcf22b --- /dev/null +++ b/mods/yungs-menu-tweaks.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's Menu Tweaks" +filename = "YungsMenuTweaks-1.20.1-Forge-1.0.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/Hcy2DFKF/versions/3FmFt8jI/YungsMenuTweaks-1.20.1-Forge-1.0.2.jar" +hash-format = "sha1" +hash = "b43a0bc054d3974076d36b5cfec6aeab968d24a6" + +[update] +[update.modrinth] +mod-id = "Hcy2DFKF" +version = "3FmFt8jI" diff --git a/mods/zeta.pw.toml b/mods/zeta.pw.toml new file mode 100644 index 0000000..a268303 --- /dev/null +++ b/mods/zeta.pw.toml @@ -0,0 +1,13 @@ +name = "Zeta" +filename = "Zeta-1.0-16.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/MVARlG2f/versions/8gI46xKb/Zeta-1.0-16.jar" +hash-format = "sha1" +hash = "0e45be88cb4c30e131ca630bd415f7f02f1f1e8d" + +[update] +[update.modrinth] +mod-id = "MVARlG2f" +version = "8gI46xKb" diff --git a/pack.toml b/pack.toml new file mode 100644 index 0000000..7b8e309 --- /dev/null +++ b/pack.toml @@ -0,0 +1,14 @@ +name = "Voice Fucker Caves" +author = "Jordy" +version = "1.0.0" +pack-format = "packwiz:1.1.0" + +[index] +file = "index.toml" +hash-format = "sha256" +hash = "808c3a79d7531ff460af0de1b9c4fae9bfe5e7782398db72ca81dc61b82774fa" + +[versions] +forge = "47.2.0" +minecraft = "1.20.1" +unsup = "0.2.3" diff --git a/unsup.toml b/unsup.toml new file mode 100644 index 0000000..8e1f8ca --- /dev/null +++ b/unsup.toml @@ -0,0 +1,37 @@ +[flavor_groups.recipe_viewer] +name = "Recipe Viewer" +description = "Choose an item/recipe viewer." +side = "client" +[[flavor_groups.recipe_viewer.choices]] +id = "jei" +name = "JEI" +description = "Just Enough Items, the most popular option." +[[flavor_groups.recipe_viewer.choices]] +id = "rei" +name = "REI" +description = "Roughly Enough Items, another fairly popular option. Most commonly used on Fabric." +[[flavor_groups.recipe_viewer.choices]] +id = "emi" +name = "EMI" +description = "...EMI doesn't stand for anything. A relatively new option and the default for this pack." + +[metafile.jei] +flavors = ["jei", "emi"] +[metafile.rei] +flavors = ["rei"] +[metafile.emi] +flavors = ["emi"] +[metafile.just-enough-resources-jer] +flavors = ["jei"] +[metafile.just-enough-professions-jep] +flavors = ["jei", "emi"] +[metafile.architectury-api] +flavors = ["rei"] +[metafile.roughly-enough-professions-rep] +flavors = ["rei"] +[metafile.emiffect] +flavors = ["emi"] +[metafile.emitrades] +flavors = ["emi"] +[metafile.emi-loot] +flavors = ["emi"]