Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/player.saturation.json
DW623 8a7533a941 Updating Undocumented (#180)
* Updating UnDocumented
Updating Undocumented and Fix Component errors
* Update source/behavior/entities/format/components/is_stackable.json
* Update source/behavior/entities/format/components/is_stackable.json

---------

Co-authored-by: Daan Verstraten <daanverstraten@hotmail.com>
2023-08-14 08:21:03 +02:00

27 lines
609 B
JSON

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