A special builder that allows you to create items that can be used as tools. You should have set the item's max damage before changing to this builder.

Has special methods that allow you to set the mining level for several tool types as well as the attack damage.

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

Link to 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.

ZenScript
Copy
mods.contenttweaker.item.tool.ItemBuilderTool

Implemented Interfaces

Link to implemented-interfaces

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

Instructs CoT to actually build whatever this builder is supposed to be building.

ZenScript
Copy
new ItemBuilder().withMaxDamage(150).withType<ItemBuilderTool>().build(resourceLocation as String);
new ItemBuilder().withMaxDamage(150).withType<ItemBuilderTool>().build("my_awesome_block");
ParameterTypeDescription
Parameter
resourceLocation
Type
String
Description
The resource path to give this block

withAttackDamage

Link to withattackdamage

Allows you to set the attack damage bonus that you get when holding this item

Returns: This builder, used for method chaining

Geri dönüş tipi: mods.contenttweaker.item.tool.ItemBuilderTool

ZenScript
Copy
new ItemBuilder().withMaxDamage(150).withType<ItemBuilderTool>().withAttackDamage(attackDamage as float);
new ItemBuilder().withMaxDamage(150).withType<ItemBuilderTool>().withAttackDamage(2.0f);
ParameterTypeDescription
Parameter
attackDamage
Type
float
Description
The additional attack damage

Allows you to set the attack speed bonus that you get when holding this item.

Returns: This builder, used for method chaining.

Geri dönüş tipi: mods.contenttweaker.item.tool.ItemBuilderTool

ZenScript
Copy
new ItemBuilder().withMaxDamage(150).withType<ItemBuilderTool>().withAttackSpeed(attackSpeed as double);
new ItemBuilder().withMaxDamage(150).withType<ItemBuilderTool>().withAttackSpeed(2.0d);
ParameterTypeDescription
Parameter
attackSpeed
Type
double
Description
The attack speed

withDurabilityCostAttack

Link to withdurabilitycostattack

Allows you to set the amount of damage that this item will receive when hitting enemies. By default this is 0

Returns: This builder, used for method chaining

Geri dönüş tipi: mods.contenttweaker.item.tool.ItemBuilderTool

ZenScript
Copy
new ItemBuilder().withMaxDamage(150).withType<ItemBuilderTool>().withDurabilityCostAttack(durabilityCostAttack as int);
new ItemBuilder().withMaxDamage(150).withType<ItemBuilderTool>().withDurabilityCostAttack(5);
ParameterTypeDescription
Parameter
durabilityCostAttack
Type
int
Description
The damage points this item will receive

withDurabilityCostMining

Link to withdurabilitycostmining

Allows you to set the amount of damage that this item will receive when mining blocks. By default this is 0

Returns: This builder, used for method chaining

Geri dönüş tipi: mods.contenttweaker.item.tool.ItemBuilderTool

ZenScript
Copy
new ItemBuilder().withMaxDamage(150).withType<ItemBuilderTool>().withDurabilityCostMining(durabilityCostMining as int);
new ItemBuilder().withMaxDamage(150).withType<ItemBuilderTool>().withDurabilityCostMining(1);
ParameterTypeDescription
Parameter
durabilityCostMining
Type
int
Description
The damage points this item will receive

Allows you to add a tool type to this tool. You can specify the type, the mining level and optionally the mining speed when this type is hit as well.

Returns: This builder, used for method chaining

Geri dönüş tipi: mods.contenttweaker.item.tool.ItemBuilderTool

ZenScript
Copy
new ItemBuilder().withMaxDamage(150).withType<ItemBuilderTool>().withToolType(toolType as mods.contenttweaker.item.MCToolType, miningLevel as int, miningSpeed as float);
new ItemBuilder().withMaxDamage(150).withType<ItemBuilderTool>().withToolType(<tooltype:shovel>, 3);
new ItemBuilder().withMaxDamage(150).withType<ItemBuilderTool>().withToolType(<tooltype:shovel>, 3, 2.0f);
ParameterTypeDescriptionIsOptionalDefault Value
Parameter
toolType
Type
mods.contenttweaker.item.MCToolType
Description
The type of the tool
IsOptional
false
Default Value
null
Parameter
miningLevel
Type
int
Description
The mining level for this tool type
IsOptional
false
Default Value
null
Parameter
miningSpeed
Type
float
Description
How fast this tool can mine blocks of the given type
IsOptional
true
Default Value
1.0