Package net.minecraft.world.item.alchemy
Record Class PotionContents
java.lang.Object
java.lang.Record
net.minecraft.world.item.alchemy.PotionContents
- All Implemented Interfaces:
ConsumableListener,TooltipProvider
public record PotionContents(Optional<Holder<Potion>> potion, Optional<Integer> customColor, List<MobEffectInstance> customEffects, Optional<String> customName)
extends Record
implements ConsumableListener, TooltipProvider
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intstatic final com.mojang.serialization.Codec<PotionContents> The field for thecustomColorrecord component.private final List<MobEffectInstance> The field for thecustomEffectsrecord component.The field for thecustomNamerecord component.static final PotionContentsprivate static final com.mojang.serialization.Codec<PotionContents> private static final ComponentThe field for thepotionrecord component.static final StreamCodec<RegistryFriendlyByteBuf, PotionContents> -
Constructor Summary
ConstructorsConstructorDescriptionPotionContents(Optional<Holder<Potion>> potion, Optional<Integer> customColor, List<MobEffectInstance> customEffects, Optional<String> customName) Creates an instance of aPotionContentsrecord class.PotionContents(Holder<Potion> p_331208_) -
Method Summary
Modifier and TypeMethodDescriptionstatic voidaddPotionTooltip(Iterable<MobEffectInstance> pEffects, Consumer<Component> pTooltipAdder, float pDurationFactor, float pTicksPerSecond) voidaddToTooltip(Item.TooltipContext pContext, Consumer<Component> pTooltipAdder, TooltipFlag pFlag, DataComponentGetter pComponentGetter) voidapplyToLivingEntity(LivingEntity pEntity, float pDurationScale) static ItemStackcreateItemStack(Item pItem, Holder<Potion> pPotion) Returns the value of thecustomColorrecord component.Returns the value of thecustomEffectsrecord component.Returns the value of thecustomNamerecord component.final booleanIndicates whether some other object is "equal to" this one.voidforEachEffect(Consumer<MobEffectInstance> pAction, float pDurationScale) intgetColor()static OptionalIntgetColorOptional(Iterable<MobEffectInstance> pEffects) intgetColorOr(int pDefaultValue) static MutableComponentgetPotionDescription(Holder<MobEffect> pEffect, int pLevel) booleanfinal inthashCode()Returns a hash code value for this object.booleanvoidonConsume(Level pLevel, LivingEntity pEntity, ItemStack pStack, Consumable pConsumable) potion()Returns the value of thepotionrecord component.final StringtoString()Returns a string representation of this record class.withEffectAdded(MobEffectInstance pEffect) withPotion(Holder<Potion> pPotion)
-
Field Details
-
potion
The field for thepotionrecord component. -
customColor
The field for thecustomColorrecord component. -
customEffects
The field for thecustomEffectsrecord component. -
customName
The field for thecustomNamerecord component. -
EMPTY
-
NO_EFFECT
-
BASE_POTION_COLOR
public static final int BASE_POTION_COLOR- See Also:
-
FULL_CODEC
-
CODEC
-
STREAM_CODEC
-
-
Constructor Details
-
PotionContents
-
PotionContents
public PotionContents(Optional<Holder<Potion>> potion, Optional<Integer> customColor, List<MobEffectInstance> customEffects, Optional<String> customName) Creates an instance of aPotionContentsrecord class.- Parameters:
potion- the value for thepotionrecord componentcustomColor- the value for thecustomColorrecord componentcustomEffects- the value for thecustomEffectsrecord componentcustomName- the value for thecustomNamerecord component
-
-
Method Details
-
createItemStack
-
is
-
getAllEffects
-
forEachEffect
-
withPotion
-
withEffectAdded
-
getColor
public int getColor() -
getColorOr
public int getColorOr(int pDefaultValue) -
getName
-
getColorOptional
-
hasEffects
public boolean hasEffects() -
customEffects
Returns the value of thecustomEffectsrecord component.- Returns:
- the value of the
customEffectsrecord component
-
applyToLivingEntity
-
addPotionTooltip
public static void addPotionTooltip(Iterable<MobEffectInstance> pEffects, Consumer<Component> pTooltipAdder, float pDurationFactor, float pTicksPerSecond) -
getPotionDescription
-
onConsume
- Specified by:
onConsumein interfaceConsumableListener
-
addToTooltip
public void addToTooltip(Item.TooltipContext pContext, Consumer<Component> pTooltipAdder, TooltipFlag pFlag, DataComponentGetter pComponentGetter) - Specified by:
addToTooltipin interfaceTooltipProvider
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
potion
Returns the value of thepotionrecord component.- Returns:
- the value of the
potionrecord component
-
customColor
Returns the value of thecustomColorrecord component.- Returns:
- the value of the
customColorrecord component
-
customName
Returns the value of thecustomNamerecord component.- Returns:
- the value of the
customNamerecord component
-