MobEffectsPredicate

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.

script.zs
import crafttweaker.api.predicate.MobEffectsPredicate;

Static Methods

Return Type: MobEffectsPredicate

script.zs
// MobEffectsPredicate.any() as MobEffectsPredicate
MobEffectsPredicate.any();

Return Type: MobEffectsPredicate

script.zs
MobEffectsPredicate.create(map as MobEffectPredicate[MobEffect]) as MobEffectsPredicate
ParameterTypeDescription
Parameter
map
Type
MobEffectPredicate[MobEffect]
Description
No Description Provided

Return Type: MobEffectsPredicate

script.zs
MobEffectsPredicate.create(effect as MobEffect, predicate as MobEffectPredicate) as MobEffectsPredicate
ParameterTypeDescription
Parameter
effect
Type
MobEffect
Description
No Description Provided
Parameter
predicate
Type
MobEffectPredicate
Description
No Description Provided