28 lines
978 B
JSON
28 lines
978 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"$id": "blockception.minecraft.behaviour.1.16.100.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",
|
|
"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"
|
|
}
|
|
}
|
|
}
|