Files
minecraft-bedrock-json-schemas/behaviour/blocks/1.16.200/events/set_block_at_pos.json
2021-01-06 14:07:24 +01:00

28 lines
987 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.1.16.200.block.events.set_block_at_pos",
"type": "object",
"description": "Sets a block relative to this block to another block type.",
"title": "set_block_at_pos 1.16.200",
"additionalProperties": false,
"properties": {
"block_offset": {
"type": "array",
"default": [0.0, 0.0, 0.0],
"description": "The offset from the block's center.",
"title": "block offset",
"items": [
{ "type": "number", "title": "X", "description": "The x offset from the block's center." },
{ "type": "number", "title": "Y", "description": "The y offset from the block's center." },
{ "type": "number", "title": "Z", "description": "The z offset from the block's center." }
]
},
"block_type": {
"type": "string",
"default": "",
"description": "The type of block to set.",
"title": "block type"
}
}
}