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

30 lines
665 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.grows_crop",
2021-10-08 12:59:03 +02:00
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Grows Crop",
2021-10-08 12:59:03 +02:00
"description": "Could increase crop growth when entity walks over crop.",
"additionalProperties": false,
"properties": {
"chance": {
"type": "number",
"default": 0,
"description": "Value between 0-1. Chance of success per tick.",
"minimum": 0,
"maximum": 1,
"title": "Chance"
},
2021-10-11 18:10:42 +02:00
"charges": {
"type": "integer",
"default": 10,
2022-07-22 19:41:04 +02:00
"description": "Number of charges.",
2021-10-11 18:10:42 +02:00
"title": "Charges"
}
},
"examples": [
{
"chance": 0,
"charges": 10
}
]
2021-10-08 12:59:03 +02:00
}