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

35 lines
1.0 KiB
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:wearable",
"title": "Wearable",
"description": "Wearable item component.",
"type": "object",
"additionalProperties": false,
"properties": {
2021-01-05 10:49:01 +01:00
"dispensable": {
"title": "Dispensable",
"description": "",
"type": "boolean"
},
2021-01-05 00:13:27 +01:00
"slot": {
"title": "Slot",
"description": "equipment_slot: slot.weapon.mainhand, slot.weapon.offhand, slot.armor.head, slot.armor.chest, slot.armor.legs, slot.armor.feet, slot.hotbar, slot.inventory, slot.enderchest, slot.saddle, slot.armor, slot.chest",
"type": "string",
"enum": [
"slot.weapon.mainhand",
"slot.weapon.offhand",
"slot.armor.head",
"slot.armor.chest",
"slot.armor.legs",
"slot.armor.feet",
"slot.hotbar",
"slot.inventory",
"slot.enderchest",
"slot.saddle",
"slot.armor",
"slot.chest"
]
}
}
}