@Deprecated public class Potion extends Object
| Constructor | Description | 
|---|---|
| Potion(PotionType type) | Deprecated. Construct a new potion of the given type. | 
| Potion(PotionType type,
      int level) | Deprecated. Create a new potion of the given type and level. | 
| Potion(PotionType type,
      int level,
      boolean splash) | Deprecated.
 In favour of using  Potion(PotionType)withsplash(). | 
| Potion(PotionType type,
      int level,
      boolean splash,
      boolean extended) | Deprecated.
 | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | apply(LivingEntity to) | Deprecated. Applies the effects that would be applied by this potion to the given
  LivingEntity. | 
| void | apply(ItemStack to) | Deprecated. Applies the effects of this potion to the given  ItemStack. | 
| boolean | equals(Object obj) | Deprecated. | 
| Potion | extend() | Deprecated. Chain this to the constructor to extend the potion's duration. | 
| static Potion | fromDamage(int damage) | Deprecated. | 
| static Potion | fromItemStack(ItemStack item) | Deprecated. | 
| static PotionBrewer | getBrewer() | Deprecated. Returns an instance of  PotionBrewer. | 
| Collection<PotionEffect> | getEffects() | Deprecated. | 
| int | getLevel() | Deprecated. Returns the level of this potion. | 
| int | getNameId() | Deprecated.
 Non-functional | 
| PotionType | getType() | Deprecated. Returns the  PotionTypeof this potion. | 
| boolean | hasExtendedDuration() | Deprecated. Returns whether this potion has an extended duration. | 
| int | hashCode() | Deprecated. | 
| boolean | isSplash() | Deprecated. Returns whether this potion is a splash potion. | 
| void | setHasExtendedDuration(boolean isExtended) | Deprecated. Set whether this potion has extended duration. | 
| void | setLevel(int level) | Deprecated. Sets the level of this potion. | 
| static void | setPotionBrewer(PotionBrewer other) | Deprecated. Sets the current instance of  PotionBrewer. | 
| void | setSplash(boolean isSplash) | Deprecated. Sets whether this potion is a splash potion. | 
| void | setType(PotionType type) | Deprecated. Sets the  PotionTypeof this potion. | 
| Potion | splash() | Deprecated. Chain this to the constructor to make the potion a splash potion. | 
| short | toDamageValue() | Deprecated.
 Non-functional | 
| ItemStack | toItemStack(int amount) | Deprecated. Converts this potion to an  ItemStackwith the specified amount
 and a correct damage value. | 
public Potion(@NotNull
              PotionType type)
PotionType.WATER, it will be level one, without extended duration.
 Don't use this constructor to create a no-effect potion other than
 water bottle.type - The potion typepublic Potion(@NotNull
              PotionType type,
              int level)
type - The type of potion.level - The potion's level.@Deprecated public Potion(@NotNull PotionType type, int level, boolean splash)
Potion(PotionType) with splash().type - The type of potion.level - The potion's level.splash - Whether it is a splash potion.@Deprecated public Potion(@NotNull PotionType type, int level, boolean splash, boolean extended)
type - The type of potion.level - The potion's level.splash - Whether it is a splash potion.extended - Whether it has an extended duration.@NotNull public Potion splash()
@NotNull public Potion extend()
public void apply(@NotNull
                  ItemStack to)
ItemStack. The
 ItemStack must be a potion.to - The itemstack to apply topublic void apply(@NotNull
                  LivingEntity to)
LivingEntity.to - The entity to apply the effects toLivingEntity.addPotionEffects(Collection)@NotNull public Collection<PotionEffect> getEffects()
PotionBrewer.getEffectsFromDamage(int), 
toDamageValue()public int getLevel()
@NotNull public PotionType getType()
PotionType of this potion.public boolean hasExtendedDuration()
public boolean isSplash()
public void setHasExtendedDuration(boolean isExtended)
isExtended - Whether the potion should have extended durationpublic void setSplash(boolean isSplash)
isSplash - Whether this is a splash potionpublic void setType(@NotNull
                    PotionType type)
PotionType of this potion.type - The new type of this potionpublic void setLevel(int level)
level - The new level of this potion@Deprecated public short toDamageValue()
@NotNull public ItemStack toItemStack(int amount)
ItemStack with the specified amount
 and a correct damage value.amount - The amount of the ItemStack@NotNull public static Potion fromDamage(int damage)
damage - the damage value@NotNull public static PotionBrewer getBrewer()
PotionBrewer.public static void setPotionBrewer(@NotNull
                                   PotionBrewer other)
PotionBrewer. Generally not to be
 used from within a plugin.other - The new PotionBrewer@Deprecated public int getNameId()
Copyright © 2020. All rights reserved.