20 lines
584 B
JSON
20 lines
584 B
JSON
{
|
|
"$id": "blockception.minecraft.behavior.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",
|
|
"type": "number",
|
|
"maximum": 1.0
|
|
}
|
|
},
|
|
"examples": [
|
|
{ "protection": 0.5}
|
|
]
|
|
}
|