ItemAttributeModifiersEntry

Link to itemattributemodifiersentry

Importing the class

Link to importing-the-class

It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.

ZenScript
Copy
import crafttweaker.api.item.component.ItemAttributeModifiersEntry;

Extending Record

Link to extending-record

ItemAttributeModifiersEntry extends Record. That means all methods available in Record are also available in ItemAttributeModifiersEntry

Name: of

Return Type: ItemAttributeModifiersEntry

ZenScript
Copy
ItemAttributeModifiersEntry.of(attribute as Attribute, modifier as AttributeModifier, slot as EquipmentSlotGroup) as ItemAttributeModifiersEntry
ParameterType
Parameter
attribute
Type
Attribute
Parameter
modifier
Type
AttributeModifier
Parameter
slot
Type
EquipmentSlotGroup
NameTypeHas GetterHas Setter
Name
attribute
Type
Attribute
Has Getter
true
Has Setter
false
Name
modifier
Type
AttributeModifier
Has Getter
true
Has Setter
false
Name
slot
Type
EquipmentSlotGroup
Has Getter
true
Has Setter
false