{"id":74468,"date":"2026-06-04T10:49:58","date_gmt":"2026-06-04T07:49:58","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/g-enchantbooks\/"},"modified":"2026-06-04T10:49:58","modified_gmt":"2026-06-04T07:49:58","slug":"g-enchantbooks","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/g-enchantbooks\/","title":{"rendered":"G-EnchantBooks"},"content":{"rendered":"<p>## G-EnchantBooks<\/p>\n<p>Lightweight custom enchants, built to feel like vanilla. (No dependency)<\/p>\n<p>Adds new, configurable enchantments that integrate seamlessly with vanilla mechanics (enchanting table, anvils, grindstone, etc.).<\/p>\n<p>Key features<br \/>\n&#8211; **Custom enchants:** New, balanced enchantments for tools, weapons, armor, bows, tridents and more.  <\/p>\n<p>&#8211; **Vanilla friendly:** Works with vanilla systems (tables, anvils, books, villagers, grindstone, loot).  <\/p>\n<p>&#8211; **Easy to setup:** Run-and-go defaults; a single, readable config for tweaks.  <\/p>\n<p>&#8211; **Lightweight:** Low memory\/CPU usage and no external dependencies.<\/p>\n<p>How to create a custom enchant:<\/p>\n<details>\n<summary>Bloodlust Enchant<\/summary>\n<p>&#8220;`<br \/>\n<?xml version=\"1.0\" encoding=\"UTF-8\"?><br \/>\n<enchantment id=\"bloodlust\" enabled=\"true\"><br \/>\n    <display-name>Bloodlust<\/display-name><br \/>\n    <description>Heals you and gives strength when you kill enemies<\/description><br \/>\n    <book-lore>\n        <line>\u00a77Heals and empowers you when you slay enemies<\/line>\n        <line>\u00a77Restores \u00a7c{level} hearts \u00a77and grants \u00a74Strength {level}<\/line>\n        <line>\u00a77Apply to weapons via anvil<\/line>\n    <\/book-lore><br \/>\n    <category>combat<\/category><br \/>\n    <max-level>3<\/max-level><\/p>\n<p>    <applicable-items><br \/>\n        <item-group>weapons<\/item-group><br \/>\n    <\/applicable-items><\/p>\n<p>    <recipe>\n        <pattern>\n            <row>NAN<\/row><br \/>\n            <row>WBW<\/row><br \/>\n            <row>NAN<\/row>\n        <\/pattern>\n        <ingredients><br \/>\n            <ingredient key=\"N\">NETHERITE_INGOT<\/ingredient><br \/>\n            <ingredient key=\"A\">ANCIENT_DEBRIS<\/ingredient><br \/>\n            <ingredient key=\"W\">WITHER_SKELETON_SKULL<\/ingredient><br \/>\n            <ingredient key=\"B\">BLAZE_ROD<\/ingredient><br \/>\n        <\/ingredients><br \/>\n    <\/recipe><\/p>\n<trigger event=\"ENTITY_DEATH\">\n        <conditions><br \/>\n            <condition type=\"player-is-killer\"\/><br \/>\n            <condition type=\"holding-enchanted-item\" slot=\"MAIN_HAND\"\/><br \/>\n        <\/conditions><\/p>\n<p>        <actions><br \/>\n            <!-- Heal player based on level --><br \/>\n            <action type=\"heal\"><br \/>\n                <base-amount>2.0<\/base-amount>\n                <per-level>1.0<\/per-level>\n                <max-amount>10.0<\/max-amount><br \/>\n            <\/action><\/p>\n<p>            <!-- Apply strength effect --><br \/>\n            <action type=\"potion-effect\"><br \/>\n                <effect>STRENGTH<\/effect><br \/>\n                <duration-ticks><br \/>\n                    <base>100<\/base>\n                    <per-level>20<\/per-level>\n                <\/duration-ticks><br \/>\n                <amplifier><br \/>\n                    <base>0<\/base>\n                    <per-level>1<\/per-level>\n                <\/amplifier><br \/>\n            <\/action><br \/>\n        <\/actions><br \/>\n    <\/trigger>\n<\/enchantment><\/p>\n<p>&#8220;`<\/p>\n<\/details>\n<details>\n<summary>Exemple Template<\/summary>\n<p>&#8220;`<br \/>\n<?xml version=\"1.0\" encoding=\"UTF-8\"?><br \/>\n<enchantment id=\"lifesteal\" enabled=\"true\"><br \/>\n    <display-name>Your Enchant Name<\/display-name><br \/>\n    <description>The description of your choice<\/description><br \/>\n    <book-lore>\n        <line>Choose a lore of your choice<\/line>\n        <line>\u00a77 You can use color code<\/line>\n        <line>If you need help, join our Discord !<\/line>\n    <\/book-lore><br \/>\n    <category>Choose a category<\/category><br \/>\n    <max-level>Choose a maximum level (ex. 3)<\/max-level><\/p>\n<p>    <applicable-items><br \/>\n        <item-group>Choose an item group (weapons, tools, . . .)<\/item-group><br \/>\n    <\/applicable-items><\/p>\n<p>    <recipe>\n        <pattern>\n            <row>GRG<\/row> #Here you can configure the recipe<br \/>\n            <row>RBR<\/row><br \/>\n            <row>GRG<\/row>\n        <\/pattern>\n        <ingredients><br \/>\n            <ingredient key=\"G\">GHAST_TEAR<\/ingredient> #Choose any ingredients you wish<br \/>\n            <ingredient key=\"R\">GOLDEN_APPLE<\/ingredient><br \/>\n            <ingredient key=\"B\">BOOK<\/ingredient><br \/>\n        <\/ingredients><br \/>\n    <\/recipe><\/p>\n<trigger event=\"ENTITY_DAMAGE_BY_ENTITY\"> #You can choose how the enchant works<br \/>\n        <conditions><br \/>\n            <condition type=\"player-is-attacker\"\/><br \/>\n            <condition type=\"holding-enchanted-item\" slot=\"MAIN_HAND\"\/><br \/>\n            <condition type=\"damage-cause\"><br \/>\n                <cause>ENTITY_ATTACK<\/cause><br \/>\n                <cause>ENTITY_SWEEP_ATTACK<\/cause><br \/>\n            <\/condition><br \/>\n            <!-- 2 second cooldown to prevent spam healing --><br \/>\n            <condition type=\"cooldown\"><br \/>\n                <duration-ticks><br \/>\n                    <base>40<\/base>\n                    <per-level>-5<\/per-level>\n                    <min>20<\/min><br \/>\n                <\/duration-ticks><br \/>\n            <\/condition><br \/>\n        <\/conditions><\/p>\n<p>        <actions><br \/>\n            <!-- Heal based on level (1-3 hearts) --><br \/>\n            <action type=\"heal\"><br \/>\n                <base-amount>1.0<\/base-amount>\n                <per-level>1.0<\/per-level>\n                <max-amount>6.0<\/max-amount><br \/>\n            <\/action><\/p>\n<p>            <!-- Visual feedback --><br \/>\n            <action type=\"spawn-particle\">\n                <particle>HEART<\/particle>\n                <count><br \/>\n                    <base>2<\/base>\n                    <per-level>1<\/per-level>\n                <\/count><br \/>\n                <offset-x>0.3<\/offset-x><br \/>\n                <offset-y>0.5<\/offset-y><br \/>\n                <offset-z>0.3<\/offset-z><br \/>\n            <\/action><\/p>\n<p>            <!-- Audio feedback --><br \/>\n            <action type=\"play-sound\"><br \/>\n                <sound>ENTITY_PLAYER_LEVELUP<\/sound><br \/>\n                <volume>0.3<\/volume>\n                <pitch>2.0<\/pitch>\n            <\/action><br \/>\n        <\/actions><br \/>\n    <\/trigger>\n<\/enchantment><\/p>\n<p>&#8220;`<\/p>\n<\/details>\n","protected":false},"excerpt":{"rendered":"<p>A lightweight plugin that adds a selection of custom enchantments, easy to configure.<\/p>\n","protected":false},"featured_media":74469,"template":"","meta":{"_minecraft_slug":"g-enchantbooks","_minecraft_project_id":"pbA2Vf6F","_minecraft_author":"Foxof7207","_minecraft_license":"LicenseRef-All-Rights-Reserved","_minecraft_downloads":81,"_minecraft_follows":1,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"g-enchantbooks.zip","_minecraft_size_bytes":332316,"_minecraft_version_count":1,"_minecraft_updated_at":"2026-05-15T20:11:41.516718Z","_minecraft_date_created":"2026-01-24T23:53:13.873595Z","_minecraft_date_modified":"2026-01-29T15:08:51.182878Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/g-enchantbooks","_minecraft_icon_attachment_id":74469,"_minecraft_imported_at":"2026-06-04T07:49:59+00:00","_minecraft_import_hash":"d9f2a6506ba1c6ebba69d41e480253be","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,125,127,128,129],"mod_loader":[130,131,132,133,134],"minecraft_version":[118,119,120,46,47,48,49,50,51,52,53,54,55,56,57,58,59,36,60,93,94,101,102,62,37,40,41,73,74,38,78,79,80,81,82],"class_list":["post-74468","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-folia","mod_category-paper","mod_category-purpur","mod_category-spigot","mod_loader-bukkit","mod_loader-folia","mod_loader-paper","mod_loader-purpur","mod_loader-spigot","minecraft_version-1-16","minecraft_version-1-16-1","minecraft_version-1-16-2","minecraft_version-1-16-3","minecraft_version-1-16-4","minecraft_version-1-16-5","minecraft_version-1-17","minecraft_version-1-17-1","minecraft_version-1-18","minecraft_version-1-18-1","minecraft_version-1-18-2","minecraft_version-1-19","minecraft_version-1-19-1","minecraft_version-1-19-2","minecraft_version-1-19-3","minecraft_version-1-19-4","minecraft_version-1-20","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-3","minecraft_version-1-20-4","minecraft_version-1-20-5","minecraft_version-1-20-6","minecraft_version-1-21","minecraft_version-1-21-1","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"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>G-EnchantBooks - 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\/g-enchantbooks\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"G-EnchantBooks - Minecraft\" \/>\n<meta property=\"og:description\" content=\"A lightweight plugin that adds a selection of custom enchantments, easy to configure.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/g-enchantbooks\/\" \/>\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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/g-enchantbooks\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/g-enchantbooks\\\/\",\"name\":\"G-EnchantBooks - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/g-enchantbooks\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/g-enchantbooks\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/g-enchantbooks-icon-357ae4cf8cdd31452b957a95c838e20b780a26fb_96.webp\",\"datePublished\":\"2026-06-04T07:49:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/g-enchantbooks\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/g-enchantbooks\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/g-enchantbooks\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/g-enchantbooks-icon-357ae4cf8cdd31452b957a95c838e20b780a26fb_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/g-enchantbooks-icon-357ae4cf8cdd31452b957a95c838e20b780a26fb_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/g-enchantbooks\\\/#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\":\"G-EnchantBooks\"}]},{\"@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":"G-EnchantBooks - 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\/g-enchantbooks\/","og_locale":"en_US","og_type":"article","og_title":"G-EnchantBooks - Minecraft","og_description":"A lightweight plugin that adds a selection of custom enchantments, easy to configure.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/g-enchantbooks\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/g-enchantbooks\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/g-enchantbooks\/","name":"G-EnchantBooks - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/g-enchantbooks\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/g-enchantbooks\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/g-enchantbooks-icon-357ae4cf8cdd31452b957a95c838e20b780a26fb_96.webp","datePublished":"2026-06-04T07:49:58+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/g-enchantbooks\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/g-enchantbooks\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/g-enchantbooks\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/g-enchantbooks-icon-357ae4cf8cdd31452b957a95c838e20b780a26fb_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/g-enchantbooks-icon-357ae4cf8cdd31452b957a95c838e20b780a26fb_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/g-enchantbooks\/#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":"G-EnchantBooks"}]},{"@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\/74468","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\/74469"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=74468"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=74468"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=74468"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=74468"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}