Package org.bukkit.potion
Class PotionEffect
java.lang.Object
org.bukkit.potion.PotionEffect
- All Implemented Interfaces:
ConfigurationSerializable
public class PotionEffect extends Object implements ConfigurationSerializable
Represents a potion effect, that can be added to a
LivingEntity
. A
potion effect has a duration that it will last for, an amplifier that will
enhance its effects, and a PotionEffectType
, that represents its
effect on an entity.-
Constructor Summary
Constructors Constructor Description PotionEffect(Map<String,Object> map)
Constructor for deserialization.PotionEffect(PotionEffectType type, int duration, int amplifier)
Creates a potion effect.PotionEffect(PotionEffectType type, int duration, int amplifier, boolean ambient)
Creates a potion effect.PotionEffect(PotionEffectType type, int duration, int amplifier, boolean ambient, boolean particles)
Creates a potion effect with no defined color.PotionEffect(PotionEffectType type, int duration, int amplifier, boolean ambient, boolean particles, boolean icon)
Creates a potion effect. -
Method Summary
Modifier and Type Method Description boolean
apply(LivingEntity entity)
Attempts to add the effect represented by this object to the givenLivingEntity
.boolean
equals(Object obj)
int
getAmplifier()
Returns the amplifier of this effect.Color
getColor()
Deprecated.color is not part of potion effectsint
getDuration()
Returns the duration (in ticks) that this effect will run for when applied to aLivingEntity
.PotionEffectType
getType()
Returns thePotionEffectType
of this effect.int
hashCode()
boolean
hasIcon()
boolean
hasParticles()
boolean
isAmbient()
Makes potion effect produce more, translucent, particles.Map<String,Object>
serialize()
Creates a Map representation of this class.String
toString()
-
Constructor Details
-
PotionEffect
public PotionEffect(@NotNull PotionEffectType type, int duration, int amplifier, boolean ambient, boolean particles, boolean icon)Creates a potion effect.- Parameters:
type
- effect typeduration
- measured in ticks, seegetDuration()
amplifier
- the amplifier, seegetAmplifier()
ambient
- the ambient status, seeisAmbient()
particles
- the particle status, seehasParticles()
icon
- the icon status, seehasIcon()
-
PotionEffect
public PotionEffect(@NotNull PotionEffectType type, int duration, int amplifier, boolean ambient, boolean particles)Creates a potion effect with no defined color.- Parameters:
type
- effect typeduration
- measured in ticks, seegetDuration()
amplifier
- the amplifier, seegetAmplifier()
ambient
- the ambient status, seeisAmbient()
particles
- the particle status, seehasParticles()
-
PotionEffect
Creates a potion effect. Assumes that particles are visible- Parameters:
type
- effect typeduration
- measured in ticks, seegetDuration()
amplifier
- the amplifier, seegetAmplifier()
ambient
- the ambient status, seeisAmbient()
-
PotionEffect
Creates a potion effect. Assumes ambient is true.- Parameters:
type
- Effect typeduration
- measured in ticksamplifier
- the amplifier for the effect- See Also:
PotionEffect(PotionEffectType, int, int, boolean)
-
PotionEffect
Constructor for deserialization.- Parameters:
map
- the map to deserialize from
-
-
Method Details
-
serialize
Description copied from interface:ConfigurationSerializable
Creates a Map representation of this class.This class must provide a method to restore this class, as defined in the
ConfigurationSerializable
interface javadocs.- Specified by:
serialize
in interfaceConfigurationSerializable
- Returns:
- Map containing the current state of this class
-
apply
Attempts to add the effect represented by this object to the givenLivingEntity
.- Parameters:
entity
- The entity to add this effect to- Returns:
- Whether the effect could be added
- See Also:
LivingEntity.addPotionEffect(PotionEffect)
-
equals
-
getAmplifier
public int getAmplifier()Returns the amplifier of this effect. A higher amplifier means the potion effect happens more often over its duration and in some cases has more effect on its target.- Returns:
- The effect amplifier
-
getDuration
public int getDuration()Returns the duration (in ticks) that this effect will run for when applied to aLivingEntity
.- Returns:
- The duration of the effect
-
getType
Returns thePotionEffectType
of this effect.- Returns:
- The potion type of this effect
-
isAmbient
public boolean isAmbient()Makes potion effect produce more, translucent, particles.- Returns:
- if this effect is ambient
-
hasParticles
public boolean hasParticles()- Returns:
- whether this effect has particles or not
-
getColor
Deprecated.color is not part of potion effects- Returns:
- color of this potion's particles. May be null if the potion has no particles or defined color.
-
hasIcon
public boolean hasIcon()- Returns:
- whether this effect has an icon or not
-
hashCode
public int hashCode() -
toString
-