{"id":62251,"date":"2026-06-03T17:38:34","date_gmt":"2026-06-03T14:38:34","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/elementelum\/"},"modified":"2026-06-03T17:38:34","modified_gmt":"2026-06-03T14:38:34","slug":"elementelum","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/elementelum\/","title":{"rendered":"Elementelum"},"content":{"rendered":"<p>## Elementelum, name born from the combination of &#8220;Element&#8221; and &#8220;Weapon&#8221;&#8230;<\/p>\n<p>Of course, this project is mostly about Elemental Weapons, but there&#8217;s much more.<\/p>\n<p>If you want a great overview of the added content, check out the youtube review:<br \/>\n<iframe loading=\"lazy\" width=\"560\" height=\"315\" src=\"https:\/\/www.youtube-nocookie.com\/embed\/d-sjiKnZP3o\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen><\/iframe><\/p>\n<p># `vred&#8217;s DP Lib` IS REQUIRED!!<br \/>\nhttps:\/\/modrinth.com\/datapack\/vreds-dp-lib<\/p>\n<p>This project adds:<br \/>\n&#8211; new and exciting weapons that have different tiers (pale -> stoichite -> elemental). Each tier has more abilities than the previous one;<br \/>\n&#8211; built-in Iron&#8217;s Spells and Spellbooks compat, where each ability will now use mana.<br \/>\n&#8211; forging system;<br \/>\n&#8211; datadriven augment system;<br \/>\n&#8211; fully configurable stats for weapons and augments.<\/p>\n<p>## Technical side<\/p>\n<details>\n<summary>\nUseful commands<br \/>\n<\/summary>\n<p>&#8220;`<br \/>\n\/function elementelum:get_materials<br \/>\n&#8220;`<br \/>\nTo get all materials and augments!<\/p>\n<p>&#8220;`<br \/>\n\/function elementelum:get_weapons<br \/>\n&#8220;`<br \/>\nTo get every weapon!<\/p>\n<\/details>\n<details>\n<summary>How to add custom augments<\/summary>\n<p>In order to make a custom augment you need:<br \/>\n  &#8211; 3 item modifiers;<br \/>\n  &#8211; item with specific custom data;<br \/>\n  &#8211; 1 or 2 functions;<br \/>\n&#8211; 1 enchant (if you want).<\/p>\n<p>**Item modfiers**<br \/>\n#<br \/>\n&#8220;`# data\/<namespace>\/item_modifier\/augments\/<augment>\/normal.json&#8220;`<br \/>\nWill be applied when hitting the yellow part in the forging minigame.<\/p>\n<p>&#8220;`# data\/<namespace>\/item_modifier\/augments\/<augment>\/perfect.json&#8220;`<br \/>\nWill be applied when hitting the red part in the forging minigame.<\/p>\n<p>&#8220;`# data\/<namespace>\/item_modifier\/augments\/<augment>\/remove.json&#8220;`<br \/>\nWill be applied when augment is removed.<\/p>\n<p>`<namespace>` and `<augment>` are defined into the item itself.<\/p>\n<p>here&#8217;s an example:<\/p>\n<p>&#8220;`<br \/>\ngive @s raw_cod[custom_data={vred_lib:{augment:fish,namespace:example, item_type:augment}}]<br \/>\n&#8220;`<\/p>\n<p>&#8220;`<br \/>\n# data\/example\/item_modifier\/augments\/fish\/normal.json<br \/>\n# data\/example\/item_modifier\/augments\/fish\/perfect.json<br \/>\n# data\/example\/item_modifier\/augments\/fish\/remove.json<br \/>\n&#8220;`<\/p>\n<p>**Functions**<br \/>\n#<br \/>\nA function is needed to add custom text when the augment is put in the Esoteric Anvil. To add something similar to the text of other augments, it&#8217;s better to look at the orignal code.<br \/>\nThe function needs to be in the `#elementelum:augment\/desc` function tag.<\/p>\n<p>&#8220;`<br \/>\ndata modify storage elementelum:augment text.<namespace>.<augment>.normal set value &#8216;[&#8230;]&#8217;<br \/>\ndata modify storage elementelum:augment text.<namespace>.<augment>.perfect set value &#8216;[&#8230;]&#8217;<br \/>\n&#8220;`<\/p>\n<p>If you want to use the same behavior to change the level based on quantity of augment in your inventory, just use `function elementelum:augments\/calc\/base {namespace:<namespace>,augment:<augment>}`<\/p>\n<p>However, it will require a custom enchantment with the id &#8220;`<namespace>:<augment>`&#8221;.<\/p>\n<p>`<namespace>` and `<augment>` are the same from the item as before.<br \/>\n<\/details>\n<details>\n<summary>Configurable values for weapons<\/summary>\n<p>If you want to configure some of the abilites of the weapons, such as:<br \/>\n&#8211; cooldown<br \/>\n&#8211; damage<br \/>\n&#8211; duration.<\/p>\n<p>You need to check the item itself and use `\/scoreboard` to modify the values.<\/p>\n<p>For example, we want to edit the base damage of **Thalassurge**.<br \/>\nWe need to know the internal item id (which may not always be the same as the display name)<\/p>\n<p>First of all, we take a copy of said item and hold it in our main hand.<br \/>\nThen we run this command:<br \/>\n&#8220;`<br \/>\ndata get entity @s SelectedItem.components.minecraft:custom_data.vred_lib<br \/>\n&#8220;`<\/p>\n<p>After that, try to find the value of &#8220;weapon_id&#8221; in the command result. In this case it&#8217;s `anchor` (yes, I still haven&#8217;t changed it \ud83d\udc94).<\/p>\n<p>Unzip the datapack and find this function:<br \/>\n&#8220;`<br \/>\ndata\/elementelum\/function\/<weapon_id>\/config\/base.mcfunction<br \/>\n&#8220;`<br \/>\n(it will be `data\/elementelum\/function\/anchor\/config\/base.mcfunction`)<\/p>\n<p>In that function will be all the values of the config, you can tinker around with them using `\/scoreboard` to modify them.<\/p>\n<p>We wanted to edit the base damage of Thalassurge, now we know we can do it using this command:<br \/>\n&#8220;`scoreboard players set $anchor.atk.dmg elementelum.config 5&#8220;`<\/p>\n<p>If you want to reset the values, just<br \/>\n&#8220;`<br \/>\n\/function elementelum:<weapon_id>\/config\/reset<br \/>\n&#8220;`<br \/>\n(It will be `\/function elementelum:anchor\/config\/reset`)<\/p>\n<\/details>\n","protected":false},"excerpt":{"rendered":"<p>Unique and visually stunning elemental weapons.<\/p>\n","protected":false},"featured_media":62252,"template":"","meta":{"_minecraft_slug":"elementelum","_minecraft_project_id":"R8TytBGA","_minecraft_author":"vred_","_minecraft_license":"LicenseRef-All-Rights-Reserved","_minecraft_downloads":507,"_minecraft_follows":4,"_minecraft_client_side":"optional","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"elementelum.zip","_minecraft_size_bytes":9004463,"_minecraft_version_count":3,"_minecraft_updated_at":"2026-05-16T07:30:35.214835Z","_minecraft_date_created":"2026-03-21T06:21:19.687856Z","_minecraft_date_modified":"2026-03-20T12:34:34.260762Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/elementelum","_minecraft_icon_attachment_id":62252,"_minecraft_imported_at":"2026-06-03T14:38:35+00:00","_minecraft_import_hash":"76ede72d3805e7deb499aca9ff679495","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[87,84,88,97,104,122,158,98],"mod_loader":[86,99,106,160,100],"minecraft_version":[62,37],"class_list":["post-62251","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-adventure","mod_category-datapack","mod_category-equipment","mod_category-fabric","mod_category-forge","mod_category-magic","mod_category-neoforge","mod_category-quilt","mod_loader-datapack","mod_loader-fabric","mod_loader-forge","mod_loader-neoforge","mod_loader-quilt","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>Elementelum - 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\/elementelum\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Elementelum - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Unique and visually stunning elemental weapons.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/elementelum\/\" \/>\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\\\/elementelum\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/elementelum\\\/\",\"name\":\"Elementelum - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/elementelum\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/elementelum\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/elementelum-icon-4a044a433f9fcecbe456b90a4dae97bc5c580086_96.webp\",\"datePublished\":\"2026-06-03T14:38:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/elementelum\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/elementelum\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/elementelum\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/elementelum-icon-4a044a433f9fcecbe456b90a4dae97bc5c580086_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/elementelum-icon-4a044a433f9fcecbe456b90a4dae97bc5c580086_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/elementelum\\\/#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\":\"Elementelum\"}]},{\"@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":"Elementelum - 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\/elementelum\/","og_locale":"en_US","og_type":"article","og_title":"Elementelum - Minecraft","og_description":"Unique and visually stunning elemental weapons.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/elementelum\/","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\/elementelum\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/elementelum\/","name":"Elementelum - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/elementelum\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/elementelum\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/elementelum-icon-4a044a433f9fcecbe456b90a4dae97bc5c580086_96.webp","datePublished":"2026-06-03T14:38:34+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/elementelum\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/elementelum\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/elementelum\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/elementelum-icon-4a044a433f9fcecbe456b90a4dae97bc5c580086_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/elementelum-icon-4a044a433f9fcecbe456b90a4dae97bc5c580086_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/elementelum\/#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":"Elementelum"}]},{"@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\/62251","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\/62252"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=62251"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=62251"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=62251"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=62251"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}