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 |
Параметр name | Тип string |
Параметр value | Тип double |
Параметр operation | Тип AttributeOperation |
Name: applyEffectTick
ZenScript CopyMobEffect.applyEffectTick(entity as LivingEntity, amplifier as int)
Параметр | Тип |
---|---|
Параметр entity | Тип LivingEntity |
Параметр amplifier | Тип int |
Name: applyInstantenousEffect
ZenScript CopyMobEffect.applyInstantenousEffect(source as Entity, indirectSource as Entity, target as LivingEntity, amplifier as int, effectiveness as double)
Параметр | Тип |
---|---|
Параметр источник | Тип Entity |
Параметр indirectSource | Тип Entity |
Параметр target | Тип LivingEntity |
Параметр amplifier | Тип int |
Параметр effectiveness | Тип double |
Name: getAttributeModifierValue
Return Type: double
ZenScript CopyMobEffect.getAttributeModifierValue(amplifier as int, modifier as AttributeModifier) as double
Параметр | Тип |
---|---|
Параметр amplifier | Тип int |
Параметр modifier | Тип AttributeModifier |
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: 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();
Name: isDurationEffectTick
Return Type: boolean
ZenScript CopyMobEffect.isDurationEffectTick(duration as int, amplifier as int) as boolean
Параметр | Тип |
---|---|
Параметр duration | Тип int |
Параметр amplifier | Тип int |
Name: isInstantenous
Return Type: boolean
ZenScript Copy// MobEffect.isInstantenous() as boolean
myMobEffect.isInstantenous();
Свойства
Link to свойства
Название | Тип | Имеет Getter | Имеет Setter |
---|---|---|---|
Название beneficial | Тип boolean | Имеет Getter true | Имеет Setter false |
Название category | Тип MobEffectCategory | Имеет Getter true | Имеет Setter false |
Название color | Тип int | Имеет Getter true | Имеет Setter false |
Название commandString | Тип string | Имеет Getter true | Имеет Setter false |
Название descriptionId | Тип string | Имеет Getter true | Имеет Setter false |
Название displayName | Тип Component | Имеет Getter true | Имеет Setter false |
Название instantenous | Тип boolean | Имеет Getter true | Имеет Setter false |
Название registryName | Тип ResourceLocation | Имеет Getter true | Имеет Setter false |