Home Migration Guide Getting Started With Scripts Commands Examples
BracketHandlers

ToolType

Builder to create a ‘ToolType’ loot condition.

This condition checks the tool that the LootContext reports as having been used to break a block or perform any other action is of the given ToolType.

The condition then passes if and only if a tool of the given type has been used to break the block.

If additional properties of the tool should be checked, combine this condition with a MatchTool condition without specifying the type.

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.

script.zs
import crafttweaker.api.loot.conditions.crafttweaker.ToolType;

Implemented Interfaces

ToolType implements the following interfaces. That means all methods defined in these interfaces are also available in ToolType

Methods

Sets the ToolType that will be matched against the tool.

This parameter is required.

Returns: This builder for chaining.
Return Type: ToolType

script.zs
ToolType.withToolType(type as ToolType) as ToolType
ParameterTypeDescription
Parameter
type
Type
ToolType
Description
The tool type to check.