IEntityAttributeModifier

Link to ientityattributemodifier

パッケージのインポート

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.
import crafttweaker.entity.AttributeModifier;

ZenGetterGetterMethod戻り値
ZenGetter
uuid
GetterMethod
getUUID()
戻り値
string
ZenGetter
name
GetterMethod
getName()
戻り値
string
ZenGetter
operation
GetterMethod
getOperation()
戻り値
int
ZenGetter
amount
GetterMethod
getAmount()
戻り値
double
ZenGetter
saved
GetterMethod
isSaved()
戻り値
boolean型
SetterNameSetterMethodParameter Type
SetterName
saved
SetterMethod
setSaved(boolean)
Parameter Type
boolean型
Copy
for operation:
0 = add: Increment X by Amount
1 = multiply_base: Increment Y by X * Amount
2 = multiply: Y = Y * (1 + Amount) (equivalent to Increment Y by Y * Amount).
ZenScript
Copy
AttributeModifier.createModifier(String name, double amount, int operation, @Optional String uuid);