--- title: Vanilla Usage Components category: Documentation mentions: - MedicalJewel105 --- This page was created with [Wiki Content Generator](https://github.com/Bedrock-OSS/bedrock-wiki-content-generator). If there are issues, contact us on [Bedrock OSS](https://discord.gg/XjV87YN) 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](/items/vui-full). *Last updated for 1.20.10* ## block camera ```json "minecraft:block": "minecraft:camera" ``` ## camera camera ```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 } ``` ## foil appleEnchanted ```json "minecraft:foil": true ``` golden_apple ```json "minecraft:foil": false ``` ## food apple ```json "minecraft:food": { "nutrition": 4, "saturation_modifier": "low" } ``` appleEnchanted ```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 } ] } ``` baked_potato ```json "minecraft:food": { "nutrition": 5, "saturation_modifier": "normal" } ``` beef ```json "minecraft:food": { "nutrition": 3, "saturation_modifier": "low" } ``` beetroot ```json "minecraft:food": { "nutrition": 1, "saturation_modifier": "normal" } ``` beetroot_soup ```json "minecraft:food": { "nutrition": 6, "saturation_modifier": "normal", "using_converts_to": "bowl" } ``` bread ```json "minecraft:food": { "nutrition": 5, "saturation_modifier": "normal" } ``` carrot ```json "minecraft:food": { "nutrition": 3, "saturation_modifier": "normal" } ``` ## hand_equipped appleEnchanted ```json "minecraft:hand_equipped": false ``` ## max_damage clownfish ```json "minecraft:max_damage": 0 ``` cooked_fish ```json "minecraft:max_damage": 0 ``` cooked_salmon ```json "minecraft:max_damage": 0 ``` fish ```json "minecraft:max_damage": 0 ``` pufferfish ```json "minecraft:max_damage": 0 ``` salmon ```json "minecraft:max_damage": 0 ``` ## max_stack_size beetroot_soup ```json "minecraft:max_stack_size": 1 ``` honey_bottle ```json "minecraft:max_stack_size": 16 ``` mushroom_stew ```json "minecraft:max_stack_size": 1 ``` rabbit_stew ```json "minecraft:max_stack_size": 1 ``` suspicious_stew ```json "minecraft:max_stack_size": 1 ``` ## seed beetroot_seeds ```json "minecraft:seed": { "crop_result": "beetroot" } ``` carrot ```json "minecraft:seed": { "crop_result": "carrots" } ``` glow_berries ```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" } ``` melon_seeds ```json "minecraft:seed": { "crop_result": "melon_stem" } ``` nether_wart ```json "minecraft:seed": { "plant_at": "soul_sand", "crop_result": "nether_wart" } ``` pitcher_pod ```json "minecraft:seed": { "crop_result": "pitcher_crop" } ``` potato ```json "minecraft:seed": { "crop_result": "potatoes" } ``` pumpkin_seeds ```json "minecraft:seed": { "crop_result": "pumpkin_stem" } ``` ## stacked_by_data appleEnchanted ```json "minecraft:stacked_by_data": true ``` clownfish ```json "minecraft:stacked_by_data": true ``` cooked_fish ```json "minecraft:stacked_by_data": true ``` cooked_salmon ```json "minecraft:stacked_by_data": true ``` fish ```json "minecraft:stacked_by_data": true ``` golden_apple ```json "minecraft:stacked_by_data": true ``` pufferfish ```json "minecraft:stacked_by_data": true ``` salmon ```json "minecraft:stacked_by_data": true ``` ## use_duration apple ```json "minecraft:use_duration": 32 ``` appleEnchanted ```json "minecraft:use_duration": 32 ``` baked_potato ```json "minecraft:use_duration": 32 ``` beef ```json "minecraft:use_duration": 32 ``` beetroot ```json "minecraft:use_duration": 32 ``` beetroot_soup ```json "minecraft:use_duration": 32 ``` bread ```json "minecraft:use_duration": 32 ``` camera ```json "minecraft:use_duration": 100000 ```