
[QUESTION] How to add descriptions to datapack enchants?
Mariosonicman91 opened this issue ยท 4 comments
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...
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?
OOOOH!
Resource Pack .lang and then add it there??? That must also be how to override it! Nice!
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.