Enchantment Descriptions

Enchantment Descriptions

172M Downloads

[QUESTION] How to add descriptions to datapack enchants?

Mariosonicman91 opened this issue ยท 4 comments

commented

Question

There's no lang file! How do I add a description? I wish the mod version of the enchant mod didn't just compile the datapack into a .jar...

commented

EXAMPLE (Enchantments+):
{
"description": {
"translate": "enchantment.enchantsplus.gluttony",
"fallback": "Gluttony"
},
"supported_items": "#enchantsplus:toolsnsword",
"weight": 2,
"max_level": 3,
"min_cost": {
"base": 25,
"per_level_above_first": 9
},
"max_cost": {
"base": 65,
"per_level_above_first": 9
},
"anvil_cost": 6,
"slots": [
"mainhand"
]
}

Do I add "description" to "description" or something? desc.enchantment.enchantsplus.gluttony? How do I do this?

commented

OOOOH!

Resource Pack .lang and then add it there??? That must also be how to override it! Nice!

commented

Enchantment Descriptions are defined using the resource pack language file. It goes in assets/your_pack_id/lang/en_us.json. Data packs can not include asset files on their own, but if they are bundled as a mod or loaded with OpenLoader the file can be treated as both types of packs. For a better example, please check out the Enchantments Encore datapack which has support for this mod.

commented

Yeah! I'm making a modpack with forced global resource and datapacks. Figured it out. Thanks!