Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/player.experience.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

29 lines
675 B
JSON

{
"$id": "blockception.minecraft.behavior.entities.minecraft.player.experience",
"additionalProperties": false,
"type": "object",
"title": "Player.experience",
"description": "Defines how much experience each player action should take.",
"required": [],
"properties": {
"value": {
"type": "integer",
"default": 1,
"title": "Value",
"description": "The initial value of the player experience."
},
"max": {
"type": "integer",
"default": 5,
"title": "Maximum",
"description": "The maximum player experience of this entity."
}
},
"examples": [
{
"value": 0,
"max": 1
}
]
}