Files
minecraft-bedrock-json-schemas/behaviour/entities/1.8.0/behaviors/minecraft.behavior.move_to_block.json
2020-11-01 17:22:42 +01:00

88 lines
2.0 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.behavior.move_to_block",
"type": "object",
"title": "Behavior.move_to_block 1.8.0",
"additionalProperties": false,
"description": "UNDOCUMENTATED",
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"tick_interval": {
"type": "number",
"title": "Tick interval",
"description": "UNDOCUMENTATED"
},
"start_chance": {
"type": "number",
"title": "Start chance",
"description": "UNDOCUMENTATED"
},
"search_range": {
"type": "number",
"title": "Search range",
"description": "UNDOCUMENTATED"
},
"search_height": {
"type": "number",
"title": "Search height",
"description": "UNDOCUMENTATED"
},
"goal_radius": {
"type": "number",
"title": "Goal radius",
"description": "UNDOCUMENTATED"
},
"stay_duration": {
"type": "number",
"title": "Stay duration",
"description": "UNDOCUMENTATED"
},
"target_selection_method": {
"type": "string",
"title": "Target selection method",
"description": "UNDOCUMENTATED"
},
"target_offset": {
"type": "array",
"title": "Target offset",
"description": "UNDOCUMENTATED",
"items": [
{
"type": "number"
},
{
"type": "number"
},
{
"type": "number"
}
]
},
"target_blocks": {
"type": "array",
"title": "Target blocks",
"description": "UNDOCUMENTATED",
"items": {
"type": "string"
}
},
"on_stay_completed": {
"type": "array",
"title": "On stay completed",
"description": "UNDOCUMENTATED",
"items": {
"$ref": "../types/event.json"
}
},
"on_reach": {
"type": "array",
"title": "On reach",
"description": "UNDOCUMENTATED",
"items": {
"$ref": "../types/event.json"
}
}
}
}