Updated item components

This commit is contained in:
DaanV2
2021-09-21 23:24:24 +02:00
parent a5fb7c8da7
commit a742b8f721
5 changed files with 24 additions and 20 deletions

View File

@@ -1,17 +1,18 @@
{
"$id": "blockception.minecraft.behavior.1.16.200.items.minecraft:armor",
"title": "Armor",
"description": "The armor item componenent determines the amount of protection you have in your armor item.",
"description": "The armor item component 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" },
"protection": { "type": "integer", "description": "How much protection does the armor item have.", "title": "Protection", "minimum": 0 },
"texture_type": {
"type": "string",
"default": "",
"default": "gold",
"description": "Texture Type to apply for the armor. Note that Horse armor is restricted to leather, iron, gold, or diamond.",
"title": "Texture Type"
"title": "Texture Type",
"enum": ["gold", "none", "leather", "chain", "iron", "diamond", "elytra", "turtle", "netherite"]
}
}
}