Foxes in the Bedrock Edition has 20 health instead of 10 like on Java Edition.
The fix
In the fox.json
there is a line called minecraft:health
which shows the value
and max
of the fox's health. This can be fixed if the value
and max
of the minecraft:health
line is set to 10 rather than 20.
"components": {
"minecraft:type_family":
{ "family": [ "fox" ] }
,
"minecraft:breathable":
{ "totalSupply": 15, "suffocateTime": 0 }
,
"minecraft:navigation.walk":
{ "can_path_over_water": true, "avoid_water": true, "avoid_damage_blocks": true }
,
"minecraft:movement.basic": {
},
"minecraft:jump.static": {
},
"minecraft:can_climb": {
},
"minecraft:collision_box":
{ "width": 0.6, "height": 0.7 }
,
"minecraft:nameable": {
},
"minecraft:health":
{ "value": 20, "max": 20 }
,
"minecraft:movement":
{ "value": 0.35 }
Im not sure this is a bug