Vanilla Usage Components

PLEASE READ

This page will be part of a rewrite to accomodate for the removal of the Holiday Creator Feature experimental toggle. Expect this page to be rewritten or removed when this happens.

This page was created with Wiki Content Generator. If there are issues, contact us on Bedrock OSS Discord server. Note that not more than 8 examples are shown for each component to keep this page fast to load. Namespace minecraft was also removed. If you want to see full page, you can do it here. Last updated for 1.20.10

block

Show

camera

Copy
json
"minecraft:block": "minecraft:camera"
1

camera

Show

camera

Copy
json
"minecraft:camera": {
    "black_bars_duration": 0.2,
    "black_bars_screen_ratio": 0.08,
    "shutter_duration": 0.2,
    "picture_duration": 1.0,
    "slide_away_duration": 0.2
}
1
2
3
4
5
6
7

foil

Show

appleEnchanted

Copy
json
"minecraft:foil": true
1

golden_apple

Copy
json
"minecraft:foil": false
1

food

Show

apple

Copy
json
"minecraft:food": {
    "nutrition": 4,
    "saturation_modifier": "low"
}
1
2
3
4

appleEnchanted

Copy
json
"minecraft:food": {
    "nutrition": 4,
    "saturation_modifier": "supernatural",
    "can_always_eat": true,
    "effects": [
        {
            "name": "regeneration",
            "chance": 1.0,
            "duration": 30,
            "amplifier": 4
        },
        {
            "name": "absorption",
            "chance": 1.0,
            "duration": 120,
            "amplifier": 3
        },
        {
            "name": "resistance",
            "chance": 1.0,
            "duration": 300,
            "amplifier": 0
        },
        {
            "name": "fire_resistance",
            "chance": 1.0,
            "duration": 300,
            "amplifier": 0
        }
    ]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

baked_potato

Copy
json
"minecraft:food": {
    "nutrition": 5,
    "saturation_modifier": "normal"
}
1
2
3
4

beef

Copy
json
"minecraft:food": {
    "nutrition": 3,
    "saturation_modifier": "low"
}
1
2
3
4

beetroot

Copy
json
"minecraft:food": {
    "nutrition": 1,
    "saturation_modifier": "normal"
}
1
2
3
4

beetroot_soup

Copy
json
"minecraft:food": {
    "nutrition": 6,
    "saturation_modifier": "normal",
    "using_converts_to": "bowl"
}
1
2
3
4
5

bread

Copy
json
"minecraft:food": {
    "nutrition": 5,
    "saturation_modifier": "normal"
}
1
2
3
4

carrot

Copy
json
"minecraft:food": {
    "nutrition": 3,
    "saturation_modifier": "normal"
}
1
2
3
4

hand_equipped

Show

appleEnchanted

Copy
json
"minecraft:hand_equipped": false
1

max_damage

Show

clownfish

Copy
json
"minecraft:max_damage": 0
1

cooked_fish

Copy
json
"minecraft:max_damage": 0
1

cooked_salmon

Copy
json
"minecraft:max_damage": 0
1

fish

Copy
json
"minecraft:max_damage": 0
1

pufferfish

Copy
json
"minecraft:max_damage": 0
1

salmon

Copy
json
"minecraft:max_damage": 0
1

max_stack_size

Show

beetroot_soup

Copy
json
"minecraft:max_stack_size": 1
1

honey_bottle

Copy
json
"minecraft:max_stack_size": 16
1

mushroom_stew

Copy
json
"minecraft:max_stack_size": 1
1

rabbit_stew

Copy
json
"minecraft:max_stack_size": 1
1

suspicious_stew

Copy
json
"minecraft:max_stack_size": 1
1

seed

Show

beetroot_seeds

Copy
json
"minecraft:seed": {
    "crop_result": "beetroot"
}
1
2
3

carrot

Copy
json
"minecraft:seed": {
    "crop_result": "carrots"
}
1
2
3

glow_berries

Copy
json
"minecraft:seed": {
    "crop_result": "cave_vines",
    "plant_at": [
        "cave_vines",
        "cave_vines_head_with_berries"
    ],
    "plant_at_any_solid_surface": true,
    "plant_at_face": "DOWN"
}
1
2
3
4
5
6
7
8
9

melon_seeds

Copy
json
"minecraft:seed": {
    "crop_result": "melon_stem"
}
1
2
3

nether_wart

Copy
json
"minecraft:seed": {
    "plant_at": "soul_sand",
    "crop_result": "nether_wart"
}
1
2
3
4

pitcher_pod

Copy
json
"minecraft:seed": {
    "crop_result": "pitcher_crop"
}
1
2
3

potato

Copy
json
"minecraft:seed": {
    "crop_result": "potatoes"
}
1
2
3

pumpkin_seeds

Copy
json
"minecraft:seed": {
    "crop_result": "pumpkin_stem"
}
1
2
3

stacked_by_data

Show

appleEnchanted

Copy
json
"minecraft:stacked_by_data": true
1

clownfish

Copy
json
"minecraft:stacked_by_data": true
1

cooked_fish

Copy
json
"minecraft:stacked_by_data": true
1

cooked_salmon

Copy
json
"minecraft:stacked_by_data": true
1

fish

Copy
json
"minecraft:stacked_by_data": true
1

golden_apple

Copy
json
"minecraft:stacked_by_data": true
1

pufferfish

Copy
json
"minecraft:stacked_by_data": true
1

salmon

Copy
json
"minecraft:stacked_by_data": true
1

use_duration

Show

apple

Copy
json
"minecraft:use_duration": 32
1

appleEnchanted

Copy
json
"minecraft:use_duration": 32
1

baked_potato

Copy
json
"minecraft:use_duration": 32
1

beef

Copy
json
"minecraft:use_duration": 32
1

beetroot

Copy
json
"minecraft:use_duration": 32
1

beetroot_soup

Copy
json
"minecraft:use_duration": 32
1

bread

Copy
json
"minecraft:use_duration": 32
1

camera

Copy
json
"minecraft:use_duration": 100000
1

Contributors