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,28 @@
{
"$id": "blockception.minecraft.behavior.block.states.integer_range",
"type": "object",
"required": ["values"],
"additionalProperties": false,
"properties": {
"values": {
"title": "State Integer Value Range",
"type": "object",
"required": ["min", "max"],
"additionalProperties": false,
"properties": {
"min": {
"title": "Minimum",
"description": "The lowest integer this state supports. This is also used as the default state value.",
"type": "integer",
"default": 0
},
"max": {
"title": "Maximum",
"description": "The highest integer this state supports. This cannot be more than 15 above the minimum.",
"type": "integer",
"default": 15
}
}
}
}
}