Files
minecraft-bedrock-json-schemas/behaviour/entities/1.8.0/components/minecraft.leashable.json
2020-11-01 17:22:42 +01:00

48 lines
1.5 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.leashable",
"description": "Allows this entity to be leashed and Defines the conditions and events for this entity when is leashed.",
"type": "object",
"title": "Minecraft.leashable 1.8.0",
"additionalProperties": false,
"required": [],
"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": "TODO title"
},
"hard_distance": {
"type": "number",
"default": 6,
"description": "Distance in blocks at which the leash stiffens, restricting movement",
"title": "TODO title"
},
"max_distance": {
"type": "number",
"default": 10,
"description": "Distance in blocks at which the leash breaks",
"title": "TODO title"
},
"on_leash": {
"type": "string",
"default": "",
"description": "Event to call when this entity is leashed",
"title": "TODO title"
},
"on_unleash": {
"type": "string",
"default": "",
"description": "Event to call when this entity is unleashed",
"title": "TODO title"
},
"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": "TODO title"
}
}
}