Potions & Effects
Potion Names & Colors
Damage values set the potion color, potion effect, default duration and name for potion items.
Use the <effect>
element to set custom duration, amplifier and desired status effect.
Damage Value | Potion Name | Status Effect | Color |
---|---|---|---|
Water Bottle | Blue | ||
Potion of Regeneration | Pink | ||
Potion of Swiftness | Sky Blue | ||
Potion of Fire Resistance | Orange | ||
Potion of Poison | Green | ||
Potion of Healing | Red | ||
Potion of Night Vision | Navy Blue | ||
Clear Potion | Blue | ||
Potion of Weakness | Gray | ||
Potion of Strength | Dark Red | ||
Potion of Slowness | Blue-gray | ||
Potion of Leaping | Bright Green | ||
Potion of Harming | Purple | ||
Potion of Water Breathing | Blue | ||
Potion of Invisibility | Light Gray | ||
Thin Potion | Blue |
Splash Potions
Splash potions are determined by adding the damage value 16384
to the chosen potion value.
<!-- 16384 + 2 = 16386 -->
<!-- Splash potion + Speed color = Splash Potion of Swiftness I -->
<item amount="1" material="potion" damage="16386" name="Super Speed">
<!-- Overwrites original three minute Speed I effect -->
<effect duration="1m" amplifier="2">speed</effect>
</item>
<!-- 16384 + 5 = 16389 -->
<!-- Splash potion + Healing color = Splash Potion of Instant Health I -->
<item amount="1" material="potion" damage="16389">
<effect amplifier="1">instant_health</effect>
</item>
Damage Value | Potion Name | Status Effect | Color |
---|---|---|---|
Water Bottle | Blue | ||
Splash Potion of Regeneration | Pink | ||
Splash Potion of Swiftness | Sky Blue | ||
Splash Potion of Fire Resistance | Orange | ||
Splash Potion of Poison | Green | ||
Splash Potion of Healing | Red | ||
Splash Potion of Night Vision | Navy Blue | ||
Clear Potion | Blue | ||
Splash Potion of Weakness | Gray | ||
Splash Potion of Strength | Dark Red | ||
Splash Potion of Slowness | Blue-gray | ||
Splash Potion of Leaping | Bright Green | ||
Splash Potion of Harming | Purple | ||
Splash Potion of Water Breathing | Blue | ||
Splash Potion of Invisibility | Light Gray | ||
Thin Potion | Blue |
Other Status Effects
Potions can have other status effects applied that are not potion effects. Multiple effects can be applied to a potion.
Status Effect | Status ID |
---|---|
Absorption | |
Blindness | |
Confusion | |
Fast Digging | |
Health Boost | |
Saturation | |
Slow Digging | |
Wither |
<!-- Strength potion color -->
<item amount="1" material="potion" damage="9">
<effect amplifier="3" duration="100">absorption</effect>
<effect amplifier="1" duration="30">fast_digging</effect>
<effect amplifier="2" duration="30">speed</effect>
<!-- Strength potion effect is not applied at all -->
</item>