Update block description (#262)

This commit is contained in:
QuazChick
2024-04-01 09:52:43 +01:00
committed by GitHub
parent 096ddacbb2
commit b1db14db4a
3 changed files with 94 additions and 62 deletions

View File

@@ -0,0 +1,30 @@
{
"$id": "blockception.minecraft.behavior.block.states.enum",
"type": "array",
"minItems": 1,
"maxItems": 16,
"uniqueItems": true,
"items": {
"description": "A valid value of this state. All valid values must be of the same type (boolean, integer or string)."
},
"oneOf": [
{
"items": {
"title": "Boolean State Value",
"type": "boolean"
}
},
{
"items": {
"title": "Integer State Value",
"type": "integer"
}
},
{
"items": {
"title": "String State Value",
"type": "string"
}
}
]
}