Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/player.exhaustion.json

22 lines
569 B
JSON
Raw Normal View History

2021-10-08 12:59:03 +02:00
{
2021-10-08 13:04:13 +02:00
"$id": "blockception.minecraft.behavior.entities.minecraft.player.exhaustion",
"title": "Player.exhaustion",
"description": "Defines the player's need for food.",
2021-10-08 12:59:03 +02:00
"additionalProperties": false,
"type": "object",
"required": [],
"properties": {
"value": {
"type": "number",
"title": "Value",
"description": "The maximum player saturation value."
2021-10-08 12:59:03 +02:00
},
"max": {
"type": "number",
"title": "Maximum",
"description": "The maximum player saturation value."
2021-10-08 12:59:03 +02:00
}
2021-10-11 18:10:42 +02:00
},
"examples": [{ "value": 10, "max": 20 }]
2021-10-08 12:59:03 +02:00
}