Package org.bukkit.entity
Interface AreaEffectCloud
-
- All Superinterfaces:
CommandSender,Entity,Metadatable,Nameable,Permissible,PersistentDataHolder,ServerOperator
public interface AreaEffectCloud extends Entity
Represents an area effect cloud which will imbue a potion effect onto entities which enter it.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.bukkit.entity.Entity
Entity.Spigot
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanaddCustomEffect(PotionEffect effect, boolean overwrite)Adds a custom potion effect to this cloud.voidclearCustomEffects()Removes all custom potion effects from this cloud.PotionDatagetBasePotionData()Returns the potion data about the base potionColorgetColor()Gets the color of this cloud.List<PotionEffect>getCustomEffects()Gets an immutable list containing all custom potion effects applied to this cloud.intgetDuration()Gets the duration which this cloud will exist for (in ticks).intgetDurationOnUse()Gets the amount that the duration of this cloud will decrease by when it applies an effect to an entity.ParticlegetParticle()Gets the particle which this cloud will be composed offloatgetRadius()Gets the initial radius of the cloud.floatgetRadiusOnUse()Gets the amount that the radius of this cloud will decrease by when it applies an effect to an entity.floatgetRadiusPerTick()Gets the amount that the radius of this cloud will decrease by each tick.intgetReapplicationDelay()Gets the time that an entity will be immune from subsequent exposure.ProjectileSourcegetSource()Retrieve the original source of this cloud.intgetWaitTime()Gets the time which an entity has to be exposed to the cloud before the effect is applied.booleanhasCustomEffect(PotionEffectType type)Checks for a specific custom potion effect type on this cloud.booleanhasCustomEffects()Checks for the presence of custom potion effects.booleanremoveCustomEffect(PotionEffectType type)Removes a custom potion effect from this cloud.voidsetBasePotionData(PotionData data)Sets the underlying potion datavoidsetColor(Color color)Sets the color of this cloud.voidsetDuration(int duration)Sets the duration which this cloud will exist for (in ticks).voidsetDurationOnUse(int duration)Sets the amount that the duration of this cloud will decrease by when it applies an effect to an entity.voidsetParticle(Particle particle)Sets the particle which this cloud will be composed of<T> voidsetParticle(Particle particle, T data)Sets the particle which this cloud will be composed ofvoidsetRadius(float radius)Sets the initial radius of the cloud.voidsetRadiusOnUse(float radius)Sets the amount that the radius of this cloud will decrease by when it applies an effect to an entity.voidsetRadiusPerTick(float radius)Gets the amount that the radius of this cloud will decrease by each tick.voidsetReapplicationDelay(int delay)Sets the time that an entity will be immune from subsequent exposure.voidsetSource(ProjectileSource source)Set the original source of this cloud.voidsetWaitTime(int waitTime)Sets the time which an entity has to be exposed to the cloud before the effect is applied.-
Methods inherited from interface org.bukkit.command.CommandSender
getName, sendMessage, sendMessage
-
Methods inherited from interface org.bukkit.entity.Entity
addPassenger, addScoreboardTag, eject, getBoundingBox, getEntityId, getFacing, getFallDistance, getFireTicks, getHeight, getLastDamageCause, getLocation, getLocation, getMaxFireTicks, getNearbyEntities, getPassenger, getPassengers, getPistonMoveReaction, getPortalCooldown, getPose, getScoreboardTags, getServer, getTicksLived, getType, getUniqueId, getVehicle, getVelocity, getWidth, getWorld, hasGravity, isCustomNameVisible, isDead, isEmpty, isGlowing, isInsideVehicle, isInvulnerable, isOnGround, isPersistent, isSilent, isValid, leaveVehicle, playEffect, remove, removePassenger, removeScoreboardTag, setCustomNameVisible, setFallDistance, setFireTicks, setGlowing, setGravity, setInvulnerable, setLastDamageCause, setPassenger, setPersistent, setPortalCooldown, setRotation, setSilent, setTicksLived, setVelocity, spigot, teleport, teleport, teleport, teleport
-
Methods inherited from interface org.bukkit.metadata.Metadatable
getMetadata, hasMetadata, removeMetadata, setMetadata
-
Methods inherited from interface org.bukkit.Nameable
getCustomName, setCustomName
-
Methods inherited from interface org.bukkit.permissions.Permissible
addAttachment, addAttachment, addAttachment, addAttachment, getEffectivePermissions, hasPermission, hasPermission, isPermissionSet, isPermissionSet, recalculatePermissions, removeAttachment
-
Methods inherited from interface org.bukkit.persistence.PersistentDataHolder
getPersistentDataContainer
-
Methods inherited from interface org.bukkit.permissions.ServerOperator
isOp, setOp
-
-
-
-
Method Detail
-
getDuration
int getDuration()
Gets the duration which this cloud will exist for (in ticks).- Returns:
- cloud duration
-
setDuration
void setDuration(int duration)
Sets the duration which this cloud will exist for (in ticks).- Parameters:
duration- cloud duration
-
getWaitTime
int getWaitTime()
Gets the time which an entity has to be exposed to the cloud before the effect is applied.- Returns:
- wait time
-
setWaitTime
void setWaitTime(int waitTime)
Sets the time which an entity has to be exposed to the cloud before the effect is applied.- Parameters:
waitTime- wait time
-
getReapplicationDelay
int getReapplicationDelay()
Gets the time that an entity will be immune from subsequent exposure.- Returns:
- reapplication delay
-
setReapplicationDelay
void setReapplicationDelay(int delay)
Sets the time that an entity will be immune from subsequent exposure.- Parameters:
delay- reapplication delay
-
getDurationOnUse
int getDurationOnUse()
Gets the amount that the duration of this cloud will decrease by when it applies an effect to an entity.- Returns:
- duration on use delta
-
setDurationOnUse
void setDurationOnUse(int duration)
Sets the amount that the duration of this cloud will decrease by when it applies an effect to an entity.- Parameters:
duration- duration on use delta
-
getRadius
float getRadius()
Gets the initial radius of the cloud.- Returns:
- radius
-
setRadius
void setRadius(float radius)
Sets the initial radius of the cloud.- Parameters:
radius- radius
-
getRadiusOnUse
float getRadiusOnUse()
Gets the amount that the radius of this cloud will decrease by when it applies an effect to an entity.- Returns:
- radius on use delta
-
setRadiusOnUse
void setRadiusOnUse(float radius)
Sets the amount that the radius of this cloud will decrease by when it applies an effect to an entity.- Parameters:
radius- radius on use delta
-
getRadiusPerTick
float getRadiusPerTick()
Gets the amount that the radius of this cloud will decrease by each tick.- Returns:
- radius per tick delta
-
setRadiusPerTick
void setRadiusPerTick(float radius)
Gets the amount that the radius of this cloud will decrease by each tick.- Parameters:
radius- per tick delta
-
getParticle
@NotNull Particle getParticle()
Gets the particle which this cloud will be composed of- Returns:
- particle the set particle type
-
setParticle
void setParticle(@NotNull Particle particle)Sets the particle which this cloud will be composed of- Parameters:
particle- the new particle type
-
setParticle
<T> void setParticle(@NotNull Particle particle, @Nullable T data)Sets the particle which this cloud will be composed of- Type Parameters:
T- type of particle data (seeParticle.getDataType()- Parameters:
particle- the new particle typedata- the data to use for the particle or null, the type of this depends onParticle.getDataType()
-
setBasePotionData
void setBasePotionData(@NotNull PotionData data)Sets the underlying potion data- Parameters:
data- PotionData to set the base potion state to
-
getBasePotionData
@NotNull PotionData getBasePotionData()
Returns the potion data about the base potion- Returns:
- a PotionData object
-
hasCustomEffects
boolean hasCustomEffects()
Checks for the presence of custom potion effects.- Returns:
- true if custom potion effects are applied
-
getCustomEffects
@NotNull List<PotionEffect> getCustomEffects()
Gets an immutable list containing all custom potion effects applied to this cloud.Plugins should check that hasCustomEffects() returns true before calling this method.
- Returns:
- the immutable list of custom potion effects
-
addCustomEffect
boolean addCustomEffect(@NotNull PotionEffect effect, boolean overwrite)Adds a custom potion effect to this cloud.- Parameters:
effect- the potion effect to addoverwrite- true if any existing effect of the same type should be overwritten- Returns:
- true if the effect was added as a result of this call
-
removeCustomEffect
boolean removeCustomEffect(@NotNull PotionEffectType type)Removes a custom potion effect from this cloud.- Parameters:
type- the potion effect type to remove- Returns:
- true if the an effect was removed as a result of this call
-
hasCustomEffect
boolean hasCustomEffect(@Nullable PotionEffectType type)Checks for a specific custom potion effect type on this cloud.- Parameters:
type- the potion effect type to check for- Returns:
- true if the potion has this effect
-
clearCustomEffects
void clearCustomEffects()
Removes all custom potion effects from this cloud.
-
getColor
@NotNull Color getColor()
Gets the color of this cloud. Will be applied as a tint to its particles.- Returns:
- cloud color
-
setColor
void setColor(@NotNull Color color)Sets the color of this cloud. Will be applied as a tint to its particles.- Parameters:
color- cloud color
-
getSource
@Nullable ProjectileSource getSource()
Retrieve the original source of this cloud.- Returns:
- the
ProjectileSourcethat threw the LingeringPotion
-
setSource
void setSource(@Nullable ProjectileSource source)Set the original source of this cloud.- Parameters:
source- theProjectileSourcethat threw the LingeringPotion
-
-