Files
minecraft-bedrock-json-schemas/behaviour/items/1.16.200/components/minecraft.knockback_resistance.json

17 lines
581 B
JSON
Raw Normal View History

2021-01-05 00:13:27 +01:00
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.1.16.200.items.minecraft:knockback_resistance",
"title": "Knockback resistance",
"description": "Knockback Resistance Item. Component put on items that provide knockback resistance.",
"type": "object",
"additionalProperties": false,
"required": ["protection"],
"properties": {
"protection": {
"title": "Protection",
"description": "Amount of knockback resistance provided with the total maximum protection being 1.0",
2021-01-05 10:49:01 +01:00
"type": "number"
2021-01-05 00:13:27 +01:00
}
}
}