ItemBuilder
Link to itembuilder
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. You can also use mods.contenttweaker.item.ItemBuilder#withType to switch to a more specialized builder, if there exist any.
To tell CoT that you want the item to appear ingame you need to call mods.contenttweaker.item.ItemBuilder#build(String) and specify a valid resource location path.
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 Copymods.contenttweaker.item.ItemBuilder
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.
Constructors
Link to constructors
Creates a new ItemBuilder. Remember that this will not create a new block in the game, you need to call mods.contenttweaker.item.ItemBuilder#build(String) for that.
ZenScript Copynew mods.contenttweaker.item.ItemBuilder();
Methods
Link to methods
build
Link to build
CoT에게 이 제작기가 빌드해야 하는 모든 블록을 실제로 빌드하도록 지시합니다.
ZenScript Copynew ItemBuilder().build(resourceLocation as String);
new ItemBuilder().build("my_awesome_block");
Parameter | Type | Description |
---|---|---|
Parameter resourceLocation | Type String | Description 해당 블록의 리소스 경로 |
withItemGroup
Link to withitemgroup
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
Return type: mods.contenttweaker.item.ItemBuilder
ZenScript Copynew ItemBuilder().withItemGroup(itemGroup as mods.contenttweaker.item.MCItemGroup);
new ItemBuilder().withItemGroup(<itemgroup:misc>);
Parameter | Type | Description |
---|---|---|
Parameter itemGroup | Type mods.contenttweaker.item.MCItemGroup | Description The item group this item should appear in |
withMaxDamage
Link to withmaxdamage
Allows you to set the maximum damage for this item.
Be warned that this cannot be used in combination with mods.contenttweaker.item.ItemBuilder#withMaxStackSize!
Returns: This builder, used for method chaining
Return type: mods.contenttweaker.item.ItemBuilder
ZenScript Copynew ItemBuilder().withMaxDamage(maxDamage as int);
new ItemBuilder().withMaxDamage(250);
Parameter | Type | Description |
---|---|---|
Parameter maxDamage | Type int | Description The maximum stack size |
withMaxStackSize
Link to withmaxstacksize
Allows you to set the maximum stack size for this item.
Be warned that this cannot be used in combination with mods.contenttweaker.item.ItemBuilder#withMaxDamage!
Returns: This builder, used for method chaining
Return type: mods.contenttweaker.item.ItemBuilder
ZenScript Copynew ItemBuilder().withMaxStackSize(maxStackSize as int);
new ItemBuilder().withMaxStackSize(16);
Parameter | Type | Description |
---|---|---|
Parameter maxStackSize | Type int | Description The maximum stack size |
withNoRepair
Link to withnorepair
Sets that this item may not be repaired in an anvil Returns: This builder, used for method chaining
Return type: mods.contenttweaker.item.ItemBuilder
ZenScript Copynew ItemBuilder().withNoRepair();
withRarity
Link to withrarity
Allows you to set the item's rarity
Returns: This builder, used for method chaining
Return type: mods.contenttweaker.item.ItemBuilder
ZenScript Copynew ItemBuilder().withRarity(rarity as String);
new ItemBuilder().withRarity("EPIC");
Parameter | Type | Description |
---|---|---|
Parameter rarity | Type String | Description The rarity |
withType
Link to withtype
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 Copynew ItemBuilder().withType<T>();
new ItemBuilder().withType<mods.contenttweaker.item.tool.ItemBuilderTool>();
ParameterName | Bounds |
---|---|
ParameterName T | Bounds mods.contenttweaker.item.ItemTypeBuilder |