Skip to main content

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 ValuePotion NameStatus EffectColor
Water BottleBlue
Potion of RegenerationPink
Potion of SwiftnessSky Blue
Potion of Fire ResistanceOrange
Potion of PoisonGreen
Potion of HealingRed
Potion of Night VisionNavy Blue
Clear PotionBlue
Potion of WeaknessGray
Potion of StrengthDark Red
Potion of SlownessBlue-gray
Potion of LeapingBright Green
Potion of HarmingPurple
Potion of Water BreathingBlue
Potion of InvisibilityLight Gray
Thin PotionBlue

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 ValuePotion NameStatus EffectColor
Water BottleBlue
Splash Potion of RegenerationPink
Splash Potion of SwiftnessSky Blue
Splash Potion of Fire ResistanceOrange
Splash Potion of PoisonGreen
Splash Potion of HealingRed
Splash Potion of Night VisionNavy Blue
Clear PotionBlue
Splash Potion of WeaknessGray
Splash Potion of StrengthDark Red
Splash Potion of SlownessBlue-gray
Splash Potion of LeapingBright Green
Splash Potion of HarmingPurple
Splash Potion of Water BreathingBlue
Splash Potion of InvisibilityLight Gray
Thin PotionBlue

Other Status Effects

Potions can have other status effects applied that are not potion effects. Multiple effects can be applied to a potion.

Status EffectStatus 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>