Files
Xterionix 822ed538f9 Some more misc fixes (#295)
* - 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
2024-06-28 21:06:53 +02:00

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"
}
}
}