Apothic Attributes
🟡 Updated this year⚠️ Install Order · 2 steps
Install in this order, then this mod last — most mods fail to load without their framework and dependencies in place.
Preview

🔍 Analysis
- 👍 0.0% endorsement rate
- 🏆 #301 of 653 adventure mods in this game by downloads
📋 About This Mod
# Description Apothic Attributes is a library mod that provides a variety of attributes and attribute-related utilities, which makes interacting with, debugging, and using attributes much easier. The current list of Attributes is (https://github.com/Shadows-of-Fire/Apothic-Attributes/blob/1.20/src/main/java/dev/shadowsoffire/attributeslib/api/ALObjects.java#L26). Most of the features are developer-facing, but there are a few user-facing components: # The Attributes GUI Apothic Attributes provides an Attributes GUI, accessible via the sword button in your inventory. This GUI shows all attributes that are attached to your player. You can filter the displayed attributes to only show modified attributes, and hovering an attribute will show a description and detailed information. !(https://i.imgur.com/stOm5Tk.png) # Armor Calculations To support the addition of Armor Pierce, Armor Shred, Protection Pierce, and Protection Shred, Apothic Attributes changes the way that damage reduction calculations are done, for both Armor and Protection. (https://minecraft.wiki/w/Armor#Mechanics), armor reduces damage based on your armor toughness value and the incoming damage value. With (https://github.com/Shadows-of-Fire/Apothic-Attributes/blob/1.20/src/main/java/dev/shadowsoffire/attributeslib/api/ALCombatRules.java#L92), only armor reduces incoming damage, and armor toughness reduces the effectiveness of enemy Armor Shred and Armor Pierce. For specifics on damage formulas, (https://github.com/Shadows-of-Fire/Apothic-Attributes/blob/1.20/src/main/java/dev/shadowsoffire/attributeslib/api/ALCombatRules.java#L71) The changes in damage taken as a result of this can be seen in the following chart, where "New Apoth" is the formula currently used by Apothic Attributes. This chart does not take protection calculations into account. The changes to protection are described (https://github.com/Shadows-of-Fire/Apothic-Attributes/blob/1.20/src/main/java/dev/shadowsoffire/attributeslib/api/ALCombatRules.java#L48). !(https://i.imgur.com/j2iRIPV.png) # Potion Tooltips Another player-facing feature is the changes to potion tooltips. Descriptions will be added to potion items that are not simple attribute modifiers, and these descriptions (as well as the attribute modifiers) will be shown when hovering your active effects in the inventory. !(https://i.imgur.com/faMtfdW.png) # Attribute Formatting Apothic Attributes allows attributes to format their own tooltips. The most notable example of attributes with custom formatting are Percent-Based Attributes, which always display their values in percentage form, regardless of their modifier type. The vanilla attributes **Speed** and **Knockback Resistance** are displayed in Percent-Based mode. Part of this feature is the additional tooltip information. When advanced tooltips (f3+h) are enabled, additional information about the modifier type and the underlying value will be shown. !(https://i.imgur.com/Ku74Yn8.png) ## Advanced Tooltip Info Reference Addition modifiers will show text similar to **** Multiply Base modifiers will show text similar to **** Multiply Total modifiers will show text similar to **** Note that Multiply Total values have their underlying value offset by +1, even in the advanced tooltip display. This is due to how they are applied (a multiply total modifier causes the final value to be multiplied by 1+value). # Developing Apothic Attributes depends on Placebo, and is available via maven: ```gradle maven { // Shadows_of_Fire's Maven url "https://maven.shadowsoffire.dev/releases" } dependencies { implementation fg.deobf("dev.shadowsoffire:Placebo:${mcVersion}-${placeboVersion}") implementation fg.deobf("dev.shadowsoffire:ApothicAttributes:${mcVersion}-${attributesLibVersion}") } ``` The API package (https://github.com/Shadows-of-Fire/Apothic-Attributes/tree/1.20/src/main/java/dev/shadowsoffire/attributeslib/api) of Apothic Attributes contains everything you should need to interface with from the mod. # Support Me (https://i.imgur.com/4D6zgZt.png)](https://discord.com/servers/shadows-mods-613010559532531713) (https://i.imgur.com/2kmJdLg.png)](https://www.akliz.net/shadows) ## Contact Discord: <https://discord.shadowsoffire.dev/landing>
# Description
Apothic Attributes is a library mod that provides a variety of attributes and attribute-related utilities, which makes interacting with, debugging, and using attributes much easier. The current list of Attributes is (https://github.com/Shadows-of-Fire/Apothic-Attributes/blob/1. 20/src/main/java/dev/shadowsoffire/attributeslib/api/ALObjects.java#L26). Most of the features are developer-facing, but there are a few user-facing components:
# The Attributes GUI
Apothic Attributes provides an Attributes GUI, accessible via the sword button in your inventory. This GUI shows all attributes that are attached to your player. You can filter the displayed attributes to only show modified attributes, and hovering an attribute will show a description and detailed information.
!(https://i.imgur.com/stOm5Tk.png)
# Armor Calculations
To support the addition of Armor Pierce, Armor Shred, Protection Pierce, and Protection Shred, Apothic Attributes changes the way that damage reduction calculations are done, for both Armor and Protection.
(https://minecraft.wiki/w/Armor#Mechanics), armor reduces damage based on your armor toughness value and the incoming damage value. With (https://github.com/Shadows-of-Fire/Apothic-Attributes/blob/1. 20/src/main/java/dev/shadowsoffire/attributeslib/api/ALCombatRules.java#L92), only armor reduces incoming damage, and armor toughness reduces the effectiveness of enemy Armor Shred and Armor Pierce. For specifics on damage formulas, (https://github.com/Shadows-of-Fire/Apothic-Attributes/blob/1. 20/src/main/java/dev/shadowsoffire/attributeslib/api/ALCombatRules.java#L71)
The changes in damage taken as a result of this can be seen in the following chart, where "New Apoth" is the formula currently used by Apothic Attributes. This chart does not take protection calculations into account. The changes to protection are described (https://github.com/Shadows-of-Fire/Apothic-Attributes/blob/1. 20/src/main/java/dev/shadowsoffire/attributeslib/api/ALCombatRules.java#L48).

# Potion Tooltips
Another player-facing feature is the changes to potion tooltips. Descriptions will be added to potion items that are not simple attribute modifiers, and these descriptions (as well as the attribute modifiers) will be shown when hovering your active effects in the inventory.

# Attribute Formatting
Apothic Attributes allows attributes to format their own tooltips. The most notable example of attributes with custom formatting are Percent-Based Attributes, which always display their values in percentage form, regardless of their modifier type. The vanilla attributes Speed and Knockback Resistance are displayed in Percent-Based mode.
Part of this feature is the additional tooltip information. When advanced tooltips (f3+h) are enabled, additional information about the modifier type and the underlying value will be shown.

## Advanced Tooltip Info Reference
Addition modifiers will show text similar to [+100]
Multiply Base modifiers will show text similar to [+20x]
Multiply Total modifiers will show text similar to
Note that Multiply Total values have their underlying value offset by +1, even in the advanced tooltip display. This is due to how they are applied (a multiply total modifier causes the final value to be multiplied by 1+value).
# Developing
Apothic Attributes depends on Placebo, and is available via maven:
```gradle maven { // Shadows_of_Fire's Maven url "https://maven.shadowsoffire.dev/releases" }
dependencies { implementation fg.deobf("dev.shadowsoffire:Placebo:${mcVersion}-${placeboVersion}") implementation fg.deobf("dev.shadowsoffire:ApothicAttributes:${mcVersion}-${attributesLibVersion}") } ```
The API package (https://github.com/Shadows-of-Fire/Apothic-Attributes/tree/1. 20/src/main/java/dev/shadowsoffire/attributeslib/api) of Apothic Attributes contains everything you should need to interface with from the mod.
# Support Me
[](https://discord.com/servers/shadows-mods-613010559532531713) [](https://www.akliz.net/shadows)
Discord:
📊 Mod Details
- Game
- Minecraft Mods
- Author
- Shadows-of-Fire
- Version
- 1.21.1-2.10.1
- Downloads
- 185,382
- Endorsements
- 8
- Category
- adventure
- Created
- 6/17/2026
- Updated
- 7/24/2026
- Game Versions
- 1.21.1
- Tags
- adventure, equipment, library
🔗 Required By 1 Mod
These mods list this mod as a dependency.
🔧 How to Install Minecraft Mods Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
📖 Full step-by-step install guide for Minecraft Mods →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Mods commands, item IDs, and more.
❓ Frequently Asked Questions
Which Minecraft Mods versions does Apothic Attributes support?
The author lists 1.21.1. Other versions may work but are untested by the author.
What is the latest version of Apothic Attributes?
Version 1.21.1-2.10.1, published 2026-07-24 with 185,382 downloads recorded at the source.
Keep browsing — more Minecraft Mods mods await