Let me preface this with saying I really didn't want to ask for help. But I've tried everything, and I am out of ideas and getting pissed off.
I frequent wiki.bedrock.dev/guide .... I use the links in blockbench to examine the code for items between versions. //learn.microsoft.com/en-us/minecraft/creator/documents . I downloaded the examples/samples pack on the bedrock dev wiki (which seems a little out of date btw). I even downloaded similar addons, to try and reference how other people are doing it, but I can't seem to find any of recent versions of the game. And I am trying to something incredibly simple, so where am I fucking up in this code?
{
"format_version": "1.20.30",
"minecraft:item": {
"description": {
"identifier": "ve:chocolate_bar",
"menu_category": {
"category": "equipment",
"group": "itemGroup.name.miscFood"
}
},
"components": {
"minecraft:use_modifiers": {
"use_duration": 1.0,
"movement_modifier": 0.35
},
"minecraft:max_stack_size": 64,
"minecraft:icon": {
"texture": "chocolate_bar"
},
"minecraft:food": {
"nutrition": 4,
"saturation_modifier": 1,
"can_always_eat": true,
"effects": [
{
"name": "speed",
"chance": 1.0,
"duration": 300,
"amplifier": 0
}
]
},
"minecraft:use_animation": "eat"
}
}
}