Импорт класса

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
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
ПараметрТипОписание
Параметр
attribute
Тип
Attribute
Описание
No Description Provided
Параметр
name
Тип
string
Описание
No Description Provided
Параметр
value
Тип
double
Описание
No Description Provided
Параметр
operation
Тип
AttributeOperation
Описание
No Description Provided

Name: applyEffectTick

Return Type: void

ZenScript
Copy
MobEffect.applyEffectTick(entity as LivingEntity, amplifier as int) as void
ПараметрТипОписание
Параметр
entity
Тип
LivingEntity
Описание
No Description Provided
Параметр
amplifier
Тип
int
Описание
No Description Provided

Link to applyInstantenousEffect

Name: applyInstantenousEffect

Return Type: void

ZenScript
Copy
MobEffect.applyInstantenousEffect(source as Entity, indirectSource as Entity, target as LivingEntity, amplifier as int, effectiveness as double) as void
ПараметрТипОписание
Параметр
источник
Тип
Entity
Описание
No Description Provided
Параметр
indirectSource
Тип
Entity
Описание
No Description Provided
Параметр
target
Тип
LivingEntity
Описание
No Description Provided
Параметр
amplifier
Тип
int
Описание
No Description Provided
Параметр
effectiveness
Тип
double
Описание
No Description Provided

Link to getAttributeModifierValue

Name: getAttributeModifierValue

Return Type: double

ZenScript
Copy
MobEffect.getAttributeModifierValue(amplifier as int, modifier as AttributeModifier) as double
ПараметрТипОписание
Параметр
amplifier
Тип
int
Описание
No Description Provided
Параметр
modifier
Тип
AttributeModifier
Описание
No Description Provided

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: 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
ПараметрТипОписание
Параметр
duration
Тип
int
Описание
No Description Provided
Параметр
amplifier
Тип
int
Описание
No Description Provided

Name: isInstantenous

Return Type: boolean

ZenScript
Copy
// MobEffect.isInstantenous() as boolean

myMobEffect.isInstantenous();

Свойства

Link to свойства

НазваниеТипИмеет GetterИмеет SetterОписание
Название
beneficial
Тип
boolean
Имеет Getter
true
Имеет Setter
false
Описание
No Description Provided
Название
category
Тип
MobEffectCategory
Имеет Getter
true
Имеет Setter
false
Описание
No Description Provided
Название
color
Тип
int
Имеет Getter
true
Имеет Setter
false
Описание
No Description Provided
Название
commandString
Тип
string
Имеет Getter
true
Имеет Setter
false
Описание
No Description Provided
Название
descriptionId
Тип
string
Имеет Getter
true
Имеет Setter
false
Описание
No Description Provided
Название
displayName
Тип
Component
Имеет Getter
true
Имеет Setter
false
Описание
No Description Provided
Название
instantenous
Тип
boolean
Имеет Getter
true
Имеет Setter
false
Описание
No Description Provided