1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-09-28 21:52:54 +00:00
Files
2025-09-09 10:02:11 -07:00

19 lines
608 B
JSON

{
"$id": "3133202100",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Specifies that an item is compostable and provides the chance of creating a composting layer in the composter",
"properties": {
"composting_chance": {
"description": "The chance of this item to create a layer upon composting with the composter. Valid value range is 1 - 100 inclusive",
"maximum": 100,
"minimum": 1,
"type": "integer"
}
},
"required": [
"composting_chance"
],
"title": "minecraft:compostable",
"type": "object",
"x-format-version": "1.21.50"
}