Custom Enchantments Plugin
A lightweight, powerful Bukkit plugin that allows you to define your own enchantments via config files.
How It Works
This plugin reads your config.yml file and automatically creates custom enchantments with the values you used in the config.
This plugin only registers custom enchantments — they do not have any built-in effects.
To make enchantments actually do something, you can use:
- Skript/Denizen
- Datapacks
- Plugins
You can check if an item is enchanted with registered enchantment, using namespaced keys like:
fec:lifesteal, fec:double_jump, fec:something, and so on
⚙️ Features
-
✅ Fully configurable enchantments
- Name, max level, weight, costs, anvil cost, and supported items.
-
Custom enchantment description colors
- Optional Color option lets you set enchantment tooltip color. (e.g., "&#FF2424" for red)
- Defaults to vanilla gray if no color is set.
-
Support for grouped item tags
- Use groups like %SWORDS%, %AXES%, %PICKAXES%, %HOES%, %SHOVELS%, %ARMORS%, %HELMETS%, %CHESTPLATES%, %LEGGINGS, %BOOTS%. To target many items easily. (These groups are in lists.yml)
- You can also define your own custom groups in lists.yml, like %FOOD%, to organize and reuse item sets across multiple enchantments.
-
❌ New: Enchantment Ignoring System
- Add an Ignore: field to prevent your custom enchantment from being applied if the item has any listed enchantments.
- Supports both vanilla and custom enchantment IDs.
Example Config
Code (Text):
leech:
Name: "Lifesteal"
Color: "&#FF2424"
SupportedItems: "%SWORDS%,MACE"
Ignore: "MINECRAFT:SHARPNESS,MINECRAFT:LOOTING,FEC:firetouch"
Weight: 5
maxLevel: 3
minCost: 3
maxCost: 16
anvilCost: 3