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

22 lines
746 B
JSON
Raw Normal View History

2021-01-05 00:37:18 +01:00
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.1.16.200.items.events.teleport",
"title": "Teleport",
"description": "UNDOCUMENTATED",
"type": "object",
"additionalProperties": false,
"properties": {
2021-03-21 15:18:38 +01:00
"target": { "type": "string", "title": "Target", "description": "UNDOCUMENTATED", "enum": ["holder"] },
2021-01-05 00:37:18 +01:00
"max_range": {
"type": "array",
2021-03-21 15:18:38 +01:00
"title": "Max Range",
2021-01-05 00:37:18 +01:00
"description": "UNDOCUMENTATED",
"items": [
{ "type": "number", "title": "X", "description": "UNDOCUMENTATED" },
{ "type": "number", "title": "Y", "description": "UNDOCUMENTATED" },
{ "type": "number", "title": "Z", "description": "UNDOCUMENTATED" }
]
}
}
}