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 Copyimport crafttweaker.api.entity.attribute.AttributeInstance;
使用方式
Link to 使用方式
Name: addPermanentModifier
ZenScript CopyAttributeInstance.addPermanentModifier(modifier as AttributeModifier)
参数 | 类型 |
---|---|
参数 modifier | 类型 AttributeModifier |
Name: addTransientModifier
ZenScript CopyAttributeInstance.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 CopyAttributeInstance.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 CopyAttributeInstance.hasModifier(modifier as AttributeModifier) as boolean
参数 | 类型 |
---|---|
参数 modifier | 类型 AttributeModifier |
Name: removeModifier
ZenScript CopyAttributeInstance.removeModifier(modifier as AttributeModifier)
参数 | 类型 |
---|---|
参数 modifier | 类型 AttributeModifier |
Name: removeModifier
ZenScript CopyAttributeInstance.removeModifier(uuid as string)
参数 | 类型 |
---|---|
参数 uuid | 类型 string |
Name: setBaseValue
ZenScript CopyAttributeInstance.setBaseValue(value as double)
参数 | 类型 |
---|---|
参数 value | 类型 double |
名称 | 类型 | 可获得 | 可设置 |
---|---|---|---|
名称 baseValue | 类型 double | 可获得 true | 可设置 true |
名称 modifiers | 类型 stdlib.List<AttributeModifier> | 可获得 true | 可设置 false |
名称 value | 类型 double | 可获得 true | 可设置 false |