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