Files
minecraft-bedrock-json-schemas/source/behavior/blocks/format/events/set_block.json
Piotr Brzozowski 4b7a779f2c Expand block reference schema (#121)
* Fix typo in module name
* Add sound_event schema and add it where appropriate
* Add more fields to block reference and fill some missing fields
* Use molang definition for tags
2022-10-06 13:03:40 +02:00

16 lines
412 B
JSON

{
"$id": "blockception.minecraft.behavior.block.events.set_block",
"type": "object",
"description": "Sets this block to another block type.",
"title": "Set Block",
"additionalProperties": false,
"properties": {
"block_type": {
"$ref": "../../../../general/block/reference.json",
"default": "",
"description": "The type of block to set.",
"title": "Block Type"
}
}
}