
Mana and Artifice - Custom Spell Icon Loader
Although the Mana and Artifice modification offers players a huge collection of ready-made spell icons (a whopping 405 options), many users wanted to add their own unique images. Unfortunately, the mod's standard API does not support this feature, so this additional module was developed to solve this problem.
How it works:
To add your own icons, you need to follow a few simple steps. First, open the configuration file moremnaicons-client.toml and add a list of model names you want to use:
customIcons = ["your_resource_pack_name:spell_icon/your-icon","your_resource_pack_name:spell_icon/your-icon2"]
Next, create or modify an existing resource pack, the structure of which should look like this:
your_resource_pack_name/
assets/
your_resource_pack_name/
textures/
item/
sorcery/
icons/
your-icon.png
models/
spell_icon/
your-icon.json
pack.mcmeta
Example of JSON model file content:
{
"parent": "item/generated",
"textures": {
"layer0": "spellicondatapack:item/sorcery/icons/custom-icon",
"layer1": "mna:item/sorcery/spell_frame"
}
}
After completing these steps, your unique spell icons will become available for use in the game!