EntityTypePredicate

Link to entitytypepredicate

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
Copy
import crafttweaker.api.predicate.EntityTypePredicate;

Extending Record

Link to extending-record

EntityTypePredicate extends Record. That means all methods available in Record are also available in EntityTypePredicate

Name: create

Return Type: EntityTypePredicate

ZenScript
Copy
EntityTypePredicate.create(type as EntityType) as EntityTypePredicate
ParameterType
Parameter
type
Type
EntityType

Name: create

Return Type: EntityTypePredicate

ZenScript
Copy
EntityTypePredicate.create(type as KnownTag<EntityType>) as EntityTypePredicate
ParameterType
Parameter
type
Type
KnownTag<EntityType>