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
ParameterTypeDescription
Parameter
blocks
Type
Block[]
Description
No Description Provided

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
ParameterTypeDescription
Parameter
tag
Type
IData
Description
No Description Provided

Name: nbt

Return Type: BlockPredicateBuilder

ZenScript
Copy
BlockPredicateBuilder.nbt(tag as MapData) as BlockPredicateBuilder
ParameterTypeDescription
Parameter
tag
Type
MapData
Description
No Description Provided

Name: properties

Return Type: BlockPredicateBuilder

ZenScript
Copy
BlockPredicateBuilder.properties(predicate as StatePropertiesPredicate) as BlockPredicateBuilder
ParameterTypeDescription
Parameter
predicate
Type
StatePropertiesPredicate
Description
No Description Provided

Name: properties

Return Type: BlockPredicateBuilder

ZenScript
Copy
BlockPredicateBuilder.properties(predicate as StatePropertiesPredicateBuilder) as BlockPredicateBuilder
ParameterTypeDescription
Parameter
predicate
Type
StatePropertiesPredicateBuilder
Description
No Description Provided

Name: tag

Return Type: BlockPredicateBuilder

ZenScript
Copy
BlockPredicateBuilder.tag(tag as MCTag<Block>) as BlockPredicateBuilder
ParameterTypeDescription
Parameter
tag
Type
MCTag<Block>
Description
No Description Provided