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 Copyimport crafttweaker.api.predicate.builder.BlockPredicateBuilder;
Methods
Link to methods
Name: blocks
Return Type: BlockPredicateBuilder
ZenScript CopyBlockPredicateBuilder.blocks(blocks as Block[]) as BlockPredicateBuilder
Parameter | Type |
---|---|
Parameter blocks | Type Block[] |
Name: build
Return Type: BlockPredicate
ZenScript Copy// BlockPredicateBuilder.build() as BlockPredicate
myBlockPredicateBuilder.build();
Name: nbt
Return Type: BlockPredicateBuilder
ZenScript CopyBlockPredicateBuilder.nbt(tag as IData) as BlockPredicateBuilder
Parameter | Type |
---|---|
Parameter tag | Type IData |
Name: nbt
Return Type: BlockPredicateBuilder
ZenScript CopyBlockPredicateBuilder.nbt(tag as MapData) as BlockPredicateBuilder
Parameter | Type |
---|---|
Parameter tag | Type MapData |
Name: properties
Return Type: BlockPredicateBuilder
ZenScript CopyBlockPredicateBuilder.properties(predicate as StatePropertiesPredicateBuilder) as BlockPredicateBuilder
Parameter | Type |
---|---|
Parameter predicate | Type StatePropertiesPredicateBuilder |
Name: tag
Return Type: BlockPredicateBuilder
ZenScript CopyBlockPredicateBuilder.tag(tag as KnownTag<Block>) as BlockPredicateBuilder
Parameter | Type |
---|---|
Parameter tag | Type KnownTag<Block> |