MobEffect
Link to mobeffect
Importing the class
Link to importing-the-class
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;
Methods
Link to methods
Name: addAttributeModifier
Return Type: MobEffect
ZenScript CopyMobEffect.addAttributeModifier(attribute as Attribute, name as string, value as double, operation as AttributeOperation) as MobEffect
Parameter | Type |
---|---|
Parameter attribute | Type Attribute |
Parameter name | Type string |
Parameter value | Type double |
Parameter operation | Type AttributeOperation |
Name: applyEffectTick
ZenScript CopyMobEffect.applyEffectTick(entity as LivingEntity, amplifier as int)
Parameter | Type |
---|---|
Parameter entity | Type LivingEntity |
Parameter amplifier | Type int |
Name: applyInstantenousEffect
ZenScript CopyMobEffect.applyInstantenousEffect(source as Entity, indirectSource as Entity, target as LivingEntity, amplifier as int, effectiveness as double)
Parameter | Type |
---|---|
Parameter source | Type Entity |
Parameter indirectSource | Type Entity |
Parameter target | Type LivingEntity |
Parameter amplifier | Type int |
Parameter effectiveness | Type double |
Name: getAttributeModifiers
Return Type: AttributeModifier[Attribute]
ZenScript CopyMobEffect.getAttributeModifiers(amplifier as int) as AttributeModifier[Attribute]
Parameter | Type |
---|---|
Parameter amplifier | Type int |
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: isInstantenous
Return Type: boolean
ZenScript Copy// MobEffect.isInstantenous() as boolean
myMobEffect.isInstantenous();
Name: shouldApplyEffectTickThisTick
Return Type: boolean
ZenScript CopyMobEffect.shouldApplyEffectTickThisTick(duration as int, amplifier as int) as boolean
Parameter | Type |
---|---|
Parameter duration | Type int |
Parameter amplifier | Type int |
Properties
Link to properties
Name | Type | Has Getter | Has Setter |
---|---|---|---|
Name beneficial | Type boolean | Has Getter true | Has Setter false |
Name category | Type MobEffectCategory | Has Getter true | Has Setter false |
Name color | Type int | Has Getter true | Has Setter false |
Name commandString | Type string | Has Getter true | Has Setter false |
Name descriptionId | Type string | Has Getter true | Has Setter false |
Name displayName | Type Component | Has Getter true | Has Setter false |
Name instantenous | Type boolean | Has Getter true | Has Setter false |
Name registryName | Type ResourceLocation | Has Getter true | Has Setter false |