* 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>
22 lines
589 B
JSON
22 lines
589 B
JSON
{
|
|
"$id": "blockception.minecraft.behavior.entities.minecraft.player.exhaustion",
|
|
"title": "Player.exhaustion",
|
|
"description": "Defines the player's exhaustion level.",
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"required": [],
|
|
"properties": {
|
|
"value": {
|
|
"type": "integer",
|
|
"title": "Value",
|
|
"description": "The initial value of the player exhaustion."
|
|
},
|
|
"max": {
|
|
"type": "integer",
|
|
"title": "Maximum",
|
|
"description": "The maximum player exhaustion of this entity."
|
|
}
|
|
},
|
|
"examples": [{ "value": 0, "max": 20 }]
|
|
}
|