Files
minecraft-bedrock-json-schemas/source/behavior/items/1.16.100/components/minecraft.armor.json
2021-05-26 01:23:51 +02:00

18 lines
695 B
JSON

{
"$id": "blockception.minecraft.behavior.1.16.100.items.minecraft:armor",
"title": "Armor",
"description": "The armor item componenent determines the amount of protection you have in your armor item.",
"type": "object",
"additionalProperties": false,
"required": ["protection", "texture_type"],
"properties": {
"protection": { "type": "number", "description": "How much protection does the armor item have.", "title": "Protection" },
"texture_type": {
"type": "string",
"default": "",
"description": "Texture Type to apply for the armor. Note that Horse armor is restricted to leather, iron, gold, or diamond.",
"title": "Texture Type"
}
}
}