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 this#withType to switch to a more specialized builder, if there exist any.
To tell CoT that you want the item to appear in-game you need to call this#build(String) and specify a valid resource location path.
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
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 at the very top of the file.
ZenScript Copyimport mods.contenttweaker.item.ItemBuilder;
Interfacce Implementate
Link to interfacce-implementate
ItemBuilder implements the following interfaces. That means all methods defined in these interfaces are also available in ItemBuilder
Constructors
Link to constructors
Creates a new ItemBuilder.
Remember that this will not create a new block in the game, you need to call this#build(String) for that.
ZenScript Copynew ItemBuilder() as ItemBuilder
new ItemBuilder();
Metodi
Link to metodi
Name: build
Istruisce CoT per costruire realmente qualsiasi cosa il costruttore dovrebbe star costruendo.
Return Type: void
ZenScript Copy// ItemBuilder.build(resourceLocation as string) as void
new ItemBuilder().build("my_awesome_block");
Parametro | Tipo | Descrizione |
---|---|---|
Parametro resourceLocation | Tipo string | Descrizione Il percorso della risorsa per dare questo blocco |
Name: isImmuneToFire
Sets that this item is immune to fire
Returns: The builder, used for method chaining
Return Type: ItemBuilder
ZenScript Copy// ItemBuilder.isImmuneToFire() as ItemBuilder
new ItemBuilder().isImmuneToFire();
Name: withFood
Sets that this item is a food
Returns: The builder, used for method chaining
Return Type: ItemBuilder
ZenScript CopyItemBuilder.withFood(food as MCFood) as ItemBuilder
Parametro | Tipo | Descrizione |
---|---|---|
Parametro food | Tipo MCFood | Descrizione the food |
Name: 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: ItemBuilder
ZenScript Copy// ItemBuilder.withItemGroup(itemGroup as ItemGroup) as ItemBuilder
new ItemBuilder().withItemGroup(<itemGroup:misc>);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro itemGroup | Tipo ItemGroup | Descrizione The item group this item should appear in |
Name: withMaxDamage
Allows you to set the maximum damage for this item.
Be warned that this cannot be used in combination with this#withMaxStackSize!
Returns: This builder, used for method chaining
Return Type: ItemBuilder
ZenScript Copy// ItemBuilder.withMaxDamage(maxDamage as int) as ItemBuilder
new ItemBuilder().withMaxDamage(250);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro maxDamage | Tipo int | Descrizione The maximum stack size |
Name: withMaxStackSize
Allows you to set the maximum stack size for this item.
Be warned that this cannot be used in combination with this#withMaxDamage!
Returns: This builder, used for method chaining
Return Type: ItemBuilder
ZenScript Copy// ItemBuilder.withMaxStackSize(maxStackSize as int) as ItemBuilder
new ItemBuilder().withMaxStackSize(16);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro maxStackSize | Tipo int | Descrizione The maximum stack size |
Name: withNoRepair
Sets that this item may not be repaired in an anvil
Returns: This builder, used for method chaining
Return Type: ItemBuilder
ZenScript Copy// ItemBuilder.withNoRepair() as ItemBuilder
new ItemBuilder().withNoRepair();
Name: withRarity
Allows you to set the item's rarity
Returns: This builder, used for method chaining
Return Type: ItemBuilder
ZenScript Copy// ItemBuilder.withRarity(rarity as string) as ItemBuilder
new ItemBuilder().withRarity("EPIC");
Parametro | Tipo | Descrizione |
---|---|---|
Parametro rarity | Tipo string | Descrizione La rarità |
Name: withType
Sets the specific type of this item. Dopo aver chiamato questo metodo il contesto del builder passerà al builder del tipo più fornito. Questo significa che i metodi di questo builder non saranno più disponibili, quindi ogni proprietà che desideri impostare dovrà essere impostata prima di chiamare questo metodo.
Returns: A builder with the given item.
Return Type: T
ZenScript CopyItemBuilder.withType<T : ItemTypeBuilder>() as T
Parametro | Tipo | Descrizione |
---|---|---|
Parametro T | Tipo ItemTypeBuilder | Descrizione The Type of item that this should become |