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

52 lines
1.6 KiB
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.leashable",
2021-10-08 12:59:03 +02:00
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Leashable",
"description": "Allows this entity to be leashed and defines the conditions and events for this entity when is leashed.",
2021-10-08 12:59:03 +02:00
"additionalProperties": false,
"properties": {
"can_be_stolen": {
"type": "boolean",
"default": false,
"description": "If true, players can leash this entity even if it is already leashed to another mob.",
"title": "Can Be Stolen"
},
"hard_distance": {
"type": "number",
"default": 6,
"description": "Distance in blocks at which the leash stiffens, restricting movement.",
"title": "Hard Distance"
},
2021-10-11 18:10:42 +02:00
"max_distance": {
"type": "number",
"default": 10,
"description": "Distance in blocks at which the leash breaks.",
"title": "Maximum Distance"
},
"on_leash": {
"$ref": "../types/event_object.json",
2021-10-11 18:10:42 +02:00
"description": "Event to call when this entity is leashed.",
"title": "On Leash"
},
"on_unleash": {
"$ref": "../types/event_object.json",
2021-10-11 18:10:42 +02:00
"description": "Event to call when this entity is unleashed.",
"title": "On Unleash"
},
2021-10-08 12:59:03 +02:00
"soft_distance": {
"type": "number",
"default": 4,
"description": "Distance in blocks at which the `spring` effect starts acting to keep this entity close to the entity that leashed it.",
"title": "Soft Distance"
}
2021-10-11 18:10:42 +02:00
},
"examples": [
{
"can_be_stolen": false,
"hard_distance": 6,
"max_distance": 10,
"soft_distance": 4
}
]
2021-10-08 12:59:03 +02:00
}