MobEffect
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.effect.MobEffect;
Implements
Undocumented Interfaces
FeatureElement
,IMobEffectExtension
Members
Returns: The effect with the added modifier.
// MobEffect.addAttributeModifier(attribute as Attribute, id as ResourceLocation, value as double, operation as AttributeOperation) as MobEffect;myMobEffect.addAttributeModifier(myAttribute, myResourceLocation, myDouble, myOperation);
Parameters:
value: double
Type: double
- The value of the modifier.
Return Type:
MobEffect
myMobEffect.applyEffectTick(myLivingEntity, myInt);
Parameters:
amplifier: int
Type: int
- The amplifier of the effect. // MobEffect.applyInstantenousEffect(source as Entity, indirectSource as Entity, target as LivingEntity, amplifier as int, effectiveness as double);myMobEffect.applyInstantenousEffect(myEntity, myEntity, myLivingEntity, myInt, myDouble);
Parameters:
amplifier: int
Type: int
- The amplifier of the effect. effectiveness: double
Type: double
- The effectiveness of the effect. // MobEffect.beneficial as boolmyMobEffect.beneficial
Return Type:
bool
Returns: True if the effect is beneficial, false otherwise.
// MobEffect.beneficial() as bool;myMobEffect.beneficial();
Return Type:
bool
MobEffectCategory
of the effect.// MobEffect.category as MobEffectCategorymyMobEffect.category
Return Type:
MobEffectCategory
MobEffectCategory
of the effect.Returns: The MobEffectCategory
of the effect.
myMobEffect.category();
Return Type:
MobEffectCategory
// MobEffect.color as intmyMobEffect.color
Return Type:
int
Returns: The color of the effect.
// MobEffect.color() as int;myMobEffect.color();
Return Type:
int
// MobEffect.commandString as stringmyMobEffect.commandString
Return Type:
string
Returns: The command string of the effect.
// MobEffect.commandString() as string;myMobEffect.commandString();
Return Type:
string
// MobEffect.descriptionId as stringmyMobEffect.descriptionId
Return Type:
string
Returns: The description ID of the effect.
// MobEffect.descriptionId() as string;myMobEffect.descriptionId();
Return Type:
string
AttributeModifier
that this effect adds with the given amplifier.Returns: The AttributeModifier
that this effect adds with the given amplifier.
myMobEffect.getAttributeModifiers(myInt);
Parameters:
amplifier: int
Type: int
- The amplifier of the effect.
Return Type:
AttributeModifier[Attribute]
// MobEffect.instantenous as boolmyMobEffect.instantenous
Return Type:
bool
Returns: True if the effect is instantenous, false otherwise.
// MobEffect.instantenous() as bool;myMobEffect.instantenous();
Return Type:
bool
// MobEffect.registryName as ResourceLocationmyMobEffect.registryName
Return Type:
ResourceLocation
Returns: The registry name of the effect.
myMobEffect.registryName();
Return Type:
ResourceLocation
Returns: True if the effect should be applied this tick, false otherwise.
// MobEffect.shouldApplyEffectTickThisTick(duration as int, amplifier as int) as bool;myMobEffect.shouldApplyEffectTickThisTick(myInt, myInt);
Parameters:
duration: int
Type: int
- The duration of the effect. amplifier: int
Type: int
- The amplifier of the effect.
Return Type:
bool