* - Add min to health * - Update timer flag to match sniffer.json * - Update can_fly * - Remove load on low memory
21 lines
455 B
JSON
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
|
|
]
|
|
}
|