java.lang.Object
fr.multimc.api.spigot.common.worlds.locations.zones.effects.effects.PotionZoneEffect
All Implemented Interfaces:
IZoneEffect

public class PotionZoneEffect extends Object implements IZoneEffect
This class represents a zone effect that applies a potion effect to players or entities.
  • Constructor Summary

    Constructors
    Constructor
    Description
    PotionZoneEffect(org.bukkit.potion.PotionEffectType effectType, int level, int duration, boolean particules)
    Constructs a new potion zone effect.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Applies the potion effect to the given player.
    void
    applyEffect(org.bukkit.entity.Entity entity)
    Applies the potion effect to the given entity.
    void
    Removes the potion effect from the given player.
    void
    removeEffect(org.bukkit.entity.Entity entity)
    Removes the potion effect from the given entity.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • 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 apply
      level - the level of the potion effect
      duration - the duration of the potion effect, in ticks
      particules - whether to display particles for the potion effect
  • Method Details

    • applyEffect

      public void applyEffect(MmcPlayer player)
      Applies the potion effect to the given player.
      Specified by:
      applyEffect in interface IZoneEffect
      Parameters:
      player - MmcPlayer to apply the effect to
    • removeEffect

      public void removeEffect(MmcPlayer player)
      Removes the potion effect from the given player.
      Specified by:
      removeEffect in interface IZoneEffect
      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 interface IZoneEffect
      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 interface IZoneEffect
      Parameters:
      entity - Entity to remove the effect from