Item item/create

Create Item

Creates an ItemStack from a material name and optional amount.

Note: Use this as the starting point for any item manipulation chain. Connect the output to Item Modify, Item Enchant, or Player Give Item.

Inputs

NameTypeOptionalDescription
material string Material name (e.g. minecraft:diamond or DIAMOND).
amount number Stack size (1–64).

Outputs

NameTypeDescription
item item_stack The constructed ItemStack.

Properties

KeyTypeDefaultDescription
material string "minecraft:stone" Material
amount number 1 Amount

Examples

Give a player a diamond sword

Create an item and give it to a player.

  1. Create Item (DIAMOND_SWORD, 1) → item → Player Give Item