Tool
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.
import crafttweaker.api.item.component.Tool;
Description
Represents the tool properties of an item, including mining speed, damage per block, and rules for specific blocks. This class is used to define how a tool interacts with blocks in the game.Members
Getter
Retrieves the amount of damage the tool takes per block mined.script.zs
// Tool.damagePerBlock as intmyTool.damagePerBlock
Return Type:
int
Getter
Retrieves the default mining speed of the tool when no specific rule applies.script.zs
// Tool.defaultMiningSpeed as floatmyTool.defaultMiningSpeed
Return Type:
float
getMiningSpeed(state as BlockState) as float
Retrieves the mining speed of the tool for the given block state.script.zs
Returns: The mining speed of the tool for the given block state.
myTool.getMiningSpeed(myBlockState);
Parameters:
Return Type:
float
isCorrectForDrops(state as BlockState) as bool
Checks if the tool is correct for harvesting drops from the given block state.script.zs
Returns: True if the tool is correct for harvesting drops, false otherwise.
myTool.isCorrectForDrops(myBlockState);
Parameters:
Return Type:
bool
static of(rules as List<Rule>, defaultMiningSpeed as float, damagePerBlock as int) as Tool
Creates a new Tool instance with the specified rules, default mining speed, and damage per block.script.zs
Returns: A new Tool instance.
Tool.of(myList, myFloat, myInt);
Parameters:
rules: List<ToolRule>
Type: List<ToolRule>
- The list of rules that define how the tool interacts with specific blocks. defaultMiningSpeed: float
Type: float
- The default mining speed of the tool when no specific rule applies. damagePerBlock: int
Type: int
- The amount of damage the tool takes per block mined.
Return Type:
Tool