
Enchant Faker
Allows you to assign enchantment effects to mob/potion/status effects using tags.
- Загрузки
- 1K
- Подписчики
- 7
- Обновлён
- 1 января 2026 г.
- Лицензия
- MIT
Опубликован 24 февраля 2025 г.
Lets you apply enchantments to entities based on their current status effects. The enchantments to apply are determined by mob_effect tags.
Usage
Add tags via data pack at data/minecraft/tags/mob_effect/.
Example
data/minecraft/tags/mob_effect/gives_respiration.json:
{
"replace": true,
"values": [
"spectral_seas:amphibious"
]
}
Add mappings to the configuration:

The resulting enchant_faker.json5 config file:
{
// Tag To Enchantment Mappings
"tagConfig": [
{
"tag": "gives_respiration",
"enchantment": "minecraft:respiration",
"level": 3
}
]
}
Now, whenever an entity has the spectral_seas:amphibious effect, they will also get the Respiration III
enchantment as if they were wearing a helmet enchanted with it.
You will need to restart Minecraft after any config changes.
Acknowledgements
Inspired by Lilligant
Icon: magic hat by ridhobadal from Noun Project (CC BY 3.0)
Ченджлог
1.0.2+1.20.1Релиз1.20.1 · 1 января 2026 г.
Fixed
- Removed excessively verbose logging that was murdering performance.
1.0.1+1.20.1Релиз1.20.1 · 26 февраля 2025 г.
- Corrected a documentation error (showed tags going in
data/enchant_fakerinstead ofdata/minecraft). No code changes.
1.0.0+1.20.1Релиз1.20.1 · 24 февраля 2025 г.
Initial public release.
Комментарии
Загружаем…