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.
import crafttweaker.api.predicate.MobEffectsPredicate;
Static Methods
Return Type: MobEffectsPredicate
// MobEffectsPredicate.any() as MobEffectsPredicate
MobEffectsPredicate.any();
Return Type: MobEffectsPredicate
MobEffectsPredicate.create(map as MobEffectPredicate[MobEffect]) as MobEffectsPredicate
Parameter | Type |
---|---|
Parameter map | Type MobEffectPredicate[MobEffect] |
Return Type: MobEffectsPredicate
MobEffectsPredicate.create(effect as MobEffect, predicate as MobEffectPredicate) as MobEffectsPredicate
Parameter | Type |
---|---|
Parameter effect | Type MobEffect |
Parameter predicate | Type MobEffectPredicate |
Methods
Return Type: boolean
MobEffectsPredicate.matches(entity as Entity) as boolean
Parameter | Type |
---|---|
Parameter entity | Type Entity |