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
| Name | Type | Optional | Description |
|---|---|---|---|
material |
string | ✓ | Material name (e.g. minecraft:diamond or DIAMOND). |
amount |
number | ✓ | Stack size (1–64). |
Outputs
| Name | Type | Description |
|---|---|---|
item |
item_stack | The constructed ItemStack. |
Properties
| Key | Type | Default | Description |
|---|---|---|---|
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.
- Create Item (DIAMOND_SWORD, 1) → item → Player Give Item