Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/behaviors/croak.json

27 lines
1.0 KiB
JSON
Raw Normal View History

2022-06-08 21:18:47 +02:00
{
"$id": "blockception.minecraft.behavior.entities.minecraft.behavior.croak",
"type": "object",
2022-07-26 14:45:28 +01:00
"title": "Croak",
2022-06-08 21:18:47 +02:00
"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",
2022-07-20 21:12:56 +02:00
"description": "Random range in seconds after which the croaking stops. Can also be a constant.",
"$ref": "../../../../general/vectors/integer2OrValue.json"
2022-06-08 21:18:47 +02:00
},
"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",
2022-07-20 21:12:56 +02:00
"description": "Random range in seconds between runs of this behavior. Can also be a constant.",
"$ref": "../../../../general/vectors/integer2OrValue.json"
2022-06-08 21:18:47 +02:00
}
}
}