Initial Commit

This commit is contained in:
DaanV2
2020-11-01 17:22:42 +01:00
parent b4075f27df
commit 7a62f06f23
775 changed files with 39420 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
{
"$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"
}
}
}