EntityEquipmentPredicate

Importing the class

If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.

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

Members

static captain() as EntityEquipmentPredicate
script.zs
// EntityEquipmentPredicate.captain() as EntityEquipmentPredicate;
EntityEquipmentPredicate.captain();

Return Type: EntityEquipmentPredicate

static create() as Builder
script.zs
// EntityEquipmentPredicate.create() as EntityEquipmentPredicateBuilder;
EntityEquipmentPredicate.create();

Return Type: EntityEquipmentPredicateBuilder

matches(entity as Entity) as bool
script.zs
// EntityEquipmentPredicate.matches(entity as Entity) as bool;
myEntityEquipmentPredicate.matches(myEntity);

Parameters:

entity Type: Entity

Return Type: bool