Record Class MobEffectEntityReward.Info

java.lang.Object
java.lang.Record
petrolpark.mc.library.core.data.reward.entity.MobEffectEntityReward.Info
All Implemented Interfaces:
IRewardInfo
Enclosing class:
MobEffectEntityReward

public static record MobEffectEntityReward.Info(net.minecraft.core.Holder<net.minecraft.world.effect.MobEffect> effect, NumberEstimate duration, NumberEstimate amplifier, boolean showParticles) extends Record implements IRewardInfo
  • Field Details

  • Constructor Details

    • Info

      public Info(net.minecraft.core.Holder<net.minecraft.world.effect.MobEffect> effect, NumberEstimate duration, NumberEstimate amplifier, boolean showParticles)
      Creates an instance of a Info record class.
      Parameters:
      effect - the value for the effect record component
      duration - the value for the duration record component
      amplifier - the value for the amplifier record component
      showParticles - the value for the showParticles record component
  • Method Details

    • render

      public void render(net.minecraft.client.gui.GuiGraphics graphics)
      Specified by:
      render in interface IRewardInfo
    • addToDescription

      public void addToDescription(Lang.IndentedTooltipBuilder builder)
      Specified by:
      addToDescription in interface IRewardInfo
    • getRewardInfoType

      public EntityRewardAndInfoType getRewardInfoType()
      Specified by:
      getRewardInfoType in interface IRewardInfo
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • effect

      public net.minecraft.core.Holder<net.minecraft.world.effect.MobEffect> effect()
      Returns the value of the effect record component.
      Returns:
      the value of the effect record component
    • duration

      public NumberEstimate duration()
      Returns the value of the duration record component.
      Returns:
      the value of the duration record component
    • amplifier

      public NumberEstimate amplifier()
      Returns the value of the amplifier record component.
      Returns:
      the value of the amplifier record component
    • showParticles

      public boolean showParticles()
      Returns the value of the showParticles record component.
      Returns:
      the value of the showParticles record component