AttributeInstance

Link to attributeinstance

Импорт класса

Link to импорт-класса

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.entity.attribute.AttributeInstance;

Link to addPermanentModifier

Name: addPermanentModifier

ZenScript
Copy
AttributeInstance.addPermanentModifier(modifier as AttributeModifier)
ПараметрТип
Параметр
modifier
Тип
AttributeModifier

Link to addTransientModifier

Name: addTransientModifier

ZenScript
Copy
AttributeInstance.addTransientModifier(modifier as AttributeModifier)
ПараметрТип
Параметр
modifier
Тип
AttributeModifier

Name: getBaseValue

Return Type: double

ZenScript
Copy
// AttributeInstance.getBaseValue() as double

myAttributeInstance.getBaseValue();

Name: getModifier

Return Type: AttributeModifier?

ZenScript
Copy
AttributeInstance.getModifier(uuid as string) as AttributeModifier?
ПараметрТип
Параметр
uuid
Тип
string

Name: getModifiers

Return Type: stdlib.List<AttributeModifier>

ZenScript
Copy
// AttributeInstance.getModifiers() as stdlib.List<AttributeModifier>

myAttributeInstance.getModifiers();

Name: getValue

Return Type: double

ZenScript
Copy
// AttributeInstance.getValue() as double

myAttributeInstance.getValue();

Name: hasModifier

Return Type: boolean

ZenScript
Copy
AttributeInstance.hasModifier(modifier as AttributeModifier) as boolean
ПараметрТип
Параметр
modifier
Тип
AttributeModifier

Name: removeModifier

ZenScript
Copy
AttributeInstance.removeModifier(modifier as AttributeModifier)
ПараметрТип
Параметр
modifier
Тип
AttributeModifier

Name: removeModifier

ZenScript
Copy
AttributeInstance.removeModifier(uuid as string)
ПараметрТип
Параметр
uuid
Тип
string

Name: setBaseValue

ZenScript
Copy
AttributeInstance.setBaseValue(value as double)
ПараметрТип
Параметр
value
Тип
double

Свойства

Link to свойства

НазваниеТипИмеет GetterИмеет Setter
Название
baseValue
Тип
double
Имеет Getter
true
Имеет Setter
true
Название
modifiers
Тип
stdlib.List<AttributeModifier>
Имеет Getter
true
Имеет Setter
false
Название
value
Тип
double
Имеет Getter
true
Имеет Setter
false