Files
minecraft-bedrock-json-schemas/source/behaviour/entities/1.8.0/behaviors/minecraft.behavior.eat_block.json

30 lines
1.2 KiB
JSON
Raw Normal View History

2020-11-01 17:22:42 +01:00
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.behavior.eat_block",
"type": "object",
2021-03-21 15:18:38 +01:00
"title": "Eat Block 1.8.0",
2020-11-01 17:22:42 +01:00
"description": "UNDOCUMENTATED",
"additionalProperties": false,
"required": [],
"properties": {
2020-12-12 00:09:25 +01:00
"priority": { "$ref": "./types/base_priority.json" },
2020-11-01 17:22:42 +01:00
"on_eat": { "$ref": "../types/trigger.json", "description": "UNDOCUMENTATED", "title": "On Eat" },
2021-03-21 15:18:38 +01:00
"success_chance": { "title": "Succes Chance", "description": "UNDOCUMENTATED", "oneOf": [{ "type": "number" }, { "type": "string", "title": "Molang" }] },
"time_until_eat": { "title": "Time Until Eat", "description": "UNDOCUMENTATED", "type": "number" },
2020-11-01 17:22:42 +01:00
"eat_and_replace_block_pairs": {
"type": "array",
2021-03-21 15:18:38 +01:00
"title": "Eat And Replace Block Pairs",
2020-11-01 17:22:42 +01:00
"description": "UNDOCUMENTATED",
"items": {
"type": "object",
"title": "UNDOCUMENTATED",
"description": "UNDOCUMENTATED",
"properties": {
2021-03-21 15:18:38 +01:00
"eat_block": { "type": "string", "title": "UNDOCUMENTATED", "description": "UNDOCUMENTATED" },
"replace_block": { "type": "string", "title": "UNDOCUMENTATED", "description": "UNDOCUMENTATED" }
2020-11-01 17:22:42 +01:00
}
}
}
}
}