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 Copyimport 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
Static Methods
Link to static-methods
Name: of
Return Type: ItemAttributeModifiersEntry
ZenScript CopyItemAttributeModifiersEntry.of(attribute as Attribute, modifier as AttributeModifier, slot as EquipmentSlotGroup) as ItemAttributeModifiersEntry
Parameter | Type |
---|---|
Parameter attribute | Type Attribute |
Parameter modifier | Type AttributeModifier |
Parameter slot | Type EquipmentSlotGroup |
Properties
Link to properties
Name | Type | Has Getter | Has 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 |