Files
minecraft-bedrock-json-schemas/source/behaviour/entities/1.8.0/components/minecraft.health.json

15 lines
532 B
JSON
Raw Normal View History

2020-11-01 17:22:42 +01:00
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.health",
"description": "TODO",
"type": "object",
"title": "Health 1.8.0",
"additionalProperties": false,
"required": [],
"properties": {
2021-03-07 18:44:01 +01:00
"value": { "type": "integer", "description": "Current health of the entity", "title": "Value" },
"max": { "type": "integer", "description": "The maximum health the entity can heal", "title": "Maximum" }
2020-11-01 17:22:42 +01:00
},
2021-03-21 15:18:38 +01:00
"dependencies": { "max": ["value"] }
2020-11-01 17:22:42 +01:00
}