Class PotionZoneEffect
java.lang.Object
fr.multimc.api.spigot.common.worlds.locations.zones.effects.effects.PotionZoneEffect
- All Implemented Interfaces:
IZoneEffect
This class represents a zone effect that applies a potion effect to players or entities.
-
Constructor Summary
ConstructorsConstructorDescriptionPotionZoneEffect
(org.bukkit.potion.PotionEffectType effectType, int level, int duration, boolean particules) Constructs a new potion zone effect. -
Method Summary
Modifier and TypeMethodDescriptionvoid
applyEffect
(MmcPlayer player) Applies the potion effect to the given player.void
applyEffect
(org.bukkit.entity.Entity entity) Applies the potion effect to the given entity.void
removeEffect
(MmcPlayer player) Removes the potion effect from the given player.void
removeEffect
(org.bukkit.entity.Entity entity) Removes the potion effect from the given entity.
-
Constructor Details
-
PotionZoneEffect
public PotionZoneEffect(org.bukkit.potion.PotionEffectType effectType, int level, int duration, boolean particules) Constructs a new potion zone effect.- Parameters:
effectType
-PotionEffectType
of potion effect to applylevel
- the level of the potion effectduration
- the duration of the potion effect, in ticksparticules
- whether to display particles for the potion effect
-
-
Method Details
-
applyEffect
Applies the potion effect to the given player.- Specified by:
applyEffect
in interfaceIZoneEffect
- Parameters:
player
-MmcPlayer
to apply the effect to
-
removeEffect
Removes the potion effect from the given player.- Specified by:
removeEffect
in interfaceIZoneEffect
- Parameters:
player
-MmcPlayer
to remove the effect from
-
applyEffect
public void applyEffect(org.bukkit.entity.Entity entity) Applies the potion effect to the given entity.- Specified by:
applyEffect
in interfaceIZoneEffect
- Parameters:
entity
-Entity
to apply the effect to
-
removeEffect
public void removeEffect(org.bukkit.entity.Entity entity) Removes the potion effect from the given entity.- Specified by:
removeEffect
in interfaceIZoneEffect
- Parameters:
entity
-Entity
to remove the effect from
-