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

27 lines
609 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.saturation",
2021-10-08 12:59:03 +02:00
"additionalProperties": false,
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Player.saturation",
"description": "Defines the player's need for food.",
2021-10-08 12:59:03 +02:00
"required": [],
"properties": {
"value": {
"type": "integer",
2021-10-08 12:59:03 +02:00
"title": "Value",
"description": "The initial value of player saturation."
},
"max": {
"type": "integer",
"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": 5,
"max": 20
2021-10-11 18:10:42 +02:00
}
]
2021-10-08 12:59:03 +02:00
}