Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/knockback_resistance.json
ChibiMango 43da1557be Update knockback_resistance.json
Added descriptions
Removed undocumented comment
2022-07-13 22:10:02 +01:00

22 lines
610 B
JSON

{
"$id": "blockception.minecraft.behavior.entities.minecraft.knockback_resistance",
"type": "object",
"title": "Knockback Resistance",
"additionalProperties": false,
"description": "Sets the knockback resistance item component. Determines the amount of knockback resistance that the item has.",
"required": [],
"properties": {
"protection": {
"title": "Protection",
"type": "number",
"description": "Amount of knockback resistance provided with the total maximum protection being 1.0",
"maximum": 1
}
},
"examples": [
{
"protection": 0.5
}
]
}