Files
minecraft-bedrock-json-schemas/behaviour/blocks/1.16.200/events/teleport.json

49 lines
3.6 KiB
JSON
Raw Normal View History

2021-01-05 10:41:43 +01:00
<EFBFBD><EFBFBD>{
2021-01-05 01:05:33 +01:00
"$schema": "http://json-schema.org/draft-07/schema",
2021-01-05 10:41:43 +01:00
"$id": "blockception.minecraft.behaviour.1.16.200.block.events.teleport",
2021-01-05 01:05:33 +01:00
"type": "object",
2021-01-05 10:41:43 +01:00
"description": "Teleport target randomly around destination point.",
"title": "teleport 1.16.200",
2021-01-05 01:05:33 +01:00
"additionalProperties": false,
"properties": {
2021-01-05 10:41:43 +01:00
"avoid_water": {
"type": "boolean",
"default": true,
"description": "Determines if the teleport avoids putting the target in water.",
"title": "avoid water"
},
"destination": {
"default": [0.0, 0.0, 0.0],
"description": "Origin destination of the teleport.",
"title": "destination",
"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." }
]
},
"land_on_block": {
"type": "boolean",
"default": true,
"description": "Determines if the teleport places the target on a block.",
"title": "land on block"
},
"max_range": {
"default": [8.0, 8.0, 8.0],
"description": "Max range the target can teleport relative to the origin destination.",
"title": "max range",
"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." }
]
},
"target": {
"type": "string",
"default": "self",
"description": "The target context to execute against.",
"title": "target"
}
2021-01-05 01:05:33 +01:00
}
}