Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/skin_id.json

22 lines
522 B
JSON
Raw Normal View History

2021-10-08 12:59:03 +02:00
{
2021-10-08 13:04:13 +02:00
"$id": "blockception.minecraft.behavior.entities.minecraft.skin_id",
2021-10-08 12:59:03 +02:00
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Skin Id",
2021-10-08 12:59:03 +02:00
"additionalProperties": false,
"description": "Skin ID value. Can be used to differentiate skins, such as base skins for villagers.",
"required": [],
"properties": {
"value": {
"type": "integer",
"default": 0,
"description": "The ID of the skin. By convention, 0 is the ID of the base skin",
"title": "Value"
}
2021-10-11 18:10:42 +02:00
},
"examples": [
{
"value": 0
}
]
2021-10-08 12:59:03 +02:00
}