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

29 lines
675 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.experience",
2021-10-08 12:59:03 +02:00
"additionalProperties": false,
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Player.experience",
"description": "Defines how much experience each player action should take.",
2021-10-08 12:59:03 +02:00
"required": [],
"properties": {
"value": {
"type": "integer",
"default": 1,
2021-10-08 12:59:03 +02:00
"title": "Value",
"description": "The initial value of the player experience."
2021-10-08 12:59:03 +02:00
},
"max": {
"type": "integer",
"default": 5,
2021-10-08 12:59:03 +02:00
"title": "Maximum",
"description": "The maximum player experience of this entity."
2021-10-08 12:59:03 +02:00
}
2021-10-11 18:10:42 +02:00
},
"examples": [
{
"value": 0,
"max": 1
2021-10-11 18:10:42 +02:00
}
]
2021-10-08 12:59:03 +02:00
}