Importare la Classe

Link to importare-la-classe

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.effect.MobEffect;

Link to addAttributeModifier

Name: addAttributeModifier

Return Type: MobEffect

ZenScript
Copy
MobEffect.addAttributeModifier(attribute as Attribute, name as string, value as double, operation as AttributeOperation) as MobEffect
ParametroTipo
Parametro
attribute
Tipo
Attribute
Parametro
nome
Tipo
string
Parametro
valore
Tipo
double
Parametro
operation
Tipo
AttributeOperation

Name: applyEffectTick

ZenScript
Copy
MobEffect.applyEffectTick(entity as LivingEntity, amplifier as int)
ParametroTipo
Parametro
entity
Tipo
LivingEntity
Parametro
amplifier
Tipo
int

Link to applyInstantenousEffect

Name: applyInstantenousEffect

ZenScript
Copy
MobEffect.applyInstantenousEffect(source as Entity, indirectSource as Entity, target as LivingEntity, amplifier as int, effectiveness as double)
ParametroTipo
Parametro
sorgente
Tipo
Entity
Parametro
indirectSource
Tipo
Entity
Parametro
target
Tipo
LivingEntity
Parametro
amplifier
Tipo
int
Parametro
effectiveness
Tipo
double

Link to getAttributeModifierValue

Name: getAttributeModifierValue

Return Type: double

ZenScript
Copy
MobEffect.getAttributeModifierValue(amplifier as int, modifier as AttributeModifier) as double
ParametroTipo
Parametro
amplifier
Tipo
int
Parametro
modifier
Tipo
AttributeModifier

Link to getAttributeModifiers

Name: getAttributeModifiers

Return Type: AttributeModifier[Attribute]

ZenScript
Copy
// MobEffect.getAttributeModifiers() as AttributeModifier[Attribute]

myMobEffect.getAttributeModifiers();

Name: getCategory

Return Type: MobEffectCategory

ZenScript
Copy
// MobEffect.getCategory() as MobEffectCategory

myMobEffect.getCategory();

Name: getColor

Return Type: int

ZenScript
Copy
// MobEffect.getColor() as int

myMobEffect.getColor();

Link to getDescriptionId

Name: getDescriptionId

Return Type: string

ZenScript
Copy
// MobEffect.getDescriptionId() as string

myMobEffect.getDescriptionId();

Name: getDisplayName

Return Type: Component

ZenScript
Copy
// MobEffect.getDisplayName() as Component

myMobEffect.getDisplayName();

Name: getRegistryName

Return Type: ResourceLocation

ZenScript
Copy
// MobEffect.getRegistryName() as ResourceLocation

myMobEffect.getRegistryName();

Name: isBeneficial

Return Type: boolean

ZenScript
Copy
// MobEffect.isBeneficial() as boolean

myMobEffect.isBeneficial();

Link to isDurationEffectTick

Name: isDurationEffectTick

Return Type: boolean

ZenScript
Copy
MobEffect.isDurationEffectTick(duration as int, amplifier as int) as boolean
ParametroTipo
Parametro
duration
Tipo
int
Parametro
amplifier
Tipo
int

Name: isInstantenous

Return Type: boolean

ZenScript
Copy
// MobEffect.isInstantenous() as boolean

myMobEffect.isInstantenous();
NomeTipoHa GetterHa Setter
Nome
beneficial
Tipo
boolean
Ha Getter
Ha Setter
no
Nome
category
Tipo
MobEffectCategory
Ha Getter
Ha Setter
no
Nome
color
Tipo
int
Ha Getter
Ha Setter
no
Nome
commandString
Tipo
string
Ha Getter
Ha Setter
no
Nome
descriptionId
Tipo
string
Ha Getter
Ha Setter
no
Nome
displayName
Tipo
Component
Ha Getter
Ha Setter
no
Nome
instantenous
Tipo
boolean
Ha Getter
Ha Setter
no
Nome
registryName
Tipo
ResourceLocation
Ha Getter
Ha Setter
no