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. Perciò, è necessario avere questa mod installata per poter utilizzare questa funzione.

Importare la Classe

Link to importare-la-classe

Potrebbe essere necessario importare il pacchetto, se si incontrano dei problemi (come castare un vettore), quindi meglio essere sicuri e aggiungere la direttiva di importazione.

ZenScript
Copy
mods.contenttweaker.item.MCToolType

Interfacce Implementate

Link to interfacce-implementate

MCToolType implements the following interfaces. Ciò significa che ogni metodo presente nell'interfaccia può essere usato anche per questa classe.

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!)

ZenScript
Copy
new mods.contenttweaker.item.MCToolType(name as String);
new mods.contenttweaker.item.MCToolType("pickaxe");
ParametroTipoDescrizione
Parametro
nome
Tipo
String
Descrizione
The name to be used

Gets the name of this toolType. Il nome che viene utilizzato nell'espressione angolare dopo <tooltype:

Return type: String

ZenScript
Copy
<tooltype:pickaxe>.getName();

Returns the object's hash code

Return type: int

ZenScript
Copy
<tooltype:pickaxe>.hashCode();

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

Return type: String

ZenScript
Copy
<tooltype:pickaxe>.toString();
NomeTipoHa GetterHa Setter
Nome
commandString
Tipo
String
Ha Getter
Ha Setter
no
Nome
nome
Tipo
String
Ha Getter
Ha Setter
no

Compares if two given MCToolType objects are equal

ZenScript
Copy
<tooltype:pickaxe> == o as Object
<tooltype:pickaxe> == new MCToolType("pickaxe")
ParametroTipoDescrizione
Parametro
o
Tipo
Object
Descrizione
The other object
Tipo RisultatoImplicito
Tipo Risultato
String
Implicito
no