Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/knockback_resistance.json
ChibiMango 3193b0dfbc Update knockback_resistance.json
originally was referencing item component.
properties found using vanilla pack: armor_stand
2022-07-20 21:14:28 +01:00

25 lines
616 B
JSON

{
"$id": "blockception.minecraft.behavior.entities.minecraft.knockback_resistance",
"type": "object",
"title": "Knockback Resistance",
"additionalProperties": false,
"description": "Determines the amount of knockback resistance that the item has.",
"$comment": "UNDOCUMENTED",
"required": [],
"properties": {
"value": {
"title": "Value",
"type": "number",
"default": 1.0,
"description": "Percentage of knockback to reduce with 1.0 being 100% reduction.",
"$comment": "UNDOCUMENTED",
"maximum": 1
}
},
"examples": [
{
"value": 1.0
}
]
}