1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-02-22 10:06:11 +00:00
bedrock-samples/behavior_pack/items/golden_apple.json
Mike Ammerlaan a3b394c507 1.19.30
Initial layout
2022-09-23 06:24:26 -07:00

34 lines
729 B
JSON

{
"format_version": "1.10",
"minecraft:item": {
"description": {
"identifier": "minecraft:golden_apple"
},
"components": {
"minecraft:stacked_by_data": true,
"minecraft:use_duration": 32,
"minecraft:foil": false,
"minecraft:food": {
"nutrition": 4,
"saturation_modifier": "supernatural",
"can_always_eat": true,
"effects": [
{
"name": "regeneration",
"chance": 1.0,
"duration": 5,
"amplifier": 1
},
{
"name": "absorption",
"chance": 1.0,
"duration": 120, // 2 * 60
"amplifier": 0
}
]
}
}
}
}