Home Getting Started With Scripts Commands Examples

MCToolType

A Tooltype is used to identify what kind of blocks a tool can mine, or inversely, what kind of tool is required to mine a given block.

This class was added by a mod with mod-id contenttweaker. So you need to have this mod installed if you want to use this feature.

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.

script.zs
mods.contenttweaker.item.MCToolType

Implemented Interfaces

MCToolType implements the following interfaces. That means any method available to them can also be used on this class.

Constructors

Constructs a ToolType object. If one with the given name already exists, they will internally point to the same toolType. Otherwise, a new one with the name is created (The same holds true for Brackets as well!)

script.zs
new mods.contenttweaker.item.MCToolType(name as String);
new mods.contenttweaker.item.MCToolType("pickaxe");
ParameterTypeDescription
Parameter
name
Type
String
Description
The name to be used

Methods

getName

Gets the name of this toolType. The name is what is used in the Bracket expression after the <tooltype:

Return type: String

script.zs
<tooltype:pickaxe>.getName();

hashCode

Returns the object’s hash code

Return type: int

script.zs
<tooltype:pickaxe>.hashCode();

toString

Get the string representation of this type. Is different from commandString!

Return type: String

script.zs
<tooltype:pickaxe>.toString();

Properties

NameTypeHas GetterHas Setter
Name
commandString
Type
String
Has Getter
true
Has Setter
false
Name
name
Type
String
Has Getter
true
Has Setter
false

Operators

EQUALS

Compares if two given MCToolType objects are equal

script.zs
<tooltype:pickaxe> == o as Object
<tooltype:pickaxe> == new MCToolType("pickaxe")
ParameterTypeDescription
Parameter
o
Type
Object
Description
The other object

Casters

Result typeIs Implicit
Result type
String
Is Implicit
false