BlockPredicateBuilder

Link to blockpredicatebuilder

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.builder.BlockPredicateBuilder;

Name: blocks

Return Type: BlockPredicateBuilder

ZenScript
Copy
BlockPredicateBuilder.blocks(blocks as Block[]) as BlockPredicateBuilder
ParameterType
Parameter
blocks
Type
Block[]

Name: build

Return Type: BlockPredicate

ZenScript
Copy
// BlockPredicateBuilder.build() as BlockPredicate

myBlockPredicateBuilder.build();

Name: nbt

Return Type: BlockPredicateBuilder

ZenScript
Copy
BlockPredicateBuilder.nbt(tag as IData) as BlockPredicateBuilder
ParameterType
Parameter
tag
Type
IData

Name: nbt

Return Type: BlockPredicateBuilder

ZenScript
Copy
BlockPredicateBuilder.nbt(tag as MapData) as BlockPredicateBuilder
ParameterType
Parameter
tag
Type
MapData

Name: properties

Return Type: BlockPredicateBuilder

ZenScript
Copy
BlockPredicateBuilder.properties(predicate as StatePropertiesPredicate) as BlockPredicateBuilder
ParameterType
Parameter
predicate
Type
StatePropertiesPredicate

Name: properties

Return Type: BlockPredicateBuilder

ZenScript
Copy
BlockPredicateBuilder.properties(predicate as StatePropertiesPredicateBuilder) as BlockPredicateBuilder
ParameterType
Parameter
predicate
Type
StatePropertiesPredicateBuilder

Name: tag

Return Type: BlockPredicateBuilder

ZenScript
Copy
BlockPredicateBuilder.tag(tag as KnownTag<Block>) as BlockPredicateBuilder
ParameterType
Parameter
tag
Type
KnownTag<Block>