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 potion 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 + 18 = 16402 -->
<!-- Splash potion + Speed color = Splash Potion of Swiftness I -->
<item amount="1" material="potion" damage="16402" 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>