{"id":66471,"date":"2026-06-03T22:29:10","date_gmt":"2026-06-03T19:29:10","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/excavated_variants\/"},"modified":"2026-06-03T22:29:10","modified_gmt":"2026-06-03T19:29:10","slug":"excavated_variants","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/excavated_variants\/","title":{"rendered":"Excavated Variants"},"content":{"rendered":"<p># Excavated Variants<\/p>\n<p>NeoForge version requires: Dynamic Asset Generator<\/p>\n<p>Fabric\/Quilt version requires: Dynamic Asset Generator and Fabric API\/Quilted Fabric API<br \/>\n&nbsp;<\/p>\n<p>Adds automatically generated variants of ores based on various stones.<\/p>\n<p>## Details:<\/p>\n<p>Many mods add new stones or new ores. _Excavated Variants_ automatically adds new ores for each combination of ore and stone variant. Additionally, _Excavated Variants_ attempts to set up world gen for these ore variants. The variants added can be changed in the config file; some mods are built in to the default configuration; others will have to be manually added. See _Images_ tab of _Curseforge_ page for examples of generated ores.<\/p>\n<p>## Troubleshooting:<\/p>\n<p>Running into issues? Start here!<\/p>\n<p>* If world or game loading times are slow, try turning on stronger asset and\/or data caching in the config for _Dynamic Asset Generator_.<br \/>\n* Is the game crashing on launch? Do ore textures turn magenta and black? Something may be wrong with your config. Try removing and resetting it.<br \/>\n* Are you missing compatibility for a mod listed below? Delete your configs to reset them to the default.<\/p>\n<p>## Compatibility:<\/p>\n<p>_Excavated Variants_ comes with default configs that include ore variants for the following mods, in addition to vanilla stones and ores:<\/p>\n<p>* Quark<br \/>\n* Create<br \/>\n* Oh The Biomes You&#8217;ll Go<br \/>\n* Tech Reborn<br \/>\n* Immersive Engineering<br \/>\n* Blockus<br \/>\n* Better End<br \/>\n* Better Nether<br \/>\n* Promenade<br \/>\n* Twigs<br \/>\n* Unearthed<br \/>\n* Bewitchment<br \/>\n* Mekanism<br \/>\n* Mystical Agriculture<br \/>\n* And more!<\/p>\n<p>## Config Format<\/p>\n<p>The main config file, `config\/excavated_variants.json`, contains several options:<\/p>\n<p>* **attempt_worldgen_replacement**: Toggles ore-gen changes; without this, ores won&#8217;t be replaced during world gen.<br \/>\n* **add_conversion_recipes**: Toggles whether to add recipes to convert variants back to the base ore.<\/p>\n<p>All other configuration is loaded through the `globalresources` folder. You may add new config files there directly, but if you want to extract the built-in<br \/>\nconfigs in order to edit them, open the `defaultresources.json` config file. It should look something like as follows:<br \/>\n&#8220;`json<br \/>\n{<br \/>\n  &#8220;extract&#8221;: {<br \/>\n    &#8220;excavated_variants&#8221;: &#8220;unextracted&#8221;<br \/>\n  }<br \/>\n}<br \/>\n&#8220;`<br \/>\nChange `unextracted` to `extract` and load the game once. Now, the default configs will be available to edit in the `globalresources` folder.<\/p>\n<p>**Note**: If you just want to add more configs, you do not need to (and should not) do this. You can add new config files without extracting existing ones.<\/p>\n<p>Configs define four main data types:<\/p>\n<p>* **Ground Types**: Ground types represent classes of ores and stones. They are used to determine which new ore\/stone combinations (variants) should be created. For example: `excavated_variants:overworld` is a category shared by normal minecraft stone, deepslate, and overworld ores.<br \/>\n* **Ores**: Ores are types of blocks which can exist in any number of different stones. During worldgen, they are replaced with variants matching neighboring stones. For example: `excavated_variants:minecraft\/iron_ore` represents both normal and deepslate iron ore, as well as any other variants generated.<br \/>\n* **Stones**: Stones are blocks which ores generate within. For example: `excavated_variants:minecraft\/granite` represents granite, and contains information about which new variants to generate based off of granite.<br \/>\n* **Modifiers**: Modifiers are used to modify the properties of variants. They can be used to add tags, change block properties, prevent variant creation, and more.<\/p>\n<p>Except when changed by modifiers, variants are generated for all ore\/stone combinations that share a ground type and do not already have a variant.<\/p>\n<p>### Ground Types<\/p>\n<p>Placed in `globalresources\/[folder\/pack]\/globaldata\/[namespace]\/excavated_variants\/ground_type`. They are JSON files with the following structure:<\/p>\n<p>* (nothing): these don&#8217;t actually hold any data yet! Just use an empty JSON file: `{}`.<\/p>\n<p>### Ores<\/p>\n<p>Placed in `globalresources\/[folder\/pack]\/globaldata\/[namespace]\/excavated_variants\/ore`. They are JSON files with the following structure:<\/p>\n<p>* `types`: a list of ground types that this ore can generate in. For example: `[&#8220;excavated_variants:overworld&#8221;]`.<br \/>\n* `translations`: an object with locales as keys (such as `en_us`) and translated names of the ore as values. Translations will be prepended by the stone name, unless the translation contains `%s`, in which case the stone name will be inserted at that location.<br \/>\n* `tags`: a list of tags that variants of this ore will be added to, as both block and item tags.<br \/>\n* `blocks`: a map representing pairings of variants of this ore with stones. Each key is the identifier of a block representing an ore variant. Values take one of two forms:<br \/>\n  * a string representing the identifier of a stone. For example: `&#8221;excavated_variants:minecraft\/granite&#8221;`. This variant will be assumed to exist if the mod who&#8217;s mod ID is the namespace of the block ID is present.<br \/>\n  * an object with the following fields:<br \/>\n    * `stone`: a string representing the identifier of a stone. For example: `&#8221;excavated_variants:minecraft\/granite&#8221;`.<br \/>\n    * `required_mods`: a list of mod IDs that must be present for this variant to be generated. For example: `[&#8220;spelunkery&#8221;, &#8220;create&#8221;]`.<br \/>\n    * `generating`: (optional, defaults to true) whether this variant can be used as a parent for new, generated variants.<\/p>\n<p>### Stones<\/p>\n<p>Placed in `globalresources\/[folder\/pack]\/globaldata\/[namespace]\/excavated_variants\/stone`. They are JSON files with the following structure:<\/p>\n<p>* `types`: a list of ground types that this stone can generate in. For example: `[&#8220;excavated_variants:overworld&#8221;]`.<br \/>\n* `translations`: an object with locales as keys (such as `en_us`) and translated names of the stone as values.<br \/>\n* `block`: the identifier of the block corresponding to this stone. For example: `&#8221;minecraft:granite&#8221;`.<br \/>\n* `ore_tags`: a list of tags that ore variants for this stone will be added to, as both block and item tags.<\/p>\n<p>### Modifiers<\/p>\n<p>Placed in `globalresources\/[folder\/pack]\/globaldata\/[namespace]\/excavated_variants\/modifier`. They are JSON files with the following structure:<\/p>\n<p>* `tags`: (optional) a list of tags that variants matching the filter will be added to. Can be either block or item tags, in the format `&#8221;namespace:[blocks\/items]\/path&#8221;`.<br \/>\n* `flags`: (optional) a list of flags from the following set that will be applied to matching variants:<br \/>\n  * `&#8221;original_without_silk&#8221;`: the variant should drop whatever its original block would drop, unless silk touch is used. Note that this flag is irrelevant for any ore blocks that have the behaviour of dropping &#8220;raw ore chunks&#8221; or the like, and is only relevant for when the original block drops itself.<br \/>\n  * `&#8221;original_always&#8221;`: the variant should always drop whatever its original block would drop, even if silk touch is used.<br \/>\n  * `&#8221;disable&#8221;`: the variant should not be generated or recognized by the mod.<br \/>\n  * `&#8221;non_generating&#8221;`: the variant should not be used as a parent for new variants, but the mod is still aware of it.<br \/>\n* `properties`: (optional) an object with the following fields, that modifies the properties of generated blocks:<br \/>\n  * `destroy_time`: the time it takes to break the block.<br \/>\n  * `explosion_resistance`: the resistance of the block to explosions.<br \/>\n  * `xp`: the amount of experience dropped by the block. Can take the same sort of integer range as seen in vanilla datapacks.<br \/>\n* `filter`: describes which variants this modifier applies to.<\/p>\n<p>#### Filters<\/p>\n<p>Modifier filters can take the form of either a string or an object. As an object, they have at least one field, `type`,<br \/>\nwhich describes the type of filter. The available types are:<\/p>\n<p>* `all` matches everything.<br \/>\n* `empty` matches nothing.<br \/>\n* `not` matches everything not matched by its `&#8221;filter&#8221;` field.<br \/>\n* `and` matches everything matched by all members of its `&#8221;filters&#8221;` field.<br \/>\n* `or` matches everything matched by at least one member of its `&#8221;filters&#8221;` field.<\/p>\n<p>As a string, they take one of the following forms:<\/p>\n<p>* `*`: matches everything.<br \/>\n* `~`: matches nothing.<br \/>\n* `~[filter]`: matches everything not matched by `[filter]`.<br \/>\n* `ground_type@[namespace]:[path]`: matches all variants with the given ground type.<br \/>\n* `stone@[namespace]:[path]`: matches all variants with the given stone.<br \/>\n* `ore@[namespace]:[path]`: matches all variants with the given ore.<br \/>\n* `mod@[mod_id]`: matches everything, but only if a mod with the given ID is present.<br \/>\n* `generated`: matches all variants that are generated by the mod.<br \/>\n* `block@[namespace]:[path]`: matches all variants with the given block ID. The namespace and path provided here can use `*` as a wildcard to match one or more characters.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Automatically generated stone variants of ores<\/p>\n","protected":false},"featured_media":66472,"template":"","meta":{"_minecraft_slug":"excavated_variants","_minecraft_project_id":"IZaMGxb0","_minecraft_author":"lukebemish","_minecraft_license":"LGPL-3.0-or-later","_minecraft_downloads":69508,"_minecraft_follows":146,"_minecraft_client_side":"required","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"excavated_variants.zip","_minecraft_size_bytes":34327382,"_minecraft_version_count":130,"_minecraft_updated_at":"2026-05-16T02:26:07.165478Z","_minecraft_date_created":"2022-02-08T01:31:34.859991Z","_minecraft_date_modified":"2024-08-13T17:00:24.827676Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/excavated_variants","_minecraft_icon_attachment_id":66472,"_minecraft_imported_at":"2026-06-03T19:29:11+00:00","_minecraft_import_hash":"3f30f256acd8edad8e292bcc2e6ed3bf","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[156,97,104,158,98,159],"mod_loader":[99,106,160,100],"minecraft_version":[52,53,54,56,57,58,36,60,94,101,102,62,37],"class_list":["post-66471","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-decoration","mod_category-fabric","mod_category-forge","mod_category-neoforge","mod_category-quilt","mod_category-worldgen","mod_loader-fabric","mod_loader-forge","mod_loader-neoforge","mod_loader-quilt","minecraft_version-1-18-1","minecraft_version-1-18-2","minecraft_version-1-19","minecraft_version-1-19-2","minecraft_version-1-19-3","minecraft_version-1-19-4","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-4","minecraft_version-1-20-5","minecraft_version-1-20-6","minecraft_version-1-21","minecraft_version-1-21-1"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Excavated Variants - 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\/excavated_variants\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Excavated Variants - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Automatically generated stone variants of ores\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/excavated_variants\/\" \/>\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=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/excavated_variants\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/excavated_variants\\\/\",\"name\":\"Excavated Variants - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/excavated_variants\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/excavated_variants\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/excavated_variants-icon-icon.png\",\"datePublished\":\"2026-06-03T19:29:10+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/excavated_variants\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/excavated_variants\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/excavated_variants\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/excavated_variants-icon-icon.png\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/excavated_variants-icon-icon.png\",\"width\":432,\"height\":432},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/excavated_variants\\\/#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\":\"Excavated Variants\"}]},{\"@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":"Excavated Variants - 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\/excavated_variants\/","og_locale":"en_US","og_type":"article","og_title":"Excavated Variants - Minecraft","og_description":"Automatically generated stone variants of ores","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/excavated_variants\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/excavated_variants\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/excavated_variants\/","name":"Excavated Variants - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/excavated_variants\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/excavated_variants\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/excavated_variants-icon-icon.png","datePublished":"2026-06-03T19:29:10+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/excavated_variants\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/excavated_variants\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/excavated_variants\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/excavated_variants-icon-icon.png","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/excavated_variants-icon-icon.png","width":432,"height":432},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/excavated_variants\/#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":"Excavated Variants"}]},{"@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\/66471","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\/66472"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=66471"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=66471"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=66471"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=66471"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}