Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/lava_movement.json

21 lines
463 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.lava_movement",
"description": "Allows a custom movement speed across lava blocks.",
2021-10-08 12:59:03 +02:00
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Lava Movement",
2021-10-08 12:59:03 +02:00
"additionalProperties": false,
"required": [],
"properties": {
2021-10-11 18:10:42 +02:00
"value": {
"type": "number",
"title": "Value",
"description": "The speed a strider moves over a lava block."
2021-10-11 18:10:42 +02:00
}
},
"examples": [
{
"value": 0.32
2021-10-11 18:10:42 +02:00
}
]
2021-10-08 12:59:03 +02:00
}