Flattened 1.16.0

This commit is contained in:
DaanV2
2021-10-08 12:54:09 +02:00
parent 1358630537
commit 1dfd97d95d
185 changed files with 1275 additions and 5992 deletions

View File

@@ -1,30 +1,29 @@
{
"$id": "blockception.minecraft.behavior.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.",
"$id": "blockception.minecraft.behavior.entities.1.16.0.minecraft.leashable",
"type": "object",
"title": "Leashable 1.8.0",
"title": "Leashable 1.16.0",
"description": "Defines interactions with this entity.",
"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",
"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",
"description": "Distance in blocks at which the leash stiffens, restricting movement.",
"title": "Hard Distance"
},
"max_distance": { "type": "number", "default": 10, "description": "Distance in blocks at which the leash breaks", "title": "Maximum Distance" },
"on_leash": { "type": "string", "default": "", "description": "Event to call when this entity is leashed", "title": "On Leash" },
"on_unleash": { "type": "string", "default": "", "description": "Event to call when this entity is unleashed", "title": "On Leash" },
"max_distance": { "type": "number", "default": 10, "description": "Distance in blocks at which the leash breaks.", "title": "Maximum Distance" },
"on_leash": { "$ref": "../types/event.json", "description": "Event to call when this entity is leashed.", "title": "On Leash" },
"on_unleash": { "$ref": "../types/event.json", "description": "Event to call when this entity is unleashed.", "title": "On Unleash" },
"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",
"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"
}
}