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

38 lines
1.4 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.behavior.stomp_turtle_egg",
"description": "Allows this mob to stomp turtle eggs",
"type": "object",
"title": "Behavior.stomp_turtle_egg 1.8.0",
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "ref": "types/base_priority.json" },
"speed_multiplier": { "ref": "types/base_speed_multiplier.json" },
"goal_radius": {
"type": "number",
"default": 0.5,
"description": "Distance in blocks within the mob considers it has reached the goal. This is the \"wiggle room\" to stop the AI from bouncing back and forth trying to reach a specific spot",
"title": "TODO title"
},
"interval": {
"type": "integer",
"default": 120,
"description": "A random value to determine when to randomly move somewhere. This has a 1/interval chance to choose this goal",
"title": "TODO title"
},
"search_height": {
"type": "integer",
"default": 1,
"description": "Height in blocks the mob will look for turtle eggs to move towards",
"title": "TODO title"
},
"search_range": {
"type": "integer",
"default": 0,
"description": "The distance in blocks it will look for turtle eggs to move towards",
"title": "TODO title"
}
}
}