{"id":143738,"date":"2026-06-08T16:53:46","date_gmt":"2026-06-08T13:53:46","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/smart_ore_generation\/"},"modified":"2026-06-08T16:53:46","modified_gmt":"2026-06-08T13:53:46","slug":"smart_ore_generation","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/smart_ore_generation\/","title":{"rendered":"Smart Ore Generation"},"content":{"rendered":"<p>### \ud83c\udf10 Translations<br \/>\n* English<br \/>\n* Fran\u00e7aise<\/p>\n<p># \ud83d\udcd6 Smart Ore Generation<\/p>\n<p>![GitHub](https:\/\/github.com\/Stoupy51\/SmartOreGeneration\/releases\/latest)<br \/>\n![Smithed](https:\/\/smithed.net\/packs\/smart_ore_generation)<br \/>\n![Modrinth](https:\/\/modrinth.com\/datapack\/smart_ore_generation)<br \/>\n![PMC](https:\/\/www.planetminecraft.com\/data-pack\/smart-ore-generation\/)<br \/>\n![Discord](https:\/\/discord.gg\/anxzu6rA9F)<br \/>\n![Powered by StewBeet](https:\/\/stewbeet.paralya.fr\/)<\/p>\n<p>\ud83c\udfae A Minecraft data pack library for handling custom ore generation by using a smart system for ore location.<br \/>\n* \ud83d\udd04 This library is an addition to the vanilla ore generation system. It does not replace it.<br \/>\n* \ud83e\udd1d It has been designed to be compatible with other ore generation libraries.<br \/>\n* \ud83d\udc8e This library only provide a way to generate ores in a smart way, it does not provide custom block functions.<br \/>\n* \ud83c\udf0d You can configure the library to generate ores in a specific dimension, or in all dimensions.<br \/>\n* \u26a1 It is working with custom overworld minimum height, a constant score is calculated for overworld only if needed.<br \/>\n* \ud83c\udf10 This library supports customs dimensions, but you must add them to the `denied_dimensions` function tag to prevent them from being scanned if you don&#8217;t want them to be scanned.<br \/>\n* \u2728 The library will be working even if the world was generated before installing the library because it does not depend on world generation.<\/p>\n<p>\ud83d\udce6 This is an embedded library, so you package it inside your datapack as opposed to having a separate download. Requires LanternLoad to operate.<\/p>\n<p>\ud83d\udd0d You can see on this image how ore patches are **always adjacent to air** blocks.<br \/>\n![image](https:\/\/cdn.modrinth.com\/data\/zpEM3sbc\/images\/51080a8f811cdd114653fd983c520fa1e210efb8.png)<\/p>\n<p><\/p>\n<p># \ud83d\udcda System explanation<br \/>\nEvery 5 seconds, the library run at the location of every player the following steps:<br \/>\n* \u26a1 Run a the function tag `denied_dimensions` to allow you to deny some dimensions from being scanned.<br \/>\n* \ud83c\udf0d If the dimension is allowed, 8 regions around players are scanned. (Default region size is 96&#215;96)<br \/>\n* \ud83d\udd0d For each region, the library will check if is has already been scanned. If not, it will launch ore generation for this region.<br \/>\n* \ud83d\udccd Then, the function tag `generate_ores` is called at the origin of the region (0, 0, 0).<br \/>\n* \ud83d\udc8e You can add your own ore generation function to this tag where you will be generating your ores depending on self-chosen conditions. (like dimensions, biomes, etc&#8230;)<br \/>\n* \ud83c\udfb2 For every patch of ore you generate, you must use the random position function tag `random_position` to get a random position inside the region. This function tag will move the position to a random position and the nearest air block. Doing this way will prevent ores from being generated inside blocks and never be found by players (Adding lag to the server if the ore use an entity). So ores will be easier to find.<br \/>\n* \ud83d\udeab And after every check, the library will save the region as &#8220;scanned&#8221; to prevent it from being scanned again by adding a `barrier block` at the origin of the region.<br \/>\n* \u2728 Finally, the function tag `post_generation` is called to allow you to do some post-generation tasks like running a function to all your newly generated ores to add some nbt tags to them or something else.<\/p>\n<p><\/p>\n<p># \ud83d\udd27 Function Tag<\/p>\n<p>## \ud83d\udce5 <ins>Signals<\/ins><\/p>\n<p>### `#smart_ore_generation:v1\/denied_dimensions`<br \/>\n* \ud83d\udd0d This function tag is called when the library want to scan a region. You can add which dimension you want to deny from being scanned by adding a function to this tag.<br \/>\n* \ud83d\udcdd To use this signal, you must add a function to the tag list located in `data\/smart_ore_generation\/tags\/function\/v1\/signals\/denied_dimensions.json`.<br \/>\n* \ud83d\udcd6 Refer to this template for the content of the function here.<br \/>\n&#8220;`mcfunction<br \/>\n#> smart_ore_generation:v1.7.2\/signals\/denied_dimensions<br \/>\n#<br \/>\n# @within\t\t\t#smart_ore_generation:v1\/signals\/denied_dimensions<br \/>\n# @executed\t\t\tas &#038; at the player who triggered the event<br \/>\n# @input score\t\t#authorized smart_ore_generation.data equals to 1 or 0 if another datapack has already denied generation<br \/>\n#<br \/>\n## WARNING!<br \/>\n# &#8211; You must check the #authorized score matching 1 before executing any commands to prevent reenable generation in a dimension that is disabled by another datapack.<br \/>\n# &#8211; Putting the #authorized score to 0 will disable generation in the dimension for every datapack.<\/p>\n<p>## Here is an example to disable generation in a dimension:<br \/>\nexecute if score #authorized smart_ore_generation.data matches 1 if predicate simplenergy:in_overworld run scoreboard players set #authorized smart_ore_generation.data 0<\/p>\n<p>## Another example:<br \/>\nexecute if score #authorized smart_ore_generation.data matches 1 if dimension minecraft:overworld run scoreboard players set #authorized smart_ore_generation.data 0<br \/>\n&#8220;`<\/p>\n<p>### `#smart_ore_generation:v1\/generate_ores`<br \/>\n* \ud83d\udd0d This function tag is called when the library want to generate ores in a region. You can add your own ore generation function to this tag.<br \/>\n* \ud83d\udcdd To use this signal, you must add a function to the tag list located in `data\/smart_ore_generation\/tags\/function\/v1\/signals\/generate_ores.json`.<br \/>\n* \ud83d\udcd6 Refer to this template for the content of the function here<br \/>\n&#8220;`mcfunction<br \/>\n#> smart_ore_generation:v1.7.2\/signals\/generate_ores<br \/>\n#<br \/>\n# @within\t\t\t#smart_ore_generation:v1\/signals\/generate_ores<br \/>\n# @executed\t\t\tas a special marker &#038; at a position you shouldn&#8217;t care about<br \/>\n#<br \/>\n## WARNING!<br \/>\n# &#8211; You must not use \/kill @s in this file, or the entire library will stop working.<br \/>\n# &#8211; Don&#8217;t forget to edit #min_height and #max_height scores before trying to generate ores.<br \/>\n#<br \/>\n# @example from SimplEnergy datapack<br \/>\n# This example generates 4 patches of Simplunium Ore in the overworld only<br \/>\n# Per region and between world bottom (minecraft default: -64) and y=40<\/p>\n<p># Dimension score, 0 = overworld<br \/>\nscoreboard players set #dimension smart_ore_generation.data -1<br \/>\nexecute if predicate simplenergy:in_overworld run scoreboard players set #dimension smart_ore_generation.data 0<\/p>\n<p># Generate Simplunium Ore (x4) in the overworld only<br \/>\nscoreboard players operation #min_height smart_ore_generation.data = _OVERWORLD_BOTTOM smart_ore_generation.data<br \/>\nscoreboard players set #max_height smart_ore_generation.data 40<br \/>\nexecute if score #dimension smart_ore_generation.data matches 0 run function smart_ore_generation:v1.7.2\/signals\/example\/simplunium_ore<br \/>\nexecute if score #dimension smart_ore_generation.data matches 0 run function smart_ore_generation:v1.7.2\/signals\/example\/simplunium_ore<br \/>\nexecute if score #dimension smart_ore_generation.data matches 0 run function smart_ore_generation:v1.7.2\/signals\/example\/simplunium_ore<br \/>\nexecute if score #dimension smart_ore_generation.data matches 0 run function smart_ore_generation:v1.7.2\/signals\/example\/simplunium_ore<br \/>\n# See the template in the link for the content of the function smart_ore_generation:v1.7.2\/signals\/example\/simplunium_ore.mcfunction<br \/>\n&#8220;`<\/p>\n<p>### `#smart_ore_generation:v1\/post_generation`<br \/>\n* \ud83d\udd04 This function tag is called when the library has finished generating ores in regions. You can add your own post-generation function to this tag.<br \/>\n* \ud83d\udcdd To use this signal, you must add a function to the tag list located in `data\/smart_ore_generation\/tags\/function\/v1\/signals\/post_generation.json`.<br \/>\n* \ud83d\udcd6 Refer to this template for the content of the function here<br \/>\n&#8220;`mcfunction<br \/>\n#> smart_ore_generation:v1.7.2\/signals\/post_generation<br \/>\n#<br \/>\n# @within\t\t\t#smart_ore_generation:v1\/signals\/post_generation<br \/>\n# @executed\t\t\tas none at none (default of a \/schedule)<br \/>\n#<br \/>\n# This function is executed once after all the ore generation is done.<br \/>\n# For example, if 6 regions are generated, this function will be executed 1 time after all the regions are generated.<br \/>\n# It can be used to do some post-generation tasks, like running a function on all the ores you generated<br \/>\n# instead of running it on each ore individually when you generate it.<br \/>\n# Useful for optimisation.<br \/>\n#<br \/>\n# @example from SimplEnergy datapack<br \/>\n# This example will edit entity nbt for simplunium ore and deepslate simplunium ore<br \/>\n# if they have been generated all along the generation process.<br \/>\n# This is useful for optimisation because you run the &#8220;secondary&#8221; function only once<br \/>\n# instead of running it on each ore individually when you generate it.<\/p>\n<p># Place simplunium ore if it has been generated<br \/>\nexecute if score #generated_ore simplenergy.data matches 1 as @e[tag=simplenergy.new_simplunium_ore] at @s run function simplenergy:place\/simplunium_ore\/secondary<br \/>\nexecute if score #generated_ore simplenergy.data matches 1 run scoreboard players reset #generated_ore simplenergy.data<\/p>\n<p># Place deepslate simplunium ore if it has been generated<br \/>\nexecute if score #generated_deepslate_ore simplenergy.data matches 1 as @e[tag=simplenergy.new_deepslate_simplunium_ore] at @s run function simplenergy:place\/deepslate_simplunium_ore\/secondary<br \/>\nexecute if score #generated_deepslate_ore simplenergy.data matches 1 run scoreboard players reset #generated_deepslate_ore simplenergy.data<br \/>\n&#8220;`<\/p>\n<p>## \ud83d\udce4 <ins>Slots<\/ins><br \/>\n### `#smart_ore_generation:v1\/slots\/random_position`<br \/>\n* This function tag should be called when you need a random position in the region.<br \/>\n* To use properly this slot, see the template here<br \/>\n&#8220;`mcfunction<br \/>\n#> smart_ore_generation:v1.7.2\/signals\/example\/simplunium_ore<br \/>\n#<br \/>\n# @example from SimplEnergy datapack<br \/>\n# Always launch the random position function tag before anything else<br \/>\n# @TIP: The random position is not flat, is has a digit.<br \/>\n# You can use the digit to generate ore on a specific way like below<br \/>\n# It will try to place the ore patch depending on the digit<br \/>\n# so on every line below, somes can fail making it more realistic<br \/>\n# resulting in an ore patch containing between 2 and 6 ores (in this example)<\/p>\n<p>## Try to find a random position adjacent to air in the region to generate the ore<br \/>\nfunction #smart_ore_generation:v1\/slots\/random_position<\/p>\n<p># Placing Simplunium Ore Patch<br \/>\nexecute at @s if block ~ ~ ~ #simplenergy:for_simplunium_ore run function simplenergy:calls\/smart_ore_generation\/simplunium_type<br \/>\nexecute at @s positioned ~0.8 ~0.8 ~0.8 if block ~ ~ ~ #simplenergy:for_simplunium_ore run function simplenergy:calls\/smart_ore_generation\/simplunium_type<br \/>\nexecute at @s positioned ~0.0 ~0.8 ~0.8 if block ~ ~ ~ #simplenergy:for_simplunium_ore run function simplenergy:calls\/smart_ore_generation\/simplunium_type<br \/>\nexecute at @s positioned ~0.8 ~0.8 ~0.0 if block ~ ~ ~ #simplenergy:for_simplunium_ore run function simplenergy:calls\/smart_ore_generation\/simplunium_type<br \/>\nexecute at @s positioned ~0.8 ~0.0 ~0.8 if block ~ ~ ~ #simplenergy:for_simplunium_ore run function simplenergy:calls\/smart_ore_generation\/simplunium_type<br \/>\nexecute at @s positioned ~0.0 ~0.8 ~0.0 if block ~ ~ ~ #simplenergy:for_simplunium_ore run function simplenergy:calls\/smart_ore_generation\/simplunium_type<br \/>\n&#8220;`<\/p>\n<p>## \u2b50 Star History<\/p>\n<picture><source media=\"(prefers-color-scheme: dark)\" srcset=\"https:\/\/api.star-history.com\/svg?repos=Stoupy51\/SmartOreGeneration&#038;type=Date&#038;theme=dark\" \/><source media=\"(prefers-color-scheme: light)\" srcset=\"https:\/\/api.star-history.com\/svg?repos=Stoupy51\/SmartOreGeneration&#038;type=Date\" \/><img decoding=\"async\" alt=\"Star History Chart\" src=\"https:\/\/api.star-history.com\/svg?repos=Stoupy51\/SmartOreGeneration&#038;type=Date\" \/>\n <\/picture>\n","protected":false},"excerpt":{"rendered":"<p>A Minecraft data pack library for handling custom ore generation by using a smart system for ore location.<\/p>\n","protected":false},"featured_media":143739,"template":"","meta":{"_minecraft_slug":"smart_ore_generation","_minecraft_project_id":"zpEM3sbc","_minecraft_author":"Stoupy51","_minecraft_license":"MIT","_minecraft_downloads":198,"_minecraft_follows":1,"_minecraft_client_side":"optional","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"smart_ore_generation.zip","_minecraft_size_bytes":131763,"_minecraft_version_count":4,"_minecraft_updated_at":"2026-05-15T20:51:51.789438Z","_minecraft_date_created":"2024-11-27T09:44:35.784787Z","_minecraft_date_modified":"2026-04-18T23:13:35.219422Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/smart_ore_generation","_minecraft_icon_attachment_id":143739,"_minecraft_imported_at":"2026-06-08T13:53:47+00:00","_minecraft_import_hash":"7d6c7973036ab562325d15ba564e9754","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[84,873,159],"mod_loader":[86],"minecraft_version":[40,41,73,74,38,78,79,80,81,82,83,167,163],"class_list":["post-143738","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-datapack","mod_category-library","mod_category-worldgen","mod_loader-datapack","minecraft_version-1-21-10","minecraft_version-1-21-11","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","minecraft_version-26-1","minecraft_version-26-1-1","minecraft_version-26-1-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Smart Ore Generation - 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\/smart_ore_generation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Smart Ore Generation - Minecraft\" \/>\n<meta property=\"og:description\" content=\"A Minecraft data pack library for handling custom ore generation by using a smart system for ore location.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/smart_ore_generation\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta property=\"og:image\" content=\"https:\/\/api.star-history.com\/svg?repos=Stoupy51\/SmartOreGeneration&type=Date\" \/>\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=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/smart_ore_generation\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/smart_ore_generation\\\/\",\"name\":\"Smart Ore Generation - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/smart_ore_generation\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/smart_ore_generation\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/smart_ore_generation-icon-001791e6f67872462476e80ffc1de20162844695_96.webp\",\"datePublished\":\"2026-06-08T13:53:46+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/smart_ore_generation\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/smart_ore_generation\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/smart_ore_generation\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/smart_ore_generation-icon-001791e6f67872462476e80ffc1de20162844695_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/smart_ore_generation-icon-001791e6f67872462476e80ffc1de20162844695_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/smart_ore_generation\\\/#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\":\"Smart Ore Generation\"}]},{\"@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":"Smart Ore Generation - 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\/smart_ore_generation\/","og_locale":"en_US","og_type":"article","og_title":"Smart Ore Generation - Minecraft","og_description":"A Minecraft data pack library for handling custom ore generation by using a smart system for ore location.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/smart_ore_generation\/","og_site_name":"Minecraft","og_image":[{"url":"https:\/\/api.star-history.com\/svg?repos=Stoupy51\/SmartOreGeneration&type=Date","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/smart_ore_generation\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/smart_ore_generation\/","name":"Smart Ore Generation - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/smart_ore_generation\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/smart_ore_generation\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/smart_ore_generation-icon-001791e6f67872462476e80ffc1de20162844695_96.webp","datePublished":"2026-06-08T13:53:46+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/smart_ore_generation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/smart_ore_generation\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/smart_ore_generation\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/smart_ore_generation-icon-001791e6f67872462476e80ffc1de20162844695_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/smart_ore_generation-icon-001791e6f67872462476e80ffc1de20162844695_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/smart_ore_generation\/#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":"Smart Ore Generation"}]},{"@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\/143738","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\/143739"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=143738"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=143738"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=143738"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=143738"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}