ToolType
Link to 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.
Importare la Classe
Link to importare-la-classe
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.loot.conditions.crafttweaker.ToolType;
Interfacce Implementate
Link to interfacce-implementate
ToolType implements the following interfaces. That means all methods defined in these interfaces are also available in ToolType
Metodi
Link to metodi
Name: withToolType
Sets the ToolType that will be matched against the tool.
This parameter is required.
Returns: This builder for chaining.
Return Type: ToolType
ZenScript CopyToolType.withToolType(type as ToolType) as ToolType
Parametro | Tipo | Descrizione |
---|---|---|
Parametro type | Tipo ToolType | Descrizione The tool type to check. |