Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/behaviors/croak.json
ChibiMango 33de32897d Update croak.json
corrected name
2022-07-26 14:45:28 +01:00

27 lines
1.0 KiB
JSON

{
"$id": "blockception.minecraft.behavior.entities.minecraft.behavior.croak",
"type": "object",
"title": "Croak",
"description": "[EXPERIMENTAL BEHAVIOR] Allows the entity to croak at a random time interval with configurable conditions.",
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/priority.json" },
"duration": {
"title": "Duration",
"description": "Random range in seconds after which the croaking stops. Can also be a constant.",
"$ref": "../../../../general/vectors/integer2OrValue.json"
},
"filters": {
"title": "Filters",
"$ref": "../../filters/filters.json",
"description": "Conditions for the behavior to start and keep running. The interval between runs only starts after passing the filters."
},
"interval": {
"title": "Interval",
"description": "Random range in seconds between runs of this behavior. Can also be a constant.",
"$ref": "../../../../general/vectors/integer2OrValue.json"
}
}
}