* - Add mob effects enum * - Add biome and biome tags to enum * - Fix feature rules only showing with 1.13.0 format version * - Replace 1.20.41 -> 1.20.80 - Make certain format versions restricted to 1.10.0 * - Remove example stick (having this here was annoying) * - Fix * - Remove empty sounds example * - Misc fixes for entity components
28 lines
728 B
JSON
28 lines
728 B
JSON
{
|
|
"$id": "blockception.minecraft.behavior.entities.minecraft.item_controllable",
|
|
"description": "Defines what items can be used to control this entity while ridden.",
|
|
"type": "object",
|
|
"title": "Item Controllable",
|
|
"additionalProperties": false,
|
|
"required": [],
|
|
"properties": {
|
|
"control_items": {
|
|
"description": "List of items that can be used to control this entity.",
|
|
"oneOf": [
|
|
{
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"description": "An item that can be used to control this entity.",
|
|
"title": "Item"
|
|
}
|
|
},
|
|
{
|
|
"type": "string"
|
|
}
|
|
],
|
|
"title": "Control Items"
|
|
}
|
|
}
|
|
}
|