Initial Commit

This commit is contained in:
DaanV2
2020-11-01 17:22:42 +01:00
parent b4075f27df
commit 7a62f06f23
775 changed files with 39420 additions and 0 deletions

View File

@@ -0,0 +1,87 @@
{
"$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"
}
}
}
}