Update stay_near_noteblock.json

corrected title, capitalised titles & corrected default values
This commit is contained in:
ChibiMango
2022-07-26 14:57:03 +01:00
parent b999b1a7c4
commit 7e909ef713

View File

@@ -1,7 +1,7 @@
{
"$id": "blockception.minecraft.behavior.entities.minecraft.behavior.stay_near_noteblock",
"type": "object",
"title": "Barter",
"title": "Stay Near Noteblock",
"description": "[EXPERIMENTAL BEHAVIOR] The entity will attempt to toss the items from its inventory to a nearby recently played noteblock.",
"additionalProperties": false,
"properties": {
@@ -9,27 +9,27 @@
"$ref": "types/priority.json"
},
"listen_time": {
"title": "listen time",
"title": "Listen Time",
"type": "integer",
"default": 0.0,
"description": "Sets the time an entity should stay near a noteblock after hearing it."
},
"speed": {
"title": "speed",
"title": "Speed",
"type": "number",
"default": 1000000,
"default": 1.0,
"description": "Sets the entity's speed when moving toward the block."
},
"start_distance": {
"title": "start distance",
"title": "Start Distance",
"type": "number",
"default": 10000000,
"default": 10.0,
"description": "Sets the distance the entity needs to be away from the block to attempt to start the goal."
},
"stop_distance": {
"title": "stop distance",
"title": "Stop Distance",
"type": "number",
"default": 2000000,
"default": 2.0,
"description": "Sets the distance from the block the entity will attempt to reach."
}
}