Files
minecraft-bedrock-json-schemas/source/behavior/items/1.16.200/components/minecraft.armor.json

18 lines
695 B
JSON
Raw Normal View History

2021-01-03 18:59:21 +01:00
{
2021-04-04 13:52:35 +02:00
"$id": "blockception.minecraft.behavior.1.16.200.items.minecraft:armor",
2021-01-03 18:59:21 +01:00
"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": {
2021-03-21 15:18:38 +01:00
"protection": { "type": "number", "description": "How much protection does the armor item have.", "title": "Protection" },
2021-01-03 18:59:21 +01:00
"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.",
2021-03-21 15:18:38 +01:00
"title": "Texture Type"
2021-01-03 18:59:21 +01:00
}
}
}