1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-02-22 15:56:12 +00:00
bedrock-samples/behavior_pack/items/appleEnchanted.json
Mike Ammerlaan 6e0daa70a8 v1.21.40.3
2024-10-22 09:25:09 -07:00

47 lines
1.1 KiB
JSON

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