AttributeInstance
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.entity.attribute.AttributeInstance;
Members
addPermanentModifier(modifier as AttributeModifier)
Adds a permanent script.zs
AttributeModifier
to the attribute.myAttributeInstance.addPermanentModifier(myAttributeModifier);
Parameters:
addTransientModifier(modifier as AttributeModifier)
Adds a transient script.zs
AttributeModifier
to the attribute.myAttributeInstance.addTransientModifier(myAttributeModifier);
Parameters:
Getter
Gets the base value of the attribute.script.zs
// AttributeInstance.baseValue as doublemyAttributeInstance.baseValue
Return Type:
double
Setter
Sets the base value of the attribute.script.zs
// AttributeInstance.baseValue = (value as double);myAttributeInstance.baseValue = myDouble;
Parameters:
value: double
Type: double
- The new base value of the attribute. baseValue() as double
Gets the base value of the attribute.script.zs
Returns: The base value of the attribute.
// AttributeInstance.baseValue() as double;myAttributeInstance.baseValue();
Return Type:
double
baseValue(value as double)
Sets the base value of the attribute.script.zs
// AttributeInstance.baseValue(value as double);myAttributeInstance.baseValue(myDouble);
Parameters:
value: double
Type: double
- The new base value of the attribute. getModifier(id as ResourceLocation) as AttributeModifier
Gets the script.zs
AttributeModifier
with the given ID.Returns: The AttributeModifier
with the given ID, or null if it does not exist.
myAttributeInstance.getModifier(myResourceLocation);
Parameters:
Return Type:
AttributeModifier
hasModifier(id as ResourceLocation) as bool
Checks if the attribute has a modifier with the given ID.script.zs
Returns: True if the attribute has a modifier with the given ID, false otherwise.
myAttributeInstance.hasModifier(myResourceLocation);
Parameters:
Return Type:
bool
Getter
Gets the script.zs
AttributeModifier
of the attribute.myAttributeInstance.modifiers
Return Type:
List<AttributeModifier>
modifiers() as List<AttributeModifier>
Gets the script.zs
AttributeModifier
of the attribute.Returns: The modifiers of the attribute.
myAttributeInstance.modifiers();
Return Type:
List<AttributeModifier>
removeModifier(id as ResourceLocation)
Removes the script.zs
AttributeModifier
with the given ID.myAttributeInstance.removeModifier(myResourceLocation);
Parameters:
Getter
Gets the current value of the attribute.script.zs
// AttributeInstance.value as doublemyAttributeInstance.value
Return Type:
double
value() as double
Gets the current value of the attribute.script.zs
Returns: The current value of the attribute.
// AttributeInstance.value() as double;myAttributeInstance.value();
Return Type:
double