Record Class EnchantmentAttributeEffect

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

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

    • id

      private final Identifier id
      The field for the id record component.
    • attribute

      private final Holder<Attribute> attribute
      The field for the attribute record component.
    • amount

      private final LevelBasedValue amount
      The field for the amount record component.
    • operation

      private final AttributeModifier.Operation operation
      The field for the operation record component.
    • MAP_CODEC

      public static final com.mojang.serialization.MapCodec<EnchantmentAttributeEffect> MAP_CODEC
  • Constructor Details

    • EnchantmentAttributeEffect

      public EnchantmentAttributeEffect(Identifier 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 Identifier idForSlot(StringRepresentable slot)
    • getModifier

      public AttributeModifier getModifier(int level, StringRepresentable slot)
    • onChangedBlock

      public void onChangedBlock(ServerLevel serverLevel, int enchantmentLevel, EnchantedItemInUse item, Entity entity, Vec3 position, boolean becameActive)
      Specified by:
      onChangedBlock in interface EnchantmentLocationBasedEffect
    • onDeactivated

      public void onDeactivated(EnchantedItemInUse item, Entity entity, Vec3 position, int level)
      Specified by:
      onDeactivated in interface EnchantmentLocationBasedEffect
    • makeAttributeMap

      private HashMultimap<Holder<Attribute>, AttributeModifier> makeAttributeMap(int enchantmentLevel, EquipmentSlot slot)
    • 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 Identifier 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