Enchantment Descriptions

Enchantment Descriptions

172M Downloads

[QUESTION] Accessing your descriptions from other mods?

avivbeeri opened this issue ยท 2 comments

commented

Question

Hi there,

I make Kintsugi, which replaces the vanilla enchanting system (including the enchantment table menu) with a custom one. I had a request to include support for your tooltips, and I'm trying to determine if that's possible.

Is there some way I could either use your descriptions directly, or access them through an API?

commented

Hello,

Descriptions are usually defined using a localization based specification pushed by this mod. Basically, if the key for enchantment.%namespace%.%path%.desc exists, the value can be used as a description. Here's some example code that roughly shows how it works.

        final String key = "enchantment." + enchId.getNamespace() + "." + enchId.getPath() + ".desc";
        if (I18n.exists(key)) {
            tooltip.add(Component.translatable(key));
        }
commented

Ah I see, thank you!