Files

27 lines
590 B
JSON
Raw Permalink 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.level",
2021-10-08 12:59:03 +02:00
"additionalProperties": false,
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Player.level",
"description": "Defines the player's level.",
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 the player level."
2021-10-08 12:59:03 +02:00
},
"max": {
"type": "integer",
2021-10-08 12:59:03 +02:00
"title": "Maximum",
"description": "The maximum player level value of the entity."
2021-10-08 12:59:03 +02:00
}
2021-10-11 18:10:42 +02:00
},
"examples": [
{
"value": 0,
"max": 24791
2021-10-11 18:10:42 +02:00
}
]
2021-10-08 12:59:03 +02:00
}