Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/can_fly.json
Xterionix 4778547e37 Update can fly (#218)
* - Add min to health

* - Update timer flag to match sniffer.json

* - Update can_fly

* - Remove load on low memory
2024-02-21 19:17:56 +01:00

21 lines
455 B
JSON

{
"$id": "blockception.minecraft.behavior.entities.minecraft.can_fly",
"title": "Can Fly",
"description": "Marks the entity as being able to fly, the pathfinder won't be restricted to paths where a solid block is required underneath it.",
"required": [],
"anyOf": [
{
"type":"object",
"additionalProperties": false
},
{
"type": "boolean",
"default": false
}
],
"examples": [
true,
false
]
}