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

24 lines
540 B
JSON
Raw Normal View History

2021-10-08 12:59:03 +02:00
{
2021-10-08 13:04:13 +02:00
"$id": "blockception.minecraft.behavior.entities.minecraft.behavior.roll",
2021-10-08 12:59:03 +02:00
"description": "This allows the mob to roll forward.",
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Roll",
2021-10-08 12:59:03 +02:00
"additionalProperties": false,
"required": [],
"properties": {
2021-10-11 18:13:12 +02:00
"priority": {
"$ref": "types/priority.json"
},
"probability": {
"type": "number",
"minimum": 0,
"description": "The probability that the mob will use the goal.",
"title": "Probability"
}
},
"examples": [
{
"probability": 0.0
}
]
}