MobEffect
Link to mobeffect
Импорт класса
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.effect.MobEffect;
Методы
Link to методы
Name: addAttributeModifier
Return Type: MobEffect
ZenScript CopyMobEffect.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 CopyMobEffect.applyEffectTick(entity as LivingEntity, amplifier as int) as void
Параметр | Тип | Описание |
---|---|---|
Параметр entity | Тип LivingEntity | Описание No Description Provided |
Параметр amplifier | Тип int | Описание No Description Provided |
Name: applyInstantenousEffect
Return Type: void
ZenScript CopyMobEffect.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 |
Name: getAttributeModifierValue
Return Type: double
ZenScript CopyMobEffect.getAttributeModifierValue(amplifier as int, modifier as AttributeModifier) as double
Параметр | Тип | Описание |
---|---|---|
Параметр amplifier | Тип int | Описание No Description Provided |
Параметр modifier | Тип AttributeModifier | Описание No Description Provided |
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();
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();
Name: isDurationEffectTick
Return Type: boolean
ZenScript CopyMobEffect.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 |