Files
minecraft-bedrock-json-schemas/source/behaviour/entities/1.8.0/behaviors/minecraft.behavior.eat_block.json
2021-03-21 15:18:38 +01:00

30 lines
1.2 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.behavior.eat_block",
"type": "object",
"title": "Eat Block 1.8.0",
"description": "UNDOCUMENTATED",
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"on_eat": { "$ref": "../types/trigger.json", "description": "UNDOCUMENTATED", "title": "On Eat" },
"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" },
"eat_and_replace_block_pairs": {
"type": "array",
"title": "Eat And Replace Block Pairs",
"description": "UNDOCUMENTATED",
"items": {
"type": "object",
"title": "UNDOCUMENTATED",
"description": "UNDOCUMENTATED",
"properties": {
"eat_block": { "type": "string", "title": "UNDOCUMENTATED", "description": "UNDOCUMENTATED" },
"replace_block": { "type": "string", "title": "UNDOCUMENTATED", "description": "UNDOCUMENTATED" }
}
}
}
}
}