Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/player.exhaustion.json
2023-04-17 21:59:55 +02:00

22 lines
569 B
JSON

{
"$id": "blockception.minecraft.behavior.entities.minecraft.player.exhaustion",
"title": "Player.exhaustion",
"description": "Defines the player's need for food.",
"additionalProperties": false,
"type": "object",
"required": [],
"properties": {
"value": {
"type": "number",
"title": "Value",
"description": "The maximum player saturation value."
},
"max": {
"type": "number",
"title": "Maximum",
"description": "The maximum player saturation value."
}
},
"examples": [{ "value": 10, "max": 20 }]
}