Enchantment Infusion
🪄 Introduction
Adds an alternative method for enchanting items, drawing inspiration from the Enchanting Apparatus mechanics found in the Ars Nouveau mod.
▶️ How Enchanting Works
The game introduces two new blocks: the Enchantment Infusion Table and the Enchantment Infusion Pedestal. To place an item on these blocks, right-click while holding the item. To remove an item - right-click with an empty hand.
You need to arrange the Enchantment Infusion Table (in the center position) and Enchantment Infusion Pedestals (surrounding positions) according to the pattern shown below. Then, place the recipe items on the pedestals corresponding to the desired spell (order doesn't matter). Finally, place the item you wish to enchant on the central table. The process will automatically complete after a few seconds.

🔧 Crafting Recipes

📜 Enchantment Recipes
Spell Infusion System
The mod introduces a new recipe type (enchantment_infusion:enchantment_infusion). Example JSON file for a single recipe:
{
"type": "enchantment_infusion:enchantment_infusion",
"enchantment": "minecraft:efficiency",
"force": false,
"ingredients": [
{
"item": "minecraft:redstone_block"
},
{
"item": "minecraft:redstone_block"
},
{
"item": "minecraft:diamond_pickaxe"
},
{
"item": "minecraft:diamond_shovel"
},
{
"item": "minecraft:amethyst_shard"
},
{
"item": "minecraft:amethyst_shard"
},
{
"item": "minecraft:lapis_block"
},
{
"item": "minecraft:lapis_block"
}
],
"input": {
"enchantment": "minecraft:efficiency",
"min_level": 4
},
"level": 5
}
| Field | Required | Description |
|---|---|---|
type |
Yes | Specifies the recipe type as enchantment infusion |
enchantment |
Yes | Identifier of the target enchantment |
level |
Yes | Level of the target enchantment |
ingredients |
Yes | Recipe ingredients, up to 8 items, order doesn't matter (shapeless recipe) |
input |
No | Existing enchantment that will be consumed during infusion |
force |
No | Ignores enchantment compatibility and forcibly applies to items, default false |
Default Recipes
This mod includes several default recipes borrowed from Ars Nouveau, but using standard Minecraft items instead of originals:
| Original Item | Replacement |
|---|---|
| Source Gem | Amethyst Shard |
| Water Essence | Water Bucket |
| Air Essence | Phantom Membrane |
| Fire Essence | Fire Charge |
| Abjuration Essence | Golden Apple |
| Earth Essence | Leaves |
| Manipulation Essence | Clock |
| Wilden Spike | Sweet Berries |
Simple Infusion
Starting from version 1.2.0, a new recipe type has been added (enchantment_infusion:simple_infusion). Example JSON file:
{
"type": "enchantment_infusion:simple_infusion",
"ingredients": [
{
"item": "minecraft:redstone"
},
{
"tag": "spell-dimension:essence/0"
}
],
"input": {
"item": "minecraft:leather_boots",
"min_level": 4
},
"output": {
"Count": 1,
"id": "artifacts:running_shoes"
},
"copy_nbt": false
}
| Field | Required | Description |
|---|---|---|
| type | Yes | Specifies the recipe type as simple infusion |
| ingredients | Yes | Recipe ingredients, up to 8 items, order doesn't matter |
| input | Yes | Input ingredient for the central infusion table |
| output | Yes | Output item |
| copy_nbt | No | Whether to copy NBT data from input item to output item, default true |
🧩 Compatibility
The mod has built-in support for REI and EMI plugins, allowing you to view all recipes through both recipe viewing systems.
📢 Development Status
The mod hasn't undergone full testing yet and remains in beta version.