{"id":43410,"date":"2026-06-02T03:21:07","date_gmt":"2026-06-02T00:21:07","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/cobbleoregenerator\/"},"modified":"2026-06-02T03:21:07","modified_gmt":"2026-06-02T00:21:07","slug":"cobbleoregenerator","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/cobbleoregenerator\/","title":{"rendered":"CobbleOreGenerator"},"content":{"rendered":"<p># CobbleOre Generator &#8211; Fabric 1.21.1<\/p>\n<p>A Minecraft Fabric mod for version 1.21.1 that makes cobblestone generators generate ores! Based on the original mod by OffsetMods538.<\/p>\n<p>## Features<\/p>\n<p>&#8211; **25% Chance for Ores**: When cobblestone is generated, there&#8217;s a 25% chance it becomes an ore instead<br \/>\n&#8211; **Fully Configurable**: JSON config file lets you control which blocks spawn and their weights<br \/>\n&#8211; **Modded Support**: Works with any mod that adds ores &#8211; just add them to the config!<br \/>\n&#8211; **Balanced by Default**: Comes with sensible default weights for all vanilla ores<\/p>\n<p>## How It Works<\/p>\n<p>When lava and water interact to create cobblestone in a generator, this mod has a 25% chance to replace that cobblestone with a random ore based on weighted probabilities defined in your config file.<\/p>\n<p>## Configuration<\/p>\n<p>The config file is located at `.minecraft\/config\/cog.json`<\/p>\n<p>### Default Configuration<\/p>\n<p>The mod comes with these default ore weights:<\/p>\n<p>| Ore | Weight | Rarity |<br \/>\n|&#8212;&#8211;|&#8212;&#8212;&#8211;|&#8212;&#8212;&#8211;|<br \/>\n| Coal (both variants) | 30 each | Common |<br \/>\n| Iron (both variants) | 25 each | Common |<br \/>\n| Copper (both variants) | 20 each | Common |<br \/>\n| Redstone (both variants) | 15 each | Uncommon |<br \/>\n| Lapis (both variants) | 12 each | Uncommon |<br \/>\n| Gold (both variants) | 10 each | Uncommon |<br \/>\n| Diamond (both variants) | 3 each | Rare |<br \/>\n| Emerald (both variants) | 2 each | Very Rare |<\/p>\n<p>### Config Format<\/p>\n<p>The config uses a simple weight-based system. Higher weight = more common.<\/p>\n<p>&#8220;`json<br \/>\n{<br \/>\n  &#8220;generatableBlocks&#8221;: {<br \/>\n    &#8220;minecraft:cobblestone&#8221;: 30,<br \/>\n    &#8220;minecraft:diamond_ore&#8221;: 3,<br \/>\n    &#8220;minecraft:emerald_ore&#8221;: 2<br \/>\n  }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>**Weight Examples:**<br \/>\n&#8211; 2 blocks with weight 1 each = 50\/50 chance<br \/>\n&#8211; Block A with weight 30, Block B with weight 1 = ~97% vs ~3%<\/p>\n<p>### Adding Modded Ores<\/p>\n<p>Just add the block ID and weight to the config:<\/p>\n<p>&#8220;`json<br \/>\n{<br \/>\n  &#8220;generatableBlocks&#8221;: {<br \/>\n    &#8220;minecraft:diamond_ore&#8221;: 3,<br \/>\n    &#8220;create:zinc_ore&#8221;: 15,<br \/>\n    &#8220;thermal:silver_ore&#8221;: 10,<br \/>\n    &#8220;mekanism:osmium_ore&#8221;: 12<br \/>\n  }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>### Fun Configurations<\/p>\n<p>**Chaos Mode** &#8211; Generate ANY block:<br \/>\n&#8220;`json<br \/>\n{<br \/>\n  &#8220;generatableBlocks&#8221;: {<br \/>\n    &#8220;minecraft:diamond_block&#8221;: 1,<br \/>\n    &#8220;minecraft:tnt&#8221;: 1,<br \/>\n    &#8220;minecraft:cake&#8221;: 10<br \/>\n  }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>**Easy Mode** &#8211; More valuable ores:<br \/>\n&#8220;`json<br \/>\n{<br \/>\n  &#8220;generatableBlocks&#8221;: {<br \/>\n    &#8220;minecraft:diamond_ore&#8221;: 30,<br \/>\n    &#8220;minecraft:emerald_ore&#8221;: 20,<br \/>\n    &#8220;minecraft:gold_ore&#8221;: 50<br \/>\n  }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>## Installation<\/p>\n<p>### For Players:<\/p>\n<p>1. Install Fabric Loader for Minecraft 1.21.1<br \/>\n2. Download Fabric API for 1.21.1<br \/>\n3. Place both Fabric API and this mod&#8217;s `.jar` file in your `.minecraft\/mods` folder<br \/>\n4. Launch Minecraft with the Fabric profile<br \/>\n5. (Optional) Edit the config at `.minecraft\/config\/cog.json`<\/p>\n<p>### For Developers:<\/p>\n<p>#### First Time Setup<\/p>\n<p>Before building, you need to set up the Gradle wrapper:<\/p>\n<p>**Option 1: Using the download script (easiest)**<br \/>\n&#8220;`bash<br \/>\n# Linux\/Mac<br \/>\nchmod +x download-wrapper.sh<br \/>\n.\/download-wrapper.sh<\/p>\n<p># Windows<br \/>\ndownload-wrapper.bat<br \/>\n&#8220;`<\/p>\n<p>**Option 2: If you have Gradle installed**<br \/>\n&#8220;`bash<br \/>\ngradle wrapper<br \/>\n&#8220;`<\/p>\n<p>**Option 3: Manual download**<br \/>\nDownload `gradle-wrapper.jar` from:<br \/>\nhttps:\/\/raw.githubusercontent.com\/gradle\/gradle\/v8.8.0\/gradle\/wrapper\/gradle-wrapper.jar<\/p>\n<p>Place it in: `gradle\/wrapper\/gradle-wrapper.jar`<\/p>\n<p>#### Building the Mod<\/p>\n<p>Once the wrapper is set up:<\/p>\n<p>&#8220;`bash<br \/>\n# Linux\/Mac<br \/>\n.\/gradlew build<\/p>\n<p># Windows<br \/>\ngradlew.bat build<br \/>\n&#8220;`<\/p>\n<p>The compiled `.jar` file will be located in `build\/libs\/`<\/p>\n<p>## Requirements<\/p>\n<p>&#8211; Minecraft 1.21.1<br \/>\n&#8211; Fabric Loader 0.16.0 or higher<br \/>\n&#8211; Fabric API 0.102.0+1.21.1 or higher<br \/>\n&#8211; Java 21 or higher<\/p>\n<p>## Compatibility<\/p>\n<p>This mod should be compatible with most other mods. It only modifies the cobblestone generation behavior and uses mixins to hook into fluid interactions.<\/p>\n<p>## FAQ<\/p>\n<p>**Q: Does this work with modded ores?**<br \/>\nA: Yes! Just add them to the config file with their block ID and desired weight.<\/p>\n<p>**Q: Can I make it generate blocks other than ores?**<br \/>\nA: Absolutely! You can use any block ID in the config. Want cake generators? Go for it!<\/p>\n<p>**Q: The ores aren&#8217;t generating!**<br \/>\nA: Make sure you have a proper cobblestone generator (lava + water creating cobblestone). Stone generators won&#8217;t work. Also remember it&#8217;s only a 25% chance.<\/p>\n<p>**Q: Can I change the 25% chance?**<br \/>\nA: The percentage is hardcoded in the mod, but you can adjust the relative frequencies using weights in the config.<\/p>\n<p>**Q: Will this work on servers?**<br \/>\nA: Yes! Just install it on the server like any other Fabric mod.<\/p>\n<p>## Credits<\/p>\n<p>&#8211; Original concept and mod by OffsetMods538<br \/>\n&#8211; Adapted for Minecraft 1.21.1<\/p>\n<p>## License<\/p>\n<p>This mod is available under the MIT license.<\/p>\n<p>## Links<\/p>\n<p>&#8211; Original mod: https:\/\/github.com\/OffsetMods538\/CobbleOre-Generator<br \/>\n&#8211; Original Modrinth page: https:\/\/modrinth.com\/mod\/cog<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Cobblestone generator generates ores<\/p>\n","protected":false},"featured_media":43411,"template":"","meta":{"_minecraft_slug":"cobbleoregenerator","_minecraft_project_id":"CsuHS0Rf","_minecraft_author":"krsticmilos02","_minecraft_license":"MIT","_minecraft_downloads":800,"_minecraft_follows":1,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"cobbleoregenerator.zip","_minecraft_size_bytes":7874,"_minecraft_version_count":1,"_minecraft_updated_at":"2026-05-15T20:57:32.225654Z","_minecraft_date_created":"2025-11-06T07:15:25.676658Z","_minecraft_date_modified":"2025-11-04T02:59:11.419328Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/cobbleoregenerator","_minecraft_icon_attachment_id":43411,"_minecraft_imported_at":"2026-06-02T00:21:08+00:00","_minecraft_import_hash":"c7b7948c751b2f7761258b4d7078323a","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[97,89,92],"mod_loader":[99],"minecraft_version":[37,40,73,74,38,78,79,80,81,82],"class_list":["post-43410","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-fabric","mod_category-game-mechanics","mod_category-utility","mod_loader-fabric","minecraft_version-1-21-1","minecraft_version-1-21-10","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>CobbleOreGenerator - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/cobbleoregenerator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CobbleOreGenerator - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Cobblestone generator generates ores\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/cobbleoregenerator\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/cobbleoregenerator\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/cobbleoregenerator\\\/\",\"name\":\"CobbleOreGenerator - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/cobbleoregenerator\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/cobbleoregenerator\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/cobbleoregenerator-icon-edd341c882d8543d8f4f97bf6b4e182515e48024_96.webp\",\"datePublished\":\"2026-06-02T00:21:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/cobbleoregenerator\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/cobbleoregenerator\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/cobbleoregenerator\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/cobbleoregenerator-icon-edd341c882d8543d8f4f97bf6b4e182515e48024_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/cobbleoregenerator-icon-edd341c882d8543d8f4f97bf6b4e182515e48024_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/cobbleoregenerator\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"CobbleOreGenerator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"CobbleOreGenerator - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/cobbleoregenerator\/","og_locale":"en_US","og_type":"article","og_title":"CobbleOreGenerator - Minecraft","og_description":"Cobblestone generator generates ores","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/cobbleoregenerator\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/cobbleoregenerator\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/cobbleoregenerator\/","name":"CobbleOreGenerator - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/cobbleoregenerator\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/cobbleoregenerator\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/cobbleoregenerator-icon-edd341c882d8543d8f4f97bf6b4e182515e48024_96.webp","datePublished":"2026-06-02T00:21:07+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/cobbleoregenerator\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/cobbleoregenerator\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/cobbleoregenerator\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/cobbleoregenerator-icon-edd341c882d8543d8f4f97bf6b4e182515e48024_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/cobbleoregenerator-icon-edd341c882d8543d8f4f97bf6b4e182515e48024_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/cobbleoregenerator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"CobbleOreGenerator"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/43410","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/43411"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=43410"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=43410"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=43410"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=43410"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}