The item builder is to... build items (surprise!)

It allows you to set various properties that will change how the item behaves and what it can do. Вы также можете использовать mods.contenttweaker.item.ItemBuilder#withType , чтобы переключиться на более специализированный строитель, если таковой имеется.

Чтобы сообщить CoT, что вы хотите, чтобы элемент появился в игре, вам нужно вызвать mods.contenttweaker.item.ItemBuilder#build(String) и указать правильный путь доступа к ресурсу.

This class was added by a mod with mod-id contenttweaker. Так что если вы хотите использовать эту функцию, вам нужно установить этот мод.

Импорт класса

Link to импорт-класса

Вам может потребоваться импортировать пакет, если вы столкнетесь с какими-либо проблемами (например, с заливкой массива), так что лучше быть в безопасности, чем извиняться и добавлять импорт.

ZenScript
Copy
mods.contenttweaker.item

Implemented Interfaces

Link to implemented-interfaces

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

Creates a new ItemBuilder. Помните, что это не создать новый блок в игре, вам нужно вызвать mods.contenttweaker.item.ItemBuilder#build(String) для этого.

ZenScript
Copy
new mods.contenttweaker.item.ItemBuilder();

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

ZenScript
Copy
new ItemBuilder().build(resourceLocation as String);
new ItemBuilder().build("my_awesome_block");
ПараметрТипОписание
Параметр
resourceLocation
Тип
String
Описание
The resource path to give this block

Allows you to set the item group that this item will appear in. By default, items will land in misc

Returns: This builder, used for method chaining

Тип возврата: mods.contenttweaker.item.ItemBuilder

ZenScript
Copy
new ItemBuilder().withItemGroup(itemGroup as mods.contenttweaker.item.MCItemGroup);
new ItemBuilder().withItemGroup(<itemgroup:misc>);
ПараметрТипОписание
Параметр
itemGroup
Тип
mods.contenttweaker.item.MCItemGroup
Описание
The item group this item should appear in

Позволяет задать максимальный урон для этого предмета.
Предупреждайте, что это не может быть использовано в сочетании с модами. ontentweaker.item.ItemBuilder#withMaxStackSize!

Returns: This builder, used for method chaining

Тип возврата: mods.contenttweaker.item.ItemBuilder

ZenScript
Copy
new ItemBuilder().withMaxDamage(maxDamage as int);
new ItemBuilder().withMaxDamage(250);
ПараметрТипОписание
Параметр
maxDamage
Тип
int
Описание
The maximum stack size

withMaxStackSize

Link to withmaxstacksize

Позволяет установить максимальный размер стека для этого предмета.
Предупреждайте, что это не может быть использовано в сочетании с модами. ontentweaker.item.ItemBuilder#withMaxDamage!

Returns: This builder, used for method chaining

Тип возврата: mods.contenttweaker.item.ItemBuilder

ZenScript
Copy
new ItemBuilder().withMaxStackSize(maxStackSize as int);
new ItemBuilder().withMaxStackSize(16);
ПараметрТипОписание
Параметр
maxStackSize
Тип
int
Описание
The maximum stack size

Sets that this item may not be repaired in an anvil Returns: This builder, used for method chaining

Тип возврата: mods.contenttweaker.item.ItemBuilder

ZenScript
Copy
new ItemBuilder().withNoRepair();

Allows you to set the item's rarity

Returns: This builder, used for method chaining

Тип возврата: mods.contenttweaker.item.ItemBuilder

ZenScript
Copy
new ItemBuilder().withRarity(rarity as String);
new ItemBuilder().withRarity("EPIC");
ПараметрТипОписание
Параметр
rarity
Тип
String
Описание
The rarity

Sets the specific type of this item. After this method is called the builder's context will switch to the more provided type builder. That means that the methods of this builder will no longer be available, so any properties you wish to set should be set before you call this method. Returns: A builder with the given item.

Return type: T

ZenScript
Copy
новый ItemBuilder().withType<T>();
new ItemBuilder().withType<mods.contenttweaker.item.tool.ItemBuilderTool>();
ParameterNameBounds
ParameterName
T
Bounds
mods.contenttweaker.item.ItemTypeBuilder