Arcane Enchantments

Quick rating

Arcane Enchantments

No reviews yet

Adds enchantments that are useful/make the game easier, and also provides integration with other mods.

Mod Loaders
Forge
NeoForge
Minecraft
26.2

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Where It Runs
Client and Server

Must be installed on both the client and the server.

About

Project Details

Type
Mod
License
All Rights Reserved
Latest Version
arcane_enchantments-26.2-1.2.0.jar
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Arcane Enchantments

10 new enchantments for Minecraft Forge. Rare loot from dungeons, lifesteal, vein mining, food-powered repairs. All values are formula-based and scale with level. Everything is configurable.


Enchantments

Soul Capture (I-X)

Swords | Treasure only | Found in: Ancient City, Bastion, Deeper Darker temples

Kill a mob, chance to drop its spawn egg.

chance = (level / baseDivisor) * (minHP / max(mobMaxHP, minHP))

Default: baseDivisor = 1000, minHP = 10. Level X vs a 10 HP mob = 1% per kill. Tougher mobs have lower rates. Mob blacklist in config.


Vampiric Touch (I-V)

Swords, Axes | Enchanting table, Villagers

Heals you for a portion of damage dealt. Does not work on undead.

heal = min(damage * level * lifestealPerLevel, maxHealPerHit)

Default: 2% per level, capped at 2 HP (1 heart) per hit. Level V with Twilight Forest: 1% chance to drop Fiery Blood from burning TF mobs.


Hungry Steel (I-V)

All damageable items | Enchanting table, Villagers | Incompatible with Mending

Eating food repairs your gear instead of restoring hunger. Mending, but with food instead of XP.

durabilityRestored = nutrition * level * baseRate

Default: baseRate = 2.0. A steak (8 nutrition) at level V restores 80 durability. Repair priority: main hand > off hand > armor > inventory.


Indestructibility (I)

All damageable items | Treasure only | Found in: End City chests (2% chance)

The item never loses durability. Not available from enchanting tables or villagers.


Executioner (I-IV)

Swords, Axes | Enchanting table, Villagers

Bonus damage to mobs below a health threshold.

damage = baseDamage * (1 + level * damageBonusPerLevel)
// Only when target HP < hpThreshold * maxHP

Default: +5% per level when target is below 20% HP. Level IV = +20% damage.


Vein Miner (I-III)

Pickaxes | Treasure only | Found in: Abandoned Mineshaft chests

Break an ore block and all connected ores of the same type break with it. Only works on #forge:ores.

maxBlocks = baseBlocks * 2^(level - 1)

Default: baseBlocks = 8. Level I = 8 blocks, II = 16, III = 32. Each block costs 1 durability. Requires sneaking by default (configurable). Higher levels work with Apotheosis/Quark.


Ravenous Edge (I-V)

Swords, Axes | Enchanting table, Villagers

More damage, but you get hungry.

damage = baseDamage * (1 + level * damageBonusPerLevel)
exhaustion = level * exhaustionPerHit

Default: +6% damage per level, 0.5 exhaustion per hit per level. Level V: +30% damage, about 2 hits per hunger point lost.


Feral Agility (I-V)

Boots | Enchanting table, Villagers

Move faster, get hungry faster.

speedBonus = level * speedBonusPerLevel
exhaustion = distanceMoved * level * exhaustionPerMove

Default: +4% speed per level. Level V = +20% speed (about Speed I potion), exhaustion close to vanilla sprinting.


Neptune's Favor (I-III)

Fishing Rods | Treasure only | Requires Aquaculture

Catch can be replaced with loot from Aquaculture's neptunium table (Neptunium tools, nuggets, vanilla treasure).

activationChance = level * chancePerLevel

Default: 10% per level. Level III = 30% chance. Neptunium Fishing Rod + level IV+ = guaranteed Neptunium Nugget per catch.


Twilight Harvest (I-V)

Iron Axes, Iron Hoes | Treasure only | Requires Twilight Forest

Breaking Twilight Forest leaves can drop a Steeleaf Ingot.

dropChance = level * chancePerLevel

Default: 2% per level. Only found in TF dungeon chests (Labyrinth, Dark Tower, Hollow Hill).


Mod compatibility

Mod What it does
Apotheosis Blocks the Capturing enchantment (toggle in config). Enchantments scale past their default max level
Aquaculture Neptune's Favor enchantment
Twilight Forest Twilight Harvest enchantment, Fiery Blood drop from Vampiric Touch
Deeper and Darker Soul Capture books in Ancient Temple chests
Create Enchantment Industry Cost multiplier for book duplication in the Printing Press (default 4x), flat cost override for Indestructibility
Enchantment Descriptions Description support in tooltips

Configuration

Everything is in arcane_enchantments-common.toml:

  • Toggle each enchantment on/off
  • Set max level per enchantment (1-255)
  • Adjust all formula parameters (divisors, chances, multipliers, thresholds)
  • Apotheosis: toggle Capturing block
  • CEI: cost multiplier and Indestructibility flat cost
  • Vein Miner: sneak requirement toggle
  • Soul Capture: mob blacklist

All enchantments are formula-based, so they work with any mod that raises enchantment levels (Apotheosis, Quark, etc.). No hard caps unless you set them.


Quark

If you want Ancient Tomes with enchantments from this mod (which give +1 level to existing enchantments), add their IDs to the Valid Enchantments list in the Quark config.

Steps:

  1. Open quark-common.toml
  2. Find the "Valid Enchantments" parameter (around line 375)
  3. Add the enchantment IDs from this mod to the existing list (no line breaks!)
"Valid Enchantments" = ["minecraft:feather_falling", "minecraft:thorns",
"minecraft:sharpness", "minecraft:smite", "minecraft:bane_of_arthropods",
"minecraft:knockback", "minecraft:fire_aspect", "minecraft:looting", "minecraft:sweeping",
"minecraft:efficiency", "minecraft:unbreaking", "minecraft:fortune", "minecraft:power",
"minecraft:punch", "minecraft:luck_of_the_sea", "minecraft:lure", "minecraft:loyalty",
"minecraft:riptide", "minecraft:impaling", "minecraft:piercing",
"arcane_enchantments:vein_miner", "arcane_enchantments:vampiric_bite",
"arcane_enchantments:soul_capture", "arcane_enchantments:executioner",
"arcane_enchantments:hungry_steel", "arcane_enchantments:ravenous_edge",
"arcane_enchantments:feral_agility"]

If you also have Aquaculture and/or Twilight Forest, add these too:

"arcane_enchantments:neptunes_favor",
"arcane_enchantments:twilight_harvest"

Warning: If you have Apotheosis with the Enchantments module, adding our enchantments to the Quark config (Ancient Tomes) will cause a mod conflict and a game crash (ConcurrentModificationException). Either update both mods to the latest versions, or disable the Ancient Tomes module in Quark, or disable the Enchantments module in Apotheosis before editing the config.

Arcane Enchantments

10 new enchantments for Minecraft Forge. Rare loot from dungeons, lifesteal, vein mining, food-powered repairs. All values are formula-based and scale with level. Everything is configurable.


Enchantments

Soul Capture (I-X)

Swords | Treasure only | Found in: Ancient City, Bastion, Deeper Darker temples

Kill a mob, chance to drop its spawn egg.

chance = (level / baseDivisor) * (minHP / max(mobMaxHP, minHP))

Default: baseDivisor = 1000, minHP = 10. Level X vs a 10 HP mob = 1% per kill. Tougher mobs have lower rates. Mob blacklist in config.


Vampiric Touch (I-V)

Swords, Axes | Enchanting table, Villagers

Heals you for a portion of damage dealt. Does not work on undead.

heal = min(damage * level * lifestealPerLevel, maxHealPerHit)

Default: 2% per level, capped at 2 HP (1 heart) per hit. Level V with Twilight Forest: 1% chance to drop Fiery Blood from burning TF mobs.


Hungry Steel (I-V)

All damageable items | Enchanting table, Villagers | Incompatible with Mending

Eating food repairs your gear instead of restoring hunger. Mending, but with food instead of XP.

durabilityRestored = nutrition * level * baseRate

Default: baseRate = 2.0. A steak (8 nutrition) at level V restores 80 durability. Repair priority: main hand > off hand > armor > inventory.


Indestructibility (I)

All damageable items | Treasure only | Found in: End City chests (2% chance)

The item never loses durability. Not available from enchanting tables or villagers.


Executioner (I-IV)

Swords, Axes | Enchanting table, Villagers

Bonus damage to mobs below a health threshold.

damage = baseDamage * (1 + level * damageBonusPerLevel)
// Only when target HP < hpThreshold * maxHP

Default: +5% per level when target is below 20% HP. Level IV = +20% damage.


Vein Miner (I-III)

Pickaxes | Treasure only | Found in: Abandoned Mineshaft chests

Break an ore block and all connected ores of the same type break with it. Only works on #forge:ores.

maxBlocks = baseBlocks * 2^(level - 1)

Default: baseBlocks = 8. Level I = 8 blocks, II = 16, III = 32. Each block costs 1 durability. Requires sneaking by default (configurable). Higher levels work with Apotheosis/Quark.


Ravenous Edge (I-V)

Swords, Axes | Enchanting table, Villagers

More damage, but you get hungry.

damage = baseDamage * (1 + level * damageBonusPerLevel)
exhaustion = level * exhaustionPerHit

Default: +6% damage per level, 0.5 exhaustion per hit per level. Level V: +30% damage, about 2 hits per hunger point lost.


Feral Agility (I-V)

Boots | Enchanting table, Villagers

Move faster, get hungry faster.

speedBonus = level * speedBonusPerLevel
exhaustion = distanceMoved * level * exhaustionPerMove

Default: +4% speed per level. Level V = +20% speed (about Speed I potion), exhaustion close to vanilla sprinting.


Neptune's Favor (I-III)

Fishing Rods | Treasure only | Requires Aquaculture

Catch can be replaced with loot from Aquaculture's neptunium table (Neptunium tools, nuggets, vanilla treasure).

activationChance = level * chancePerLevel

Default: 10% per level. Level III = 30% chance. Neptunium Fishing Rod + level IV+ = guaranteed Neptunium Nugget per catch.


Twilight Harvest (I-V)

Iron Axes, Iron Hoes | Treasure only | Requires Twilight Forest

Breaking Twilight Forest leaves can drop a Steeleaf Ingot.

dropChance = level * chancePerLevel

Default: 2% per level. Only found in TF dungeon chests (Labyrinth, Dark Tower, Hollow Hill).


Mod compatibility

Mod What it does
Apotheosis Blocks the Capturing enchantment (toggle in config). Enchantments scale past their default max level
Aquaculture Neptune's Favor enchantment
Twilight Forest Twilight Harvest enchantment, Fiery Blood drop from Vampiric Touch
Deeper and Darker Soul Capture books in Ancient Temple chests
Create Enchantment Industry Cost multiplier for book duplication in the Printing Press (default 4x), flat cost override for Indestructibility
Enchantment Descriptions Description support in tooltips

Configuration

Everything is in arcane_enchantments-common.toml:

  • Toggle each enchantment on/off
  • Set max level per enchantment (1-255)
  • Adjust all formula parameters (divisors, chances, multipliers, thresholds)
  • Apotheosis: toggle Capturing block
  • CEI: cost multiplier and Indestructibility flat cost
  • Vein Miner: sneak requirement toggle
  • Soul Capture: mob blacklist

All enchantments are formula-based, so they work with any mod that raises enchantment levels (Apotheosis, Quark, etc.). No hard caps unless you set them.


Quark

If you want Ancient Tomes with enchantments from this mod (which give +1 level to existing enchantments), add their IDs to the Valid Enchantments list in the Quark config.

Steps:

  1. Open quark-common.toml
  2. Find the "Valid Enchantments" parameter (around line 375)
  3. Add the enchantment IDs from this mod to the existing list (no line breaks!)
"Valid Enchantments" = ["minecraft:feather_falling", "minecraft:thorns",
"minecraft:sharpness", "minecraft:smite", "minecraft:bane_of_arthropods",
"minecraft:knockback", "minecraft:fire_aspect", "minecraft:looting", "minecraft:sweeping",
"minecraft:efficiency", "minecraft:unbreaking", "minecraft:fortune", "minecraft:power",
"minecraft:punch", "minecraft:luck_of_the_sea", "minecraft:lure", "minecraft:loyalty",
"minecraft:riptide", "minecraft:impaling", "minecraft:piercing",
"arcane_enchantments:vein_miner", "arcane_enchantments:vampiric_touch",
"arcane_enchantments:soul_capture", "arcane_enchantments:executioner",
"arcane_enchantments:hungry_steel", "arcane_enchantments:ravenous_edge",
"arcane_enchantments:feral_agility"]

If you also have Aquaculture and/or Twilight Forest, add these too:

"arcane_enchantments:neptunes_favor",
"arcane_enchantments:twilight_harvest"

Warning: If you have Apotheosis with the Enchantments module, adding our enchantments to the Quark config (Ancient Tomes) will cause a mod conflict and a game crash (ConcurrentModificationException). Either update both mods to the latest versions, or disable the Ancient Tomes module in Quark, or disable the Enchantments module in Apotheosis before editing the config.

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

~1,000
Total Downloads
CurseForge
<1,000
Modrinth
<1,000
Last Updated
CurseForge
Modrinth
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works