Where items configuration are supported?
There are a few places, where you can extensively edit Minecraft items. They include:
Simple vs extended configuration
At any place, where item is about to be configured there are two options possible to achieve that. Simple configuration saves space and is perfect, where you only want to set item material. Extended configuration on the other hand gives you the opportunity to freely customise ItemStack.
Simple configuration Extended configuration Custom head
Simple configuration saves space and is perfect, where you only want to set item material.
Extended configuration on the other hand gives you the opportunity to freely customise ItemStack.
Copy ...:
item:
material: STONE
amount: 1
name: "Magic stone"
lore:
- "&cThats Magic Stone"
enchants:
- FORTUNE:1
item-flags:
- HIDE_ATTRIBUTES
custom-nbt:
- "custom_nbt_key:custom nbt value"
custom-model-data: 155
This is custom head item.
You can get base64 texture value from Minecraft heads or from player/skin
It can be set alone
Copy ...:
item: customhead:ewogICJ0aW1lc3RhbXAiIDogMTY1NDEzNTEyMjkwOSwKICAicHJvZmlsZUlkIiA6ICI5ZGY3MmQyMTIzZDc0MWRiOWZmNGFlYzljZWIxNTRlNiIsCiAgInByb2ZpbGVOYW1lIiA6ICJLcnluaW8iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjQxMGMwZjI4ZDBjOTFkMGZlODFjZmUzZjZlMjMwYmFhN2YxOTY5NTlhOGI4NDBkN2U2ZDdlMDNjNjYzNDBkNSIKICAgIH0KICB9Cn0=
Or in extended item configuration
Copy ...:
item:
material: customhead:ewogICJ0aW1lc3RhbXAiIDogMTY1NDEzNTEyMjkwOSwKICAicHJvZmlsZUlkIiA6ICI5ZGY3MmQyMTIzZDc0MWRiOWZmNGFlYzljZWIxNTRlNiIsCiAgInByb2ZpbGVOYW1lIiA6ICJLcnluaW8iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjQxMGMwZjI4ZDBjOTFkMGZlODFjZmUzZjZlMjMwYmFhN2YxOTY5NTlhOGI4NDBkN2U2ZDdlMDNjNjYzNDBkNSIKICAgIH0KICB9Cn0=
name: "Head"
lore:
- "&cThats just player head"
Extended configuration examples
Extended generator item Extended generated item Custom drops item Custom recipe item
Copy example_generator:
#... other configuration
generator-item:
material: GRASS
name: '&aExample generator'
#and so on...
Copy example_generator:
#...
generates:
#...
- type: item
chance: 10.0
item:
material: STONE #only this is required
amount: 5
name: "Magic stone"
#and so on...
Copy example_generator:
#...
generates:
#...
- type: block
chance: 10.0
material: STONE
custom-drops:
#...
item:
material: DIAMOND
name: "&bDiamond"
#and so on...
Copy example_generator:
#...
ingredients:
#...
A:
material: STONE
name: "Magic stone"
#and so on...