Record Class EnchantmentAttributeEffect

java.lang.Object
java.lang.Record
net.minecraft.world.item.enchantment.effects.EnchantmentAttributeEffect
All Implemented Interfaces:
EnchantmentLocationBasedEffect

public record EnchantmentAttributeEffect(ResourceLocation id, Holder<Attribute> attribute, LevelBasedValue amount, AttributeModifier.Operation operation) extends Record implements EnchantmentLocationBasedEffect
  • Field Details

  • Constructor Details

    • EnchantmentAttributeEffect

      public EnchantmentAttributeEffect(ResourceLocation id, Holder<Attribute> attribute, LevelBasedValue amount, AttributeModifier.Operation operation)
      Creates an instance of a EnchantmentAttributeEffect record class.
      Parameters:
      id - the value for the id record component
      attribute - the value for the attribute record component
      amount - the value for the amount record component
      operation - the value for the operation record component
  • Method Details

    • idForSlot

      private ResourceLocation idForSlot(StringRepresentable p_345417_)
    • getModifier

      public AttributeModifier getModifier(int p_342709_, StringRepresentable p_342150_)
    • onChangedBlock

      public void onChangedBlock(ServerLevel p_342233_, int p_343426_, EnchantedItemInUse p_344251_, Entity p_342367_, Vec3 p_343372_, boolean p_342530_)
      Specified by:
      onChangedBlock in interface EnchantmentLocationBasedEffect
    • onDeactivated

      public void onDeactivated(EnchantedItemInUse p_343672_, Entity p_343519_, Vec3 p_342547_, int p_343187_)
      Specified by:
      onDeactivated in interface EnchantmentLocationBasedEffect
    • makeAttributeMap

      private com.google.common.collect.HashMultimap<Holder<Attribute>,AttributeModifier> makeAttributeMap(int p_342373_, EquipmentSlot p_343561_)
    • codec

      public com.mojang.serialization.MapCodec<EnchantmentAttributeEffect> codec()
      Specified by:
      codec in interface EnchantmentLocationBasedEffect
    • 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. All components in this record class are compared with Objects::equals(Object,Object).
      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.
    • id

      public ResourceLocation id()
      Returns the value of the id record component.
      Returns:
      the value of the id record component
    • attribute

      public Holder<Attribute> attribute()
      Returns the value of the attribute record component.
      Returns:
      the value of the attribute record component
    • amount

      public LevelBasedValue amount()
      Returns the value of the amount record component.
      Returns:
      the value of the amount record component
    • operation

      public AttributeModifier.Operation operation()
      Returns the value of the operation record component.
      Returns:
      the value of the operation record component