Initial Commit
This commit is contained in:
140
behaviour/animation_controllers/1.10.0/animation_controller.json
Normal file
140
behaviour/animation_controllers/1.10.0/animation_controller.json
Normal file
@@ -0,0 +1,140 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.animation_controller.1.10.0",
|
||||
"type": "object",
|
||||
"title": "The minecraft behaviourpack animation controller 1.10.0",
|
||||
"description": "TODO description",
|
||||
"definitions": {
|
||||
"animationspec": {
|
||||
"anyOf": [
|
||||
{
|
||||
"title": "Animation Specification",
|
||||
"description": "A single string that specifies which animation there are",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"title": "Animation Specification",
|
||||
"description": "A object specification on how to transition",
|
||||
"maxProperties": 1,
|
||||
"minProperties": 1,
|
||||
"additionalProperties": {
|
||||
"$ref": "../../../molang/1.8.0/string.json"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"particle_effect_spec": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"required": ["effect"],
|
||||
"properties": {
|
||||
"bind_to_actor": {
|
||||
"type": "boolean",
|
||||
"description": "Set to false to have the effect spawned in the world without being bound to an actor (by default an effect is bound to the actor)."
|
||||
},
|
||||
"effect": {
|
||||
"type": "string",
|
||||
"description": "The name of a particle effect that should be played"
|
||||
},
|
||||
"locator": {
|
||||
"type": "string",
|
||||
"description": "The name of a locator on the actor where the effect should be located"
|
||||
},
|
||||
"pre_effect_script": {
|
||||
"type": "string",
|
||||
"description": "A molang script that will be run when the particle emitter is initialized"
|
||||
}
|
||||
}
|
||||
},
|
||||
"commands": {
|
||||
"type": "string",
|
||||
"description": "The event or commands to execute",
|
||||
"pattern": "^(@s .+|/.+)$"
|
||||
}
|
||||
},
|
||||
"required": ["format_version", "animation_controllers"],
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"format_version": {
|
||||
"title": "The 1.10.0 format_version",
|
||||
"type": "string",
|
||||
"pattern": "^1.10.0$",
|
||||
"description": "A version that tells minecraft what type of data format can be expected when reading this file."
|
||||
},
|
||||
"animation_controllers": {
|
||||
"type": "object",
|
||||
"title": "The animation controllers schema",
|
||||
"description": "The animation controllers schema for 1.10.0",
|
||||
"propertyNames": {
|
||||
"pattern": "^controller\\.animation\\.[a-z\\.]+"
|
||||
},
|
||||
"additionalProperties": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"title": "A animation controller",
|
||||
"description": "A single animation controller 1.10.0",
|
||||
"required": ["states"],
|
||||
"minProperties": 1,
|
||||
"properties": {
|
||||
"states": {
|
||||
"title": "The states definition",
|
||||
"description": "The states of this animation controller",
|
||||
"propertyNames": {
|
||||
"pattern": "[a-z\\.]+"
|
||||
},
|
||||
"minProperties": 1,
|
||||
"additionalProperties": {
|
||||
"additionalProperties": false,
|
||||
"title": "Animation state",
|
||||
"description": "Animation state",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"animations": {
|
||||
"title": "Animations definition",
|
||||
"description": "The animations definition for 1.10.0",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/animationspec",
|
||||
"description": "TODO description: animations",
|
||||
"title": "Animations"
|
||||
}
|
||||
},
|
||||
"on_entry": {
|
||||
"type": "array",
|
||||
"description": "Events, commands or transitions to preform on entry of this state",
|
||||
"items": {
|
||||
"$ref": "#/definitions/commands"
|
||||
}
|
||||
},
|
||||
"on_exit": {
|
||||
"type": "array",
|
||||
"description": "Events, commands or transitions to preform on exit of this state",
|
||||
"items": {
|
||||
"$ref": "#/definitions/commands"
|
||||
}
|
||||
},
|
||||
"transitions": {
|
||||
"title": "Transition definition",
|
||||
"description": "The transition definition for 1.10.0",
|
||||
"minProperties": 1,
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/animationspec",
|
||||
"description": "TODO description: transitions",
|
||||
"title": "Transitions"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"initial_state": {
|
||||
"type": "string",
|
||||
"description": "TODO description: initial state",
|
||||
"title": "Initial State"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
140
behaviour/animation_controllers/1.8.0/animation_controller.json
Normal file
140
behaviour/animation_controllers/1.8.0/animation_controller.json
Normal file
@@ -0,0 +1,140 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.animation_controller.1.8.0",
|
||||
"type": "object",
|
||||
"title": "The minecraft behaviourpack animation controller 1.8.0",
|
||||
"description": "TODO description",
|
||||
"definitions": {
|
||||
"animationspec": {
|
||||
"anyOf": [
|
||||
{
|
||||
"title": "Animation Specification",
|
||||
"description": "A single string that specifies which animation there are",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"title": "Animation Specification",
|
||||
"description": "A object specification on how to transition",
|
||||
"maxProperties": 1,
|
||||
"minProperties": 1,
|
||||
"additionalProperties": {
|
||||
"$ref": "../../../molang/1.8.0/string.json"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"particle_effect_spec": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"required": ["effect"],
|
||||
"properties": {
|
||||
"bind_to_actor": {
|
||||
"type": "boolean",
|
||||
"description": "Set to false to have the effect spawned in the world without being bound to an actor (by default an effect is bound to the actor)."
|
||||
},
|
||||
"effect": {
|
||||
"type": "string",
|
||||
"description": "The name of a particle effect that should be played"
|
||||
},
|
||||
"locator": {
|
||||
"type": "string",
|
||||
"description": "The name of a locator on the actor where the effect should be located"
|
||||
},
|
||||
"pre_effect_script": {
|
||||
"type": "string",
|
||||
"description": "A molang script that will be run when the particle emitter is initialized"
|
||||
}
|
||||
}
|
||||
},
|
||||
"commands": {
|
||||
"type": "string",
|
||||
"description": "The event or commands to execute",
|
||||
"pattern": "^(@s .+|/.+)$"
|
||||
}
|
||||
},
|
||||
"required": ["format_version", "animation_controllers"],
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"format_version": {
|
||||
"title": "The 1.8.0 format_version",
|
||||
"type": "string",
|
||||
"pattern": "^1.8.0$",
|
||||
"description": "A version that tells minecraft what type of data format can be expected when reading this file."
|
||||
},
|
||||
"animation_controllers": {
|
||||
"type": "object",
|
||||
"title": "The animation controllers schema",
|
||||
"description": "The animation controllers schema for 1.8.0",
|
||||
"propertyNames": {
|
||||
"pattern": "^controller\\.animation\\.[a-z\\.]+"
|
||||
},
|
||||
"additionalProperties": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"title": "A animation controller",
|
||||
"description": "A single animation controller 1.8.0",
|
||||
"required": ["states"],
|
||||
"minProperties": 1,
|
||||
"properties": {
|
||||
"states": {
|
||||
"title": "The states definition",
|
||||
"description": "The states of this animation controller",
|
||||
"propertyNames": {
|
||||
"pattern": "[a-z\\.]+"
|
||||
},
|
||||
"minProperties": 1,
|
||||
"additionalProperties": {
|
||||
"additionalProperties": false,
|
||||
"title": "Animation state",
|
||||
"description": "Animation state",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"animations": {
|
||||
"title": "Animations definition",
|
||||
"description": "The animations definition for 1.8.0",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/animationspec",
|
||||
"description": "TODO description: animations",
|
||||
"title": "Animations"
|
||||
}
|
||||
},
|
||||
"on_entry": {
|
||||
"type": "array",
|
||||
"description": "Events, commands or transitions to preform",
|
||||
"items": {
|
||||
"$ref": "#/definitions/commands"
|
||||
}
|
||||
},
|
||||
"on_exit": {
|
||||
"type": "array",
|
||||
"description": "Events, commands or transitions to preform",
|
||||
"items": {
|
||||
"$ref": "#/definitions/commands"
|
||||
}
|
||||
},
|
||||
"transitions": {
|
||||
"title": "Transition definition",
|
||||
"description": "The transition definition for 1.8.0",
|
||||
"minProperties": 1,
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/animationspec",
|
||||
"description": "TODO description: transitions",
|
||||
"title": "Transitions"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"initial_state": {
|
||||
"type": "string",
|
||||
"description": "TODO description: initial state",
|
||||
"title": "Initial State"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
14
behaviour/animation_controllers/animation_controller.json
Normal file
14
behaviour/animation_controllers/animation_controller.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.animation_controller",
|
||||
"allOf": [
|
||||
{
|
||||
"if": { "properties": { "format_version": { "type": "string", "const": "1.8.0" } } },
|
||||
"then": { "$ref": "./1.8.0/animation_controller.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "format_version": { "type": "string", "const": "1.10.0" } } },
|
||||
"then": { "$ref": "1.10.0/animation_controller.json" }
|
||||
}
|
||||
]
|
||||
}
|
||||
114
behaviour/animations/1.10.0/animations.json
Normal file
114
behaviour/animations/1.10.0/animations.json
Normal file
@@ -0,0 +1,114 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.1.10.0.animations",
|
||||
"type": "object",
|
||||
"title": "The minecraft behaviourpack animation 1.10.0",
|
||||
"description": "TODO description",
|
||||
"required": ["format_version", "animations"],
|
||||
"definitions": {
|
||||
"animationspec": {
|
||||
"anyOf": [
|
||||
{
|
||||
"title": "Animation Specification",
|
||||
"description": "A single string that specifies which animation there are",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"title": "Animation Specification",
|
||||
"description": "A object specification on how to transition",
|
||||
"maxProperties": 1,
|
||||
"minProperties": 1,
|
||||
"additionalProperties": {
|
||||
"$ref": "../../../molang/1.8.0/string.json"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"particle_effect_spec": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"required": ["effect"],
|
||||
"properties": {
|
||||
"bind_to_actor": {
|
||||
"type": "boolean",
|
||||
"description": "Set to false to have the effect spawned in the world without being bound to an actor (by default an effect is bound to the actor)."
|
||||
},
|
||||
"effect": {
|
||||
"type": "string",
|
||||
"description": "The name of a particle effect that should be played"
|
||||
},
|
||||
"locator": {
|
||||
"type": "string",
|
||||
"description": "The name of a locator on the actor where the effect should be located"
|
||||
},
|
||||
"pre_effect_script": {
|
||||
"type": "string",
|
||||
"description": "A molang script that will be run when the particle emitter is initialized"
|
||||
}
|
||||
}
|
||||
},
|
||||
"commands": {
|
||||
"type": "string",
|
||||
"description": "The event or commands to execute",
|
||||
"pattern": "^(@s .+|/.+)$"
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"format_version": {
|
||||
"title": "The 1.10.0 format_version",
|
||||
"type": "string",
|
||||
"pattern": "^1.10.0$",
|
||||
"description": "A version that tells minecraft what type of data format can be expected when reading this file."
|
||||
},
|
||||
"animations": {
|
||||
"title": "Animations schema",
|
||||
"description": "The animation 1.10.0 specification",
|
||||
"type": "object",
|
||||
"propertyNames": {
|
||||
"pattern": "^animation\\.[a-z\\.]+"
|
||||
},
|
||||
"additionalProperties": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"description": "TODO description: additionalItems",
|
||||
"title": "Animation specification",
|
||||
"properties": {
|
||||
"animation_length": {
|
||||
"type": "number",
|
||||
"description": "TODO description: animation length",
|
||||
"title": "Animation Length"
|
||||
},
|
||||
"loop": {
|
||||
"type": "boolean",
|
||||
"description": "TODO description: loop",
|
||||
"title": "Loop"
|
||||
},
|
||||
"timeline": {
|
||||
"title": "Timeline",
|
||||
"description": "The time line",
|
||||
"type": "object",
|
||||
"propertyNames": {
|
||||
"pattern": "^(\\d+.\\d+|\\d+)$"
|
||||
},
|
||||
"additionalProperties": {
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/commands"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"title": "Collection timelime items",
|
||||
"items": {
|
||||
"$ref": "#/definitions/commands"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
114
behaviour/animations/1.8.0/animations.json
Normal file
114
behaviour/animations/1.8.0/animations.json
Normal file
@@ -0,0 +1,114 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.1.8.0.animations",
|
||||
"type": "object",
|
||||
"title": "The minecraft behaviourpack animation 1.8.0",
|
||||
"description": "TODO description",
|
||||
"required": ["format_version", "animations"],
|
||||
"definitions": {
|
||||
"animationspec": {
|
||||
"anyOf": [
|
||||
{
|
||||
"title": "Animation Specification",
|
||||
"description": "A single string that specifies which animation there are",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"title": "Animation Specification",
|
||||
"description": "A object specification on how to transition",
|
||||
"maxProperties": 1,
|
||||
"minProperties": 1,
|
||||
"additionalProperties": {
|
||||
"$ref": "../../../molang/1.8.0/string.json"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"particle_effect_spec": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"required": ["effect"],
|
||||
"properties": {
|
||||
"bind_to_actor": {
|
||||
"type": "boolean",
|
||||
"description": "Set to false to have the effect spawned in the world without being bound to an actor (by default an effect is bound to the actor)."
|
||||
},
|
||||
"effect": {
|
||||
"type": "string",
|
||||
"description": "The name of a particle effect that should be played"
|
||||
},
|
||||
"locator": {
|
||||
"type": "string",
|
||||
"description": "The name of a locator on the actor where the effect should be located"
|
||||
},
|
||||
"pre_effect_script": {
|
||||
"type": "string",
|
||||
"description": "A molang script that will be run when the particle emitter is initialized"
|
||||
}
|
||||
}
|
||||
},
|
||||
"commands": {
|
||||
"type": "string",
|
||||
"description": "The event or commands to execute",
|
||||
"pattern": "^(@s .+|/.+)$"
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"format_version": {
|
||||
"title": "The 1.8.0 format_version",
|
||||
"type": "string",
|
||||
"pattern": "^1.8.0$",
|
||||
"description": "A version that tells minecraft what type of data format can be expected when reading this file."
|
||||
},
|
||||
"animations": {
|
||||
"title": "Animations schema",
|
||||
"description": "The animation 1.8.0 specification",
|
||||
"type": "object",
|
||||
"propertyNames": {
|
||||
"pattern": "^animation\\.[a-z\\.]+"
|
||||
},
|
||||
"additionalProperties": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"description": "TODO description: additionalItems",
|
||||
"title": "Animation specification",
|
||||
"properties": {
|
||||
"animation_length": {
|
||||
"type": "number",
|
||||
"description": "TODO description: animation length",
|
||||
"title": "Animation Length"
|
||||
},
|
||||
"loop": {
|
||||
"type": "boolean",
|
||||
"description": "TODO description: loop",
|
||||
"title": "Loop"
|
||||
},
|
||||
"timeline": {
|
||||
"title": "Timeline",
|
||||
"description": "The time line",
|
||||
"type": "object",
|
||||
"propertyNames": {
|
||||
"pattern": "^(\\d+.\\d+|\\d+)$"
|
||||
},
|
||||
"additionalProperties": {
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/commands"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"title": "Collection timelime items",
|
||||
"items": {
|
||||
"$ref": "#/definitions/commands"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
14
behaviour/animations/animations.json
Normal file
14
behaviour/animations/animations.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.animations",
|
||||
"allOf": [
|
||||
{
|
||||
"if": { "properties": { "format_version": { "type": "string", "const": "1.8.0" } } },
|
||||
"then": { "$ref": "1.8.0/animations.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "format_version": { "type": "string", "const": "1.10.0" } } },
|
||||
"then": { "$ref": "1.10.0/animations.json" }
|
||||
}
|
||||
]
|
||||
}
|
||||
56
behaviour/blocks/1.10.0/blocks.json
Normal file
56
behaviour/blocks/1.10.0/blocks.json
Normal file
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.1.10.0.blocks",
|
||||
"description": "Minecraft blocks 1.10.0",
|
||||
"required": ["format_version", "minecraft:block"],
|
||||
"title": "Block",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"format_version": {
|
||||
"title": "The 1.10.0 format_version",
|
||||
"type": "string",
|
||||
"const": "1.10.0",
|
||||
"description": "A version that tells minecraft what type of data format can be expected when reading this file."
|
||||
},
|
||||
"minecraft:block": {
|
||||
"title": "Minecraft block definitions",
|
||||
"description": "A custom block definition",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["description", "components"],
|
||||
"properties": {
|
||||
"description": {
|
||||
"title": "Block description",
|
||||
"description": "The description for this block",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["identifier"],
|
||||
"properties": {
|
||||
"identifier": {
|
||||
"type": "string",
|
||||
"description": "The identifier for this block. The name must include a namespace and must not use the Minecraft namespace unless overriding a Vanilla block.",
|
||||
"title": "Identifier",
|
||||
"$ref": "../../../general/block/identifier.json"
|
||||
},
|
||||
"is_experimental": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If this block is experimental, it will only be registered if the world is marked as experimantal.",
|
||||
"title": "Is experimental"
|
||||
},
|
||||
"register_to_creative_menu": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Whether or not to register this block to the creative inventory menu.",
|
||||
"title": "Register to creative menu"
|
||||
}
|
||||
}
|
||||
},
|
||||
"components": {
|
||||
"$ref": "./components.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
19
behaviour/blocks/1.10.0/components.json
Normal file
19
behaviour/blocks/1.10.0/components.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.1.10.0.blocks.components",
|
||||
"title": "Components",
|
||||
"description": "The components of that define this block",
|
||||
"required": [],
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"minecraft:block_light_absorption": { "$ref": "components/minecraft.block_light_absorption.json" },
|
||||
"minecraft:block_light_emission": { "$ref": "components/minecraft.block_light_emission.json" },
|
||||
"minecraft:destroy_time": { "$ref": "components/minecraft.destroy_time.json" },
|
||||
"minecraft:explosion_resistance": { "$ref": "components/minecraft.explosion_resistance.json" },
|
||||
"minecraft:flammable": { "$ref": "components/minecraft.flammable.json" },
|
||||
"minecraft:friction": { "$ref": "components/minecraft.friction.json" },
|
||||
"minecraft:loot": { "$ref": "components/minecraft.loot.json" },
|
||||
"minecraft:map_color": { "$ref": "components/minecraft.map_color.json" }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.block_light_absorption",
|
||||
"additionalProperties": false,
|
||||
"type": "number",
|
||||
"title": "Block light absorption 1.10.0",
|
||||
"description": "The amount of light this block will absorb."
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.block_light_emission",
|
||||
"additionalProperties": false,
|
||||
"type": "number",
|
||||
"title": "Block light emission 1.10.0",
|
||||
"description": "The amount of light this block will emit in a range [0.0, 1.0].",
|
||||
"minimum": 0,
|
||||
"maximum": 1
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.destroy_time",
|
||||
"additionalProperties": false,
|
||||
"type": "number",
|
||||
"title": "Destroy time 1.10.0",
|
||||
"description": "Sets the destroy time property for the block. Greater numbers result in greater mining times."
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.explosion_resistance",
|
||||
"additionalProperties": false,
|
||||
"type": "number",
|
||||
"title": "Explosion resistance 1.10.0",
|
||||
"description": "Sets the explosion resistance for this block."
|
||||
}
|
||||
23
behaviour/blocks/1.10.0/components/minecraft.flammable.json
Normal file
23
behaviour/blocks/1.10.0/components/minecraft.flammable.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.flammable",
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"title": "Flammable 1.10.0",
|
||||
"description": "Describes the flammable properties for this block.",
|
||||
"additionalItems": false,
|
||||
"properties": {
|
||||
"burn_odds": {
|
||||
"type": "integer",
|
||||
"default": 0,
|
||||
"description": "How likely the block will be destroyed by flames when on fire.",
|
||||
"title": "Burn odds"
|
||||
},
|
||||
"flame_odds": {
|
||||
"type": "integer",
|
||||
"default": 0,
|
||||
"description": "How likely the block will catch flame when next to a fire.",
|
||||
"title": "Flame odds"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.friction",
|
||||
"additionalProperties": false,
|
||||
"type": "number",
|
||||
"title": "Friction 1.10.0",
|
||||
"description": "Property describing the friction for this block. Friction effects an entities movements when it walks on the block."
|
||||
}
|
||||
9
behaviour/blocks/1.10.0/components/minecraft.loot.json
Normal file
9
behaviour/blocks/1.10.0/components/minecraft.loot.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.loot",
|
||||
"additionalProperties": false,
|
||||
"type": "string",
|
||||
"title": "Loot 1.10.0",
|
||||
"description": "The path of the loot table that this component will use when the block is destroyed.",
|
||||
"pattern": "loot_tables/.*\\.json$"
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.map_color",
|
||||
"additionalProperties": false,
|
||||
"type": "string",
|
||||
"title": "Map color 1.10.0",
|
||||
"description": "A color represented as a hex value. This will be the color rendered to a map.",
|
||||
"format": "color-hex"
|
||||
}
|
||||
56
behaviour/blocks/1.12.0/blocks.json
Normal file
56
behaviour/blocks/1.12.0/blocks.json
Normal file
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.1.12.0.blocks",
|
||||
"description": "Minecraft blocks 1.12.0",
|
||||
"required": ["format_version", "minecraft:block"],
|
||||
"title": "Block",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"format_version": {
|
||||
"title": "The 1.12.0 format_version",
|
||||
"type": "string",
|
||||
"const": "1.12.0",
|
||||
"description": "A version that tells minecraft what type of data format can be expected when reading this file."
|
||||
},
|
||||
"minecraft:block": {
|
||||
"title": "Minecraft block definitions",
|
||||
"description": "A custom block definition",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["description", "components"],
|
||||
"properties": {
|
||||
"description": {
|
||||
"title": "Block description",
|
||||
"description": "The description for this block",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["identifier"],
|
||||
"properties": {
|
||||
"identifier": {
|
||||
"type": "string",
|
||||
"description": "The identifier for this block. The name must include a namespace and must not use the Minecraft namespace unless overriding a Vanilla block.",
|
||||
"title": "Identifier",
|
||||
"$ref": "../../../general/block/identifier.json"
|
||||
},
|
||||
"is_experimental": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If this block is experimental, it will only be registered if the world is marked as experimantal.",
|
||||
"title": "Is experimental"
|
||||
},
|
||||
"register_to_creative_menu": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Whether or not to register this block to the creative inventory menu.",
|
||||
"title": "Register to creative menu"
|
||||
}
|
||||
}
|
||||
},
|
||||
"components": {
|
||||
"$ref": "../1.10.0/components.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
56
behaviour/blocks/1.16.0/blocks.json
Normal file
56
behaviour/blocks/1.16.0/blocks.json
Normal file
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.1.16.0.blocks",
|
||||
"description": "Minecraft blocks 1.16.0",
|
||||
"required": ["format_version", "minecraft:block"],
|
||||
"title": "Block",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"format_version": {
|
||||
"title": "The 1.16.0 format_version",
|
||||
"type": "string",
|
||||
"const": "1.16.0",
|
||||
"description": "A version that tells minecraft what type of data format can be expected when reading this file."
|
||||
},
|
||||
"minecraft:block": {
|
||||
"title": "Minecraft block definitions",
|
||||
"description": "A custom block definition",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["description", "components"],
|
||||
"properties": {
|
||||
"description": {
|
||||
"title": "Block description",
|
||||
"description": "The description for this block",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["identifier"],
|
||||
"properties": {
|
||||
"identifier": {
|
||||
"type": "string",
|
||||
"description": "The identifier for this block. The name must include a namespace and must not use the Minecraft namespace unless overriding a Vanilla block.",
|
||||
"title": "Identifier",
|
||||
"$ref": "../../../general/block/identifier.json"
|
||||
},
|
||||
"is_experimental": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If this block is experimental, it will only be registered if the world is marked as experimantal.",
|
||||
"title": "Is experimental"
|
||||
},
|
||||
"register_to_creative_menu": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Whether or not to register this block to the creative inventory menu.",
|
||||
"title": "Register to creative menu"
|
||||
}
|
||||
}
|
||||
},
|
||||
"components": {
|
||||
"$ref": "../1.10.0/components.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
22
behaviour/blocks/blocks.json
Normal file
22
behaviour/blocks/blocks.json
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.blocks",
|
||||
"allOf": [
|
||||
{
|
||||
"if": { "properties": { "format_version": { "type": "string", "const": "1.10" } } },
|
||||
"then": { "$ref": "1.10.0/blocks.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "format_version": { "type": "string", "const": "1.10.0" } } },
|
||||
"then": { "$ref": "1.10.0/blocks.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "format_version": { "type": "string", "const": "1.12.0" } } },
|
||||
"then": { "$ref": "1.12.0/blocks.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "format_version": { "type": "string", "const": "1.16.0" } } },
|
||||
"then": { "$ref": "1.16.0/blocks.json" }
|
||||
}
|
||||
]
|
||||
}
|
||||
323
behaviour/entities/1.10.0/components.json
Normal file
323
behaviour/entities/1.10.0/components.json
Normal file
@@ -0,0 +1,323 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.components1.10.0",
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"title": "Components 1.10.0",
|
||||
"description": "A collection of components",
|
||||
"required": [],
|
||||
"properties": {
|
||||
"minecraft:addrider": { "$ref": "../1.8.0/components/minecraft.addrider.json" },
|
||||
"minecraft:admire_item": { "$ref": "../1.8.0/components/minecraft.admire_item.json" },
|
||||
"minecraft:ageable": { "$ref": "../1.8.0/components/minecraft.ageable.json" },
|
||||
"minecraft:ambient_sound_interval": { "$ref": "../1.8.0/components/minecraft.ambient_sound_interval.json" },
|
||||
"minecraft:angry": { "$ref": "../1.8.0/components/minecraft.angry.json" },
|
||||
"minecraft:annotation.break_door": { "$ref": "../1.8.0/components/minecraft.annotation.break_door.json" },
|
||||
"minecraft:annotation.open_door": { "$ref": "../1.8.0/components/minecraft.annotation.open_door.json" },
|
||||
"minecraft:area_attack": { "$ref": "../1.8.0/components/minecraft.area_attack.json" },
|
||||
"minecraft:attack": { "$ref": "../1.8.0/components/minecraft.attack.json" },
|
||||
"minecraft:attack_cooldown": { "$ref": "../1.8.0/components/minecraft.attack_cooldown.json" },
|
||||
"minecraft:attack_damage": { "$ref": "../1.8.0/components/minecraft.attack_damage.json" },
|
||||
"minecraft:balloonable": { "$ref": "../1.8.0/components/minecraft.balloonable.json" },
|
||||
"minecraft:barter": { "$ref": "../1.8.0/components/minecraft.barter.json" },
|
||||
"minecraft:block_sensor": { "$ref": "../1.8.0/components/minecraft.block_sensor.json" },
|
||||
"minecraft:boostable": { "$ref": "../1.8.0/components/minecraft.boostable.json" },
|
||||
"minecraft:boss": { "$ref": "../1.8.0/components/minecraft.boss.json" },
|
||||
"minecraft:break_blocks": { "$ref": "../1.8.0/components/minecraft.break_blocks.json" },
|
||||
"minecraft:breathable": { "$ref": "../1.8.0/components/minecraft.breathable.json" },
|
||||
"minecraft:breedable": { "$ref": "../1.8.0/components/minecraft.breedable.json" },
|
||||
"minecraft:bribeable": { "$ref": "../1.8.0/components/minecraft.bribeable.json" },
|
||||
"minecraft:buoyant": { "$ref": "../1.8.0/components/minecraft.buoyant.json" },
|
||||
"minecraft:burns_in_daylight": { "$ref": "../1.8.0/components/minecraft.burns_in_daylight.json" },
|
||||
"minecraft:can_climb": { "$ref": "../1.8.0/components/minecraft.can_climb.json" },
|
||||
"minecraft:can_fly": { "$ref": "../1.8.0/components/minecraft.can_fly.json" },
|
||||
"minecraft:can_power_jump": { "$ref": "../1.8.0/components/minecraft.can_power_jump.json" },
|
||||
"minecraft:celebrate_hunt": { "$ref": "../1.8.0/components/minecraft.celebrate_hunt.json" },
|
||||
"minecraft:collision_box": { "$ref": "../1.8.0/components/minecraft.collision_box.json" },
|
||||
"minecraft:color": { "$ref": "../1.8.0/components/minecraft.color.json" },
|
||||
"minecraft:color2": { "$ref": "../1.8.0/components/minecraft.color2.json" },
|
||||
"minecraft:conditional_bandwidth_optimization": { "$ref": "../1.8.0/components/minecraft.conditional_bandwidth_optimization.json" },
|
||||
"minecraft:custom_hit_test": { "$ref": "../1.8.0/components/minecraft.custom_hit_test.json" },
|
||||
"minecraft:damage_over_time": { "$ref": "../1.8.0/components/minecraft.damage_over_time.json" },
|
||||
"minecraft:damage_sensor": { "$ref": "../1.8.0/components/minecraft.damage_sensor.json" },
|
||||
"minecraft:default_look_angle": { "$ref": "../1.8.0/components/minecraft.default_look_angle.json" },
|
||||
"minecraft:despawn": { "$ref": "../1.8.0/components/minecraft.despawn.json" },
|
||||
"minecraft:economy_trade_table": { "$ref": "../1.8.0/components/minecraft.economy_trade_table.json" },
|
||||
"minecraft:entity_sensor": { "$ref": "../1.8.0/components/minecraft.entity_sensor.json" },
|
||||
"minecraft:environment_sensor": { "$ref": "../1.8.0/components/minecraft.environment_sensor.json" },
|
||||
"minecraft:equip_item": { "$ref": "../1.8.0/components/minecraft.equip_item.json" },
|
||||
"minecraft:equipment": { "$ref": "../1.8.0/components/minecraft.equipment.json" },
|
||||
"minecraft:equippable": { "$ref": "../1.8.0/components/minecraft.equippable.json" },
|
||||
"minecraft:experience_reward": { "$ref": "../1.8.0/components/minecraft.experience_reward.json" },
|
||||
"minecraft:explode": { "$ref": "../1.8.0/components/minecraft.explode.json" },
|
||||
"minecraft:fall_damage": { "$ref": "../1.8.0/components/minecraft.fall_damage.json" },
|
||||
"minecraft:fire_immune": { "$ref": "../1.8.0/components/minecraft.fire_immune.json" },
|
||||
"minecraft:floats_in_liquid": { "$ref": "../1.8.0/components/minecraft.floats_in_liquid.json" },
|
||||
"minecraft:flocking": { "$ref": "../1.8.0/components/minecraft.flocking.json" },
|
||||
"minecraft:flying_speed": { "$ref": "../1.8.0/components/minecraft.flying_speed.json" },
|
||||
"minecraft:follow_range": { "$ref": "../1.8.0/components/minecraft.follow_range.json" },
|
||||
"minecraft:foot_size": { "$ref": "../1.8.0/components/minecraft.foot_size.json" },
|
||||
"minecraft:friction_modifier": { "$ref": "../1.8.0/components/minecraft.friction_modifier.json" },
|
||||
"minecraft:genetics": { "$ref": "../1.8.0/components/minecraft.genetics.json" },
|
||||
"minecraft:giveable": { "$ref": "../1.8.0/components/minecraft.giveable.json" },
|
||||
"minecraft:ground_offset": { "$ref": "../1.8.0/components/minecraft.ground_offset.json" },
|
||||
"minecraft:group_size": { "$ref": "../1.8.0/components/minecraft.group_size.json" },
|
||||
"minecraft:grows_crop": { "$ref": "../1.8.0/components/minecraft.grows_crop.json" },
|
||||
"minecraft:healable": { "$ref": "../1.8.0/components/minecraft.healable.json" },
|
||||
"minecraft:health": { "$ref": "../1.8.0/components/minecraft.health.json" },
|
||||
"minecraft:home": { "$ref": "../1.8.0/components/minecraft.home.json" },
|
||||
"minecraft:hurt_on_condition": { "$ref": "../1.8.0/components/minecraft.hurt_on_condition.json" },
|
||||
"minecraft:hurt_when_wet": { "$ref": "../1.8.0/components/minecraft.hurt_when_wet.json" },
|
||||
"minecraft:input_ground_controlled": { "$ref": "../1.8.0/components/minecraft.input_ground_controlled.json" },
|
||||
"minecraft:inside_block_notifier": { "$ref": "../1.8.0/components/minecraft.inside_block_notifier.json" },
|
||||
"minecraft:insomnia": { "$ref": "../1.8.0/components/minecraft.insomnia.json" },
|
||||
"minecraft:instant_despawn": { "$ref": "../1.8.0/components/minecraft.instant_despawn.json" },
|
||||
"minecraft:interact": { "$ref": "../1.8.0/components/minecraft.interact.json" },
|
||||
"minecraft:inventory": { "$ref": "../1.8.0/components/minecraft.inventory.json" },
|
||||
"minecraft:is_baby": { "$ref": "../1.8.0/components/minecraft.is_baby.json" },
|
||||
"minecraft:is_charged": { "$ref": "../1.8.0/components/minecraft.is_charged.json" },
|
||||
"minecraft:is_chested": { "$ref": "../1.8.0/components/minecraft.is_chested.json" },
|
||||
"minecraft:is_dyeable": { "$ref": "../1.8.0/components/minecraft.is_dyeable.json" },
|
||||
"minecraft:is_hidden_when_invisible": { "$ref": "../1.8.0/components/minecraft.is_hidden_when_invisible.json" },
|
||||
"minecraft:is_ignited": { "$ref": "../1.8.0/components/minecraft.is_ignited.json" },
|
||||
"minecraft:is_illager_captain": { "$ref": "../1.8.0/components/minecraft.is_illager_captain.json" },
|
||||
"minecraft:is_saddled": { "$ref": "../1.8.0/components/minecraft.is_saddled.json" },
|
||||
"minecraft:is_shaking": { "$ref": "../1.8.0/components/minecraft.is_shaking.json" },
|
||||
"minecraft:is_sheared": { "$ref": "../1.8.0/components/minecraft.is_sheared.json" },
|
||||
"minecraft:is_stackable": { "$ref": "../1.8.0/components/minecraft.is_stackable.json" },
|
||||
"minecraft:is_stunned": { "$ref": "../1.8.0/components/minecraft.is_stunned.json" },
|
||||
"minecraft:is_tamed": { "$ref": "../1.8.0/components/minecraft.is_tamed.json" },
|
||||
"minecraft:item_controllable": { "$ref": "../1.8.0/components/minecraft.item_controllable.json" },
|
||||
"minecraft:item_hopper": { "$ref": "../1.8.0/components/minecraft.item_hopper.json" },
|
||||
"minecraft:jump.dynamic": { "$ref": "../1.8.0/components/minecraft.jump.dynamic.json" },
|
||||
"minecraft:jump.static": { "$ref": "../1.8.0/components/minecraft.jump.static.json" },
|
||||
"minecraft:knockback_resistance": { "$ref": "../1.8.0/components/minecraft.knockback_resistance.json" },
|
||||
"minecraft:lava_movement": { "$ref": "../1.8.0/components/minecraft.lava_movement.json" },
|
||||
"minecraft:leashable": { "$ref": "../1.8.0/components/minecraft.leashable.json" },
|
||||
"minecraft:lookat": { "$ref": "../1.8.0/components/minecraft.lookat.json" },
|
||||
"minecraft:loot": { "$ref": "../1.8.0/components/minecraft.loot.json" },
|
||||
"minecraft:managed_wandering_trader": { "$ref": "../1.8.0/components/minecraft.managed_wandering_trader.json" },
|
||||
"minecraft:mark_variant": { "$ref": "../1.8.0/components/minecraft.mark_variant.json" },
|
||||
"minecraft:mob_effect": { "$ref": "../1.8.0/components/minecraft.mob_effect.json" },
|
||||
"minecraft:movement": { "$ref": "../1.8.0/components/minecraft.movement.json" },
|
||||
"minecraft:movement.amphibious": { "$ref": "../1.8.0/components/minecraft.movement.amphibious.json" },
|
||||
"minecraft:movement.basic": { "$ref": "../1.8.0/components/minecraft.movement.basic.json" },
|
||||
"minecraft:movement.fly": { "$ref": "../1.8.0/components/minecraft.movement.fly.json" },
|
||||
"minecraft:movement.generic": { "$ref": "../1.8.0/components/minecraft.movement.generic.json" },
|
||||
"minecraft:movement.glide": { "$ref": "../1.8.0/components/minecraft.movement.glide.json" },
|
||||
"minecraft:movement.hover": { "$ref": "../1.8.0/components/minecraft.movement.hover.json" },
|
||||
"minecraft:movement.jump": { "$ref": "../1.8.0/components/minecraft.movement.jump.json" },
|
||||
"minecraft:movement.skip": { "$ref": "../1.8.0/components/minecraft.movement.skip.json" },
|
||||
"minecraft:movement.sway": { "$ref": "../1.8.0/components/minecraft.movement.sway.json" },
|
||||
"minecraft:nameable": { "$ref": "../1.8.0/components/minecraft.nameable.json" },
|
||||
"minecraft:navigation.climb": { "$ref": "../1.8.0/components/minecraft.navigation.climb.json" },
|
||||
"minecraft:navigation.float": { "$ref": "../1.8.0/components/minecraft.navigation.float.json" },
|
||||
"minecraft:navigation.fly": { "$ref": "../1.8.0/components/minecraft.navigation.fly.json" },
|
||||
"minecraft:navigation.generic": { "$ref": "../1.8.0/components/minecraft.navigation.generic.json" },
|
||||
"minecraft:navigation.hover": { "$ref": "../1.8.0/components/minecraft.navigation.hover.json" },
|
||||
"minecraft:navigation.swim": { "$ref": "../1.8.0/components/minecraft.navigation.swim.json" },
|
||||
"minecraft:navigation.walk": { "$ref": "../1.8.0/components/minecraft.navigation.walk.json" },
|
||||
"minecraft:npc": { "$ref": "../1.8.0/components/minecraft.npc.json" },
|
||||
"minecraft:on_death": { "$ref": "../1.8.0/components/minecraft.on_death.json" },
|
||||
"minecraft:on_friendly_anger": { "$ref": "../1.8.0/components/minecraft.on_friendly_anger.json" },
|
||||
"minecraft:on_hurt": { "$ref": "../1.8.0/components/minecraft.on_hurt.json" },
|
||||
"minecraft:on_hurt_by_player": { "$ref": "../1.8.0/components/minecraft.on_hurt_by_player.json" },
|
||||
"minecraft:on_ignite": { "$ref": "../1.8.0/components/minecraft.on_ignite.json" },
|
||||
"minecraft:on_start_landing": { "$ref": "../1.8.0/components/minecraft.on_start_landing.json" },
|
||||
"minecraft:on_start_takeoff": { "$ref": "../1.8.0/components/minecraft.on_start_takeoff.json" },
|
||||
"minecraft:on_target_acquired": { "$ref": "../1.8.0/components/minecraft.on_target_acquired.json" },
|
||||
"minecraft:on_target_escape": { "$ref": "../1.8.0/components/minecraft.on_target_escape.json" },
|
||||
"minecraft:on_wake_with_owner": { "$ref": "../1.8.0/components/minecraft.on_wake_with_owner.json" },
|
||||
"minecraft:out_of_control": { "$ref": "../1.8.0/components/minecraft.out_of_control.json" },
|
||||
"minecraft:player.saturation": { "$ref": "../1.8.0/components/minecraft.player.saturation.json" },
|
||||
"minecraft:player.exhaustion": { "$ref": "../1.8.0/components/minecraft.player.exhaustion.json" },
|
||||
"minecraft:player.level": { "$ref": "../1.8.0/components/minecraft.player.level.json" },
|
||||
"minecraft:player.experience": { "$ref": "../1.8.0/components/minecraft.player.experience.json" },
|
||||
"minecraft:peek": { "$ref": "../1.8.0/components/minecraft.peek.json" },
|
||||
"minecraft:persistent": { "$ref": "../1.8.0/components/minecraft.persistent.json" },
|
||||
"minecraft:physics": { "$ref": "../1.8.0/components/minecraft.physics.json" },
|
||||
"minecraft:preferred_path": { "$ref": "../1.8.0/components/minecraft.preferred_path.json" },
|
||||
"minecraft:projectile": { "$ref": "./components/minecraft.projectile.json" },
|
||||
"minecraft:push_through": { "$ref": "../1.8.0/components/minecraft.push_through.json" },
|
||||
"minecraft:pushable": { "$ref": "../1.8.0/components/minecraft.pushable.json" },
|
||||
"minecraft:raid_trigger": { "$ref": "../1.8.0/components/minecraft.raid_trigger.json" },
|
||||
"minecraft:rail_movement": { "$ref": "../1.8.0/components/minecraft.rail_movement.json" },
|
||||
"minecraft:rail_sensor": { "$ref": "../1.8.0/components/minecraft.rail_sensor.json" },
|
||||
"minecraft:ravager_blocked": { "$ref": "../1.8.0/components/minecraft.ravager_blocked.json" },
|
||||
"minecraft:rideable": { "$ref": "../1.8.0/components/minecraft.rideable.json" },
|
||||
"minecraft:scaffolding_climber": { "$ref": "../1.8.0/components/minecraft.scaffolding_climber.json" },
|
||||
"minecraft:scale": { "$ref": "../1.8.0/components/minecraft.scale.json" },
|
||||
"minecraft:scale_by_age": { "$ref": "../1.8.0/components/minecraft.scale_by_age.json" },
|
||||
"minecraft:scheduler": { "$ref": "../1.8.0/components/minecraft.scheduler.json" },
|
||||
"minecraft:shareables": { "$ref": "../1.8.0/components/minecraft.shareables.json" },
|
||||
"minecraft:shooter": { "$ref": "../1.8.0/components/minecraft.shooter.json" },
|
||||
"minecraft:sittable": { "$ref": "../1.8.0/components/minecraft.sittable.json" },
|
||||
"minecraft:skin_id": { "$ref": "../1.8.0/components/minecraft.skin_id.json" },
|
||||
"minecraft:sound_volume": { "$ref": "../1.8.0/components/minecraft.sound_volume.json" },
|
||||
"minecraft:spawn_entity": { "$ref": "../1.8.0/components/minecraft.spawn_entity.json" },
|
||||
"minecraft:spell_effects": { "$ref": "../1.8.0/components/minecraft.spell_effects.json" },
|
||||
"minecraft:strength": { "$ref": "../1.8.0/components/minecraft.strength.json" },
|
||||
"minecraft:tameable": { "$ref": "../1.8.0/components/minecraft.tameable.json" },
|
||||
"minecraft:tamemount": { "$ref": "../1.8.0/components/minecraft.tamemount.json" },
|
||||
"minecraft:target_nearby_sensor": { "$ref": "../1.8.0/components/minecraft.target_nearby_sensor.json" },
|
||||
"minecraft:teleport": { "$ref": "../1.8.0/components/minecraft.teleport.json" },
|
||||
"minecraft:tick_world": { "$ref": "../1.8.0/components/minecraft.tick_world.json" },
|
||||
"minecraft:timer": { "$ref": "../1.8.0/components/minecraft.timer.json" },
|
||||
"minecraft:trade_table": { "$ref": "../1.8.0/components/minecraft.trade_table.json" },
|
||||
"minecraft:trail": { "$ref": "../1.8.0/components/minecraft.trail.json" },
|
||||
"minecraft:transformation": { "$ref": "../1.8.0/components/minecraft.transformation.json" },
|
||||
"minecraft:trust": { "$ref": "../1.8.0/components/minecraft.trust.json" },
|
||||
"minecraft:trusting": { "$ref": "../1.8.0/components/minecraft.trusting.json" },
|
||||
"minecraft:type_family": { "$ref": "../1.8.0/components/minecraft.type_family.json" },
|
||||
"minecraft:variant": { "$ref": "../1.8.0/components/minecraft.variant.json" },
|
||||
"minecraft:walk_animation_speed": { "$ref": "../1.8.0/components/minecraft.walk_animation_speed.json" },
|
||||
"minecraft:wants_jockey": { "$ref": "../1.8.0/components/minecraft.wants_jockey.json" },
|
||||
"minecraft:water_movement": { "$ref": "../1.8.0/components/minecraft.water_movement.json" },
|
||||
|
||||
"minecraft:behavior.admire_item": { "$ref": "../1.8.0/behaviors/minecraft.behavior.admire_item.json" },
|
||||
"minecraft:behavior.avoid_mob_type": { "$ref": "../1.8.0/behaviors/minecraft.behavior.avoid_mob_type.json" },
|
||||
"minecraft:behavior.beg": { "$ref": "../1.8.0/behaviors/minecraft.behavior.beg.json" },
|
||||
"minecraft:behavior.break_door": { "$ref": "../1.8.0/behaviors/minecraft.behavior.break_door.json" },
|
||||
"minecraft:behavior.breed": { "$ref": "../1.8.0/behaviors/minecraft.behavior.breed.json" },
|
||||
"minecraft:behavior.celebrate": { "$ref": "../1.8.0/behaviors/minecraft.behavior.celebrate.json" },
|
||||
"minecraft:behavior.charge_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.charge_attack.json" },
|
||||
"minecraft:behavior.charge_held_item": { "$ref": "../1.8.0/behaviors/minecraft.behavior.charge_held_item.json" },
|
||||
"minecraft:behavior.circle_around_anchor": { "$ref": "../1.8.0/behaviors/minecraft.behavior.circle_around_anchor.json" },
|
||||
"minecraft:behavior.controlled_by_player": { "$ref": "../1.8.0/behaviors/minecraft.behavior.controlled_by_player.json" },
|
||||
"minecraft:behavior.defend_trusted_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.defend_trusted_target.json" },
|
||||
"minecraft:behavior.defend_village_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.defend_village_target.json" },
|
||||
"minecraft:behavior.delayed_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.delayed_attack.json" },
|
||||
"minecraft:behavior.door_interact": { "$ref": "../1.8.0/behaviors/minecraft.behavior.door_interact.json" },
|
||||
"minecraft:behavior.dragonchargeplayer": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonchargeplayer.json" },
|
||||
"minecraft:behavior.dragondeath": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragondeath.json" },
|
||||
"minecraft:behavior.dragonflaming": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonflaming.json" },
|
||||
"minecraft:behavior.dragonholdingpattern": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonholdingpattern.json" },
|
||||
"minecraft:behavior.dragonlanding": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonlanding.json" },
|
||||
"minecraft:behavior.dragonscanning": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonscanning.json" },
|
||||
"minecraft:behavior.dragonstrafeplayer": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonstrafeplayer.json" },
|
||||
"minecraft:behavior.dragontakeoff": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragontakeoff.json" },
|
||||
"minecraft:behavior.drink_potion": { "$ref": "../1.8.0/behaviors/minecraft.behavior.drink_potion.json" },
|
||||
"minecraft:behavior.drop_item_for": { "$ref": "../1.8.0/behaviors/minecraft.behavior.drop_item_for.json" },
|
||||
"minecraft:behavior.eat_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.eat_block.json" },
|
||||
"minecraft:behavior.eat_carried_item": { "$ref": "../1.8.0/behaviors/minecraft.behavior.eat_carried_item.json" },
|
||||
"minecraft:behavior.enderman_leave_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.enderman_leave_block.json" },
|
||||
"minecraft:behavior.enderman_take_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.enderman_take_block.json" },
|
||||
"minecraft:behavior.explore_outskirts": { "$ref": "../1.8.0/behaviors/minecraft.behavior.explore_outskirts.json" },
|
||||
"minecraft:behavior.find_cover": { "$ref": "../1.8.0/behaviors/minecraft.behavior.find_cover.json" },
|
||||
"minecraft:behavior.find_mount": { "$ref": "../1.8.0/behaviors/minecraft.behavior.find_mount.json" },
|
||||
"minecraft:behavior.find_underwater_treasure": { "$ref": "../1.8.0/behaviors/minecraft.behavior.find_underwater_treasure.json" },
|
||||
"minecraft:behavior.flee_sun": { "$ref": "../1.8.0/behaviors/minecraft.behavior.flee_sun.json" },
|
||||
"minecraft:behavior.float": { "$ref": "../1.8.0/behaviors/minecraft.behavior.float.json" },
|
||||
"minecraft:behavior.float_wander": { "$ref": "../1.8.0/behaviors/minecraft.behavior.float_wander.json" },
|
||||
"minecraft:behavior.follow_caravan": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_caravan.json" },
|
||||
"minecraft:behavior.follow_mob": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_mob.json" },
|
||||
"minecraft:behavior.follow_owner": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_owner.json" },
|
||||
"minecraft:behavior.follow_parent": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_parent.json" },
|
||||
"minecraft:behavior.follow_target_captain": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_target_captain.json" },
|
||||
"minecraft:behavior.go_home": { "$ref": "../1.8.0/behaviors/minecraft.behavior.go_home.json" },
|
||||
"minecraft:behavior.guardian_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.guardian_attack.json" },
|
||||
"minecraft:behavior.harvest_farm_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.harvest_farm_block.json" },
|
||||
"minecraft:behavior.hide": { "$ref": "../1.8.0/behaviors/minecraft.behavior.hide.json" },
|
||||
"minecraft:behavior.hold_ground": { "$ref": "../1.8.0/behaviors/minecraft.behavior.hold_ground.json" },
|
||||
"minecraft:behavior.hurt_by_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.hurt_by_target.json" },
|
||||
"minecraft:behavior.inspect_bookshelf": { "$ref": "../1.8.0/behaviors/minecraft.behavior.inspect_bookshelf.json" },
|
||||
"minecraft:behavior.knockback_roar": { "$ref": "../1.8.0/behaviors/minecraft.behavior.knockback_roar.json" },
|
||||
"minecraft:behavior.lay_down": { "$ref": "../1.8.0/behaviors/minecraft.behavior.lay_down.json" },
|
||||
"minecraft:behavior.lay_egg": { "$ref": "../1.8.0/behaviors/minecraft.behavior.lay_egg.json" },
|
||||
"minecraft:behavior.leap_at_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.leap_at_target.json" },
|
||||
"minecraft:behavior.look_at_entity": { "$ref": "../1.8.0/behaviors/minecraft.behavior.look_at_entity.json" },
|
||||
"minecraft:behavior.look_at_player": { "$ref": "../1.8.0/behaviors/minecraft.behavior.look_at_player.json" },
|
||||
"minecraft:behavior.look_at_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.look_at_target.json" },
|
||||
"minecraft:behavior.look_at_trading_player": { "$ref": "../1.8.0/behaviors/minecraft.behavior.look_at_trading_player.json" },
|
||||
"minecraft:behavior.make_love": { "$ref": "../1.8.0/behaviors/minecraft.behavior.make_love.json" },
|
||||
"minecraft:behavior.melee_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.melee_attack.json" },
|
||||
"minecraft:behavior.mingle": { "$ref": "../1.8.0/behaviors/minecraft.behavior.mingle.json" },
|
||||
"minecraft:behavior.mount_pathing": { "$ref": "../1.8.0/behaviors/minecraft.behavior.mount_pathing.json" },
|
||||
"minecraft:behavior.move_indoors": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_indoors.json" },
|
||||
"minecraft:behavior.move_through_village": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_through_village.json" },
|
||||
"minecraft:behavior.move_to_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_block.json" },
|
||||
"minecraft:behavior.move_to_land": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_land.json" },
|
||||
"minecraft:behavior.move_to_lava": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_lava.json" },
|
||||
"minecraft:behavior.move_to_liquid": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_liquid.json" },
|
||||
"minecraft:behavior.move_to_poi": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_poi.json" },
|
||||
"minecraft:behavior.move_to_random_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_random_block.json" },
|
||||
"minecraft:behavior.move_to_village": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_village.json" },
|
||||
"minecraft:behavior.move_to_water": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_water.json" },
|
||||
"minecraft:behavior.move_towards_dwelling_restriction": {
|
||||
"$ref": "../1.8.0/behaviors/minecraft.behavior.move_towards_dwelling_restriction.json"
|
||||
},
|
||||
"minecraft:behavior.move_towards_restriction": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_towards_restriction.json" },
|
||||
"minecraft:behavior.move_towards_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_towards_target.json" },
|
||||
"minecraft:behavior.nap": { "$ref": "../1.8.0/behaviors/minecraft.behavior.nap.json" },
|
||||
"minecraft:behavior.nearest_attackable_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.nearest_attackable_target.json" },
|
||||
"minecraft:behavior.nearest_prioritized_attackable_target": {
|
||||
"$ref": "../1.8.0/behaviors/minecraft.behavior.nearest_prioritized_attackable_target.json"
|
||||
},
|
||||
"minecraft:behavior.ocelot_sit_on_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.ocelot_sit_on_block.json" },
|
||||
"minecraft:behavior.ocelotattack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.ocelotattack.json" },
|
||||
"minecraft:behavior.offer_flower": { "$ref": "../1.8.0/behaviors/minecraft.behavior.offer_flower.json" },
|
||||
"minecraft:behavior.open_door": { "$ref": "../1.8.0/behaviors/minecraft.behavior.open_door.json" },
|
||||
"minecraft:behavior.owner_hurt_by_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.owner_hurt_by_target.json" },
|
||||
"minecraft:behavior.owner_hurt_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.owner_hurt_target.json" },
|
||||
"minecraft:behavior.panic": { "$ref": "../1.8.0/behaviors/minecraft.behavior.panic.json" },
|
||||
"minecraft:behavior.peek": { "$ref": "../1.8.0/behaviors/minecraft.behavior.peek.json" },
|
||||
"minecraft:behavior.pet_sleep_with_owner": { "$ref": "../1.8.0/behaviors/minecraft.behavior.pet_sleep_with_owner.json" },
|
||||
"minecraft:behavior.pickup_items": { "$ref": "../1.8.0/behaviors/minecraft.behavior.pickup_items.json" },
|
||||
"minecraft:behavior.play": { "$ref": "../1.8.0/behaviors/minecraft.behavior.play.json" },
|
||||
"minecraft:behavior.player_ride_tamed": { "$ref": "../1.8.0/behaviors/minecraft.behavior.player_ride_tamed.json" },
|
||||
"minecraft:behavior.raid_garden": { "$ref": "../1.8.0/behaviors/minecraft.behavior.raid_garden.json" },
|
||||
"minecraft:behavior.random_breach": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_breach.json" },
|
||||
"minecraft:behavior.random_fly": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_fly.json" },
|
||||
"minecraft:behavior.random_hover": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_hover.json" },
|
||||
"minecraft:behavior.random_look_around": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_look_around.json" },
|
||||
"minecraft:behavior.random_look_around_and_sit": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_look_around_and_sit.json" },
|
||||
"minecraft:behavior.random_sitting": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_sitting.json" },
|
||||
"minecraft:behavior.random_stroll": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_stroll.json" },
|
||||
"minecraft:behavior.random_swim": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_swim.json" },
|
||||
"minecraft:behavior.ranged_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.ranged_attack.json" },
|
||||
"minecraft:behavior.receive_love": { "$ref": "../1.8.0/behaviors/minecraft.behavior.receive_love.json" },
|
||||
"minecraft:behavior.restrict_open_door": { "$ref": "../1.8.0/behaviors/minecraft.behavior.restrict_open_door.json" },
|
||||
"minecraft:behavior.restrict_sun": { "$ref": "../1.8.0/behaviors/minecraft.behavior.restrict_sun.json" },
|
||||
"minecraft:behavior.rise_to_liquid_level": { "$ref": "../1.8.0/behaviors/minecraft.behavior.rise_to_liquid_level.json" },
|
||||
"minecraft:behavior.roll": { "$ref": "../1.8.0/behaviors/minecraft.behavior.roll.json" },
|
||||
"minecraft:behavior.run_around_like_crazy": { "$ref": "../1.8.0/behaviors/minecraft.behavior.run_around_like_crazy.json" },
|
||||
"minecraft:behavior.scared": { "$ref": "../1.8.0/behaviors/minecraft.behavior.scared.json" },
|
||||
"minecraft:behavior.send_event": { "$ref": "../1.8.0/behaviors/minecraft.behavior.send_event.json" },
|
||||
"minecraft:behavior.share_items": { "$ref": "../1.8.0/behaviors/minecraft.behavior.share_items.json" },
|
||||
"minecraft:behavior.silverfish_merge_with_stone": { "$ref": "../1.8.0/behaviors/minecraft.behavior.silverfish_merge_with_stone.json" },
|
||||
"minecraft:behavior.silverfish_wake_up_friends": { "$ref": "../1.8.0/behaviors/minecraft.behavior.silverfish_wake_up_friends.json" },
|
||||
"minecraft:behavior.skeleton_horse_trap": { "$ref": "../1.8.0/behaviors/minecraft.behavior.skeleton_horse_trap.json" },
|
||||
"minecraft:behavior.sleep": { "$ref": "../1.8.0/behaviors/minecraft.behavior.sleep.json" },
|
||||
"minecraft:behavior.slime_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.slime_attack.json" },
|
||||
"minecraft:behavior.slime_float": { "$ref": "../1.8.0/behaviors/minecraft.behavior.slime_float.json" },
|
||||
"minecraft:behavior.slime_keep_on_jumping": { "$ref": "../1.8.0/behaviors/minecraft.behavior.slime_keep_on_jumping.json" },
|
||||
"minecraft:behavior.slime_random_direction": { "$ref": "../1.8.0/behaviors/minecraft.behavior.slime_random_direction.json" },
|
||||
"minecraft:behavior.snacking": { "$ref": "../1.8.0/behaviors/minecraft.behavior.snacking.json" },
|
||||
"minecraft:behavior.sneeze": { "$ref": "../1.8.0/behaviors/minecraft.behavior.sneeze.json" },
|
||||
"minecraft:behavior.squid_dive": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_dive.json" },
|
||||
"minecraft:behavior.squid_flee": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_flee.json" },
|
||||
"minecraft:behavior.squid_idle": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_idle.json" },
|
||||
"minecraft:behavior.squid_move_away_from_ground": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_move_away_from_ground.json" },
|
||||
"minecraft:behavior.squid_out_of_water": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_out_of_water.json" },
|
||||
"minecraft:behavior.stalk_and_pounce_on_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.stalk_and_pounce_on_target.json" },
|
||||
"minecraft:behavior.stay_while_sitting": { "$ref": "../1.8.0/behaviors/minecraft.behavior.stay_while_sitting.json" },
|
||||
"minecraft:behavior.stomp_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.stomp_attack.json" },
|
||||
"minecraft:behavior.stomp_turtle_egg": { "$ref": "../1.8.0/behaviors/minecraft.behavior.stomp_turtle_egg.json" },
|
||||
"minecraft:behavior.stroll_towards_village": { "$ref": "../1.8.0/behaviors/minecraft.behavior.stroll_towards_village.json" },
|
||||
"minecraft:behavior.summon_entity": { "$ref": "../1.8.0/behaviors/minecraft.behavior.summon_entity.json" },
|
||||
"minecraft:behavior.swell": { "$ref": "../1.8.0/behaviors/minecraft.behavior.swell.json" },
|
||||
"minecraft:behavior.swim_wander": { "$ref": "../1.8.0/behaviors/minecraft.behavior.swim_wander.json" },
|
||||
"minecraft:behavior.swim_with_entity": { "$ref": "../1.8.0/behaviors/minecraft.behavior.swim_with_entity.json" },
|
||||
"minecraft:behavior.swoop_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.swoop_attack.json" },
|
||||
"minecraft:behavior.target_when_pushed": { "$ref": "../1.8.0/behaviors/minecraft.behavior.target_when_pushed.json" },
|
||||
"minecraft:behavior.take_flower": { "$ref": "../1.8.0/behaviors/minecraft.behavior.take_flower.json" },
|
||||
"minecraft:behavior.tempt": { "$ref": "../1.8.0/behaviors/minecraft.behavior.tempt.json" },
|
||||
"minecraft:behavior.trade_interest": { "$ref": "../1.8.0/behaviors/minecraft.behavior.trade_interest.json" },
|
||||
"minecraft:behavior.trade_with_player": { "$ref": "../1.8.0/behaviors/minecraft.behavior.trade_with_player.json" },
|
||||
"minecraft:behavior.vex_copy_owner_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.vex_copy_owner_target.json" },
|
||||
"minecraft:behavior.vex_random_move": { "$ref": "../1.8.0/behaviors/minecraft.behavior.vex_random_move.json" },
|
||||
"minecraft:behavior.wither_random_attack_pos_goal": { "$ref": "../1.8.0/behaviors/minecraft.behavior.wither_random_attack_pos_goal.json" },
|
||||
"minecraft:behavior.wither_target_highest_damage": { "$ref": "../1.8.0/behaviors/minecraft.behavior.wither_target_highest_damage.json" },
|
||||
"minecraft:behavior.work": { "$ref": "../1.8.0/behaviors/minecraft.behavior.work.json" }
|
||||
}
|
||||
}
|
||||
464
behaviour/entities/1.10.0/components/minecraft.projectile.json
Normal file
464
behaviour/entities/1.10.0/components/minecraft.projectile.json
Normal file
@@ -0,0 +1,464 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.10.0.minecraft.projectile",
|
||||
"description": "Allows the entity to be a thrown entity.",
|
||||
"type": "object",
|
||||
"title": "Projectile 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"required": [],
|
||||
"properties": {
|
||||
"anchor": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"angle_offset": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "Determines the angle at which the projectile is thrown",
|
||||
"title": "Angle offset"
|
||||
},
|
||||
"catch_fire": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the entity hit will be set on fire",
|
||||
"title": "Catch fire"
|
||||
},
|
||||
"crit_particle_on_hurt": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the projectile will produce additional particles when a critical hit happens",
|
||||
"title": "Crit particle on hurt"
|
||||
},
|
||||
"destroy_on_hurt": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, this entity will be destroyed when hit",
|
||||
"title": "Destroy on hurt"
|
||||
},
|
||||
"destroyOnHurt": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, this entity will be destroyed when hit",
|
||||
"title": "Destroy on hurt"
|
||||
},
|
||||
"filter": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Entity Definitions defined here can't be hurt by the projectile",
|
||||
"title": "Filter"
|
||||
},
|
||||
"fire_affected_by_griefing": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, whether the projectile causes fire is affected by the mob griefing game rule",
|
||||
"title": "Fire affected by griefing"
|
||||
},
|
||||
"gravity": {
|
||||
"type": "number",
|
||||
"default": 0.05,
|
||||
"description": "The gravity applied to this entity when thrown. The higher the value, the faster the entity falls",
|
||||
"title": "Gravity"
|
||||
},
|
||||
"hit_sound": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "The sound that plays when the projectile hits something",
|
||||
"title": "Hit sound"
|
||||
},
|
||||
"homing": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the projectile homes in to the nearest entity",
|
||||
"title": "Homing"
|
||||
},
|
||||
"inertia": {
|
||||
"type": "number",
|
||||
"default": 0.99,
|
||||
"description": "The fraction of the projectile's speed maintained every frame while traveling in air",
|
||||
"title": "Inertia"
|
||||
},
|
||||
"is_dangerous": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the projectile will be treated as dangerous to the players",
|
||||
"title": "Is dangerous"
|
||||
},
|
||||
"knockback": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "If true, the projectile will knock back the entity it hits",
|
||||
"title": "Knockback"
|
||||
},
|
||||
"lightning": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the entity hit will be struck by lightning",
|
||||
"title": "Lightning"
|
||||
},
|
||||
"liquid_inertia": {
|
||||
"type": "number",
|
||||
"default": 0.6,
|
||||
"description": "The fraction of the projectile's speed maintained every frame while traveling in water",
|
||||
"title": "Liquid inertia"
|
||||
},
|
||||
"multiple_targets": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "If true, the projectile can hit multiple entities per flight",
|
||||
"title": "Multiple targets"
|
||||
},
|
||||
"offset": {
|
||||
"type": "array",
|
||||
"default": [0, 0.5, 0],
|
||||
"description": "The offset from the entity's anchor where the projectile will spawn",
|
||||
"title": "Offset",
|
||||
"items": [
|
||||
{
|
||||
"type": "number",
|
||||
"description": "X",
|
||||
"title": "X"
|
||||
},
|
||||
{
|
||||
"type": "number",
|
||||
"description": "Y",
|
||||
"title": "Y"
|
||||
},
|
||||
{
|
||||
"type": "number",
|
||||
"description": "Z",
|
||||
"title": "Z"
|
||||
}
|
||||
]
|
||||
},
|
||||
"on_fire_time": {
|
||||
"type": "number",
|
||||
"default": 5,
|
||||
"description": "Time in seconds that the entity hit will be on fire for",
|
||||
"title": "On fire time"
|
||||
},
|
||||
"on_hit": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"properties": {
|
||||
"definition_event": {
|
||||
"additionalProperties": false,
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"affect_projectile": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"event_trigger": {
|
||||
"$ref": "../types/event.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"douse_fire": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"impact_damage": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"properties": {
|
||||
"damage": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"knockback": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"destroy_on_hit": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"should_bounce": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
},
|
||||
"mob_effect": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"effect": "levitation",
|
||||
"properties": {
|
||||
"effect": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"durationeasy": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"durationnormal": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"durationhard": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"amplifier": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
},
|
||||
"particle_on_hit": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"properties": {
|
||||
"particle_type": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"num_particles": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"on_entity_hit": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"on_other_hit": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remove_on_hit": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"spawn_chance": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"properties": {
|
||||
"first_spawn_percent_chance": {
|
||||
"type": "number",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"first_spawn_chance": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"second_spawn_chance": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"first_spawn_count": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"second_spawn_count": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"spawn_definition": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"spawn_baby": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
},
|
||||
"spawn_aoe_cloud": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"radius": {
|
||||
"type": "number",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"radius_on_use": {
|
||||
"type": "number",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"potion": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"particle": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"duration": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"color": {
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"type": "array",
|
||||
"format": "color-array",
|
||||
"items": [
|
||||
{
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"maximum": 255,
|
||||
"description": "R",
|
||||
"title": "R"
|
||||
},
|
||||
{
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"maximum": 255,
|
||||
"description": "G",
|
||||
"title": "G"
|
||||
},
|
||||
{
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"maximum": 255,
|
||||
"description": "B",
|
||||
"title": "B"
|
||||
}
|
||||
]
|
||||
},
|
||||
"affect_owner": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"reapplication_delay": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
},
|
||||
"stick_in_ground": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"teleport_owner": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
},
|
||||
"particle": {
|
||||
"type": "string",
|
||||
"default": "iconcrack",
|
||||
"description": "Particle to use upon collision",
|
||||
"title": "Particle"
|
||||
},
|
||||
"potion_effect": {
|
||||
"type": "integer",
|
||||
"default": -1,
|
||||
"description": "Defines the effect the arrow will apply to the entity it hits",
|
||||
"title": "Potion effect"
|
||||
},
|
||||
"power": {
|
||||
"type": "number",
|
||||
"default": 1.3,
|
||||
"description": "Determines the velocity of the projectile",
|
||||
"title": "Power"
|
||||
},
|
||||
"reflect_on_hurt": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, this entity will be reflected back when hit",
|
||||
"title": "Reflect on hurt"
|
||||
},
|
||||
"semi_random_diff_damage": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, damage will be randomized based on damage and speed",
|
||||
"title": "Semi random diff damage"
|
||||
},
|
||||
"shoot_sound": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "The sound that plays when the projectile is shot",
|
||||
"title": "Shoot sound"
|
||||
},
|
||||
"shoot_target": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "If true, the projectile will be shot towards the target of the entity firing it",
|
||||
"title": "Shoot target"
|
||||
},
|
||||
"should_bounce": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the projectile will bounce upon hit",
|
||||
"title": "Should bounce"
|
||||
},
|
||||
"splash_potion": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the projectile will be treated like a splash potion",
|
||||
"title": "Splash potion"
|
||||
},
|
||||
"splash_range": {
|
||||
"type": "number",
|
||||
"default": 4,
|
||||
"description": "Radius in blocks of the 'splash' effect",
|
||||
"title": "Splash range"
|
||||
},
|
||||
"uncertainty_base": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "The base accuracy. Accuracy is determined by the formula uncertaintyBase - difficultyLevel * uncertaintyMultiplier",
|
||||
"title": "Uncertainty base"
|
||||
},
|
||||
"uncertainty_multiplier": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "Determines how much difficulty affects accuracy. Accuracy is determined by the formula uncertaintyBase - difficultyLevel * uncertaintyMultiplier",
|
||||
"title": "Uncertainty multiplier"
|
||||
}
|
||||
}
|
||||
}
|
||||
18
behaviour/entities/1.10.0/entities.json
Normal file
18
behaviour/entities/1.10.0/entities.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entity1.10.0",
|
||||
"type": "object",
|
||||
"title": "The minecraft behaviour entity 1.10.0",
|
||||
"description": "TODO description",
|
||||
"additionalProperties": false,
|
||||
"required": ["format_version", "minecraft:entity"],
|
||||
"properties": {
|
||||
"format_version": {
|
||||
"title": "The 1.10.0 format_version",
|
||||
"type": "string",
|
||||
"const": "1.10.0",
|
||||
"description": "A version that tells minecraft what type of data format can be expected when reading this file."
|
||||
},
|
||||
"minecraft:entity": { "$ref": "minecraft.entity.json", "description": "TODO description: minecraft:entity", "title": "Entity" }
|
||||
}
|
||||
}
|
||||
133
behaviour/entities/1.10.0/events.json
Normal file
133
behaviour/entities/1.10.0/events.json
Normal file
@@ -0,0 +1,133 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.events1.10.0",
|
||||
"type": "object",
|
||||
"title": "Entity 1.10.0",
|
||||
"definitions": {
|
||||
"addremove": {
|
||||
"additionalProperties": false,
|
||||
"title": "The add/remove schema",
|
||||
"description": "The components groups to add or remove",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"component_groups": {
|
||||
"title": "The component groups schema",
|
||||
"description": "The components groups to add or remove",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"description": "TODO description: component groups",
|
||||
"title": "Component Groups"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"event_base": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"add": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: add",
|
||||
"title": "Add"
|
||||
},
|
||||
"remove": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: remove",
|
||||
"title": "Remove"
|
||||
},
|
||||
"randomize": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"required": ["weight"],
|
||||
"properties": {
|
||||
"add": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: add",
|
||||
"title": "Add"
|
||||
},
|
||||
"remove": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: remove",
|
||||
"title": "Remove"
|
||||
},
|
||||
"trigger": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"weight": {
|
||||
"type": "number",
|
||||
"description": "TODO description: weight",
|
||||
"title": "Weight"
|
||||
}
|
||||
},
|
||||
"description": "TODO description: randomize",
|
||||
"title": "Randomize"
|
||||
},
|
||||
"description": "TODO description: randomize",
|
||||
"title": "Randomize"
|
||||
},
|
||||
"sequence": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "TODO description: sequence",
|
||||
"title": "Sequence",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"add": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: add",
|
||||
"title": "Add"
|
||||
},
|
||||
"remove": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: remove",
|
||||
"title": "Remove"
|
||||
},
|
||||
"filters": {
|
||||
"$ref": "./filters.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"description": "A series of filters and components to be added",
|
||||
"title": "Sequences"
|
||||
},
|
||||
"filters": {
|
||||
"$ref": "./filters.json"
|
||||
},
|
||||
"trigger": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"minecraft:entity_transformed": {
|
||||
"description": "Event called on an entity that transforms into another entity.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "Entity Transformed"
|
||||
},
|
||||
"minecraft:minecraft:entity_born": {
|
||||
"description": "Event called on an entity that is spawned through two entities breeding.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "Minecraft:entity Born"
|
||||
},
|
||||
"minecraft:entity_spawned": {
|
||||
"description": "Event called on an entity that is placed in the level.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "Entity Spawned"
|
||||
},
|
||||
"minecraft:on_prime": {
|
||||
"description": "Event called on an entity whose fuse is lit and is ready to explode.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "On Prime"
|
||||
}
|
||||
},
|
||||
"additionalProperties": {
|
||||
"$ref": "#/definitions/event_base"
|
||||
},
|
||||
"description": "TODO description: "
|
||||
}
|
||||
260
behaviour/entities/1.10.0/filters.json
Normal file
260
behaviour/entities/1.10.0/filters.json
Normal file
@@ -0,0 +1,260 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.10.0.minecraft.filters",
|
||||
"title": "Filters 1.10.0",
|
||||
"definitions": {
|
||||
"filters_spec": {
|
||||
"oneOf": [
|
||||
{
|
||||
"propertyNames": {
|
||||
"enum": ["all_of", "any_of", "none_of"]
|
||||
},
|
||||
"properties": {
|
||||
"all_of": {
|
||||
"title": "All of",
|
||||
"description": "All tests in an 'all_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"any_of": {
|
||||
"title": "Any of",
|
||||
"description": "One or more tests in an 'any_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"none_of": {
|
||||
"title": "None of",
|
||||
"description": "All tests in a 'none_of' group must fail in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"required": ["test"],
|
||||
"properties": {
|
||||
"all_of": {
|
||||
"title": "All of",
|
||||
"description": "All tests in an 'all_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"any_of": {
|
||||
"title": "Any of",
|
||||
"description": "One or more tests in an 'any_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"none_of": {
|
||||
"title": "None of",
|
||||
"description": "All tests in a 'none_of' group must fail in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
}
|
||||
},
|
||||
"allOf": [
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "clock_time" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/clock_time.json" }
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": { "test": { "const": "distance_to_nearest_player" } }
|
||||
},
|
||||
"then": { "$ref": "../1.8.0/filters/distance_to_nearest_player.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_ability" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_ability.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_biome_tag" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_biome_tag.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_component" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_component.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_damage" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_damage.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_equipment" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_equipment.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_mob_effect" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_mob_effect.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_tag" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_tag.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_trade_supply" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_trade_supply.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "hourly_clock_time" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/hourly_clock_time.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_caravan" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_caravan.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_clouds" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_clouds.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_lava" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_lava.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_water" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_water.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_water_or_rain" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_water_or_rain.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_altitude" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_altitude.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_avoiding_mobs" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_avoiding_mobs.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_biome" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_biome.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_brightness" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_brightness.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_climbing" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_climbing.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_color" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_color.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_daytime" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_daytime.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_difficulty" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_difficulty.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_family" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_family.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_game_rule" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_game_rule.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_humid" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_humid.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_immobile" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_immobile.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_in_village" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_in_village.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_leashed" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_leashed.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_mark_variant" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_mark_variant.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_moving" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_moving.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_owner" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_owner.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_riding" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_riding.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_skin_id" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_skin_id.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_sneaking" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_sneaking.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_snow_covered" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_snow_covered.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_target" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_target.json" }
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": { "test": { "const": "is_temperature_type" } }
|
||||
},
|
||||
"then": { "$ref": "../1.8.0/filters/is_temperature_type.json" }
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": { "test": { "const": "is_temperature_value" } }
|
||||
},
|
||||
"then": { "$ref": "../1.8.0/filters/is_temperature_value.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_underground" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_underground.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_underwater" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_underwater.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_variant" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_variant.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_visible" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_visible.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "moon_intensity" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/moon_intensity.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "moon_phase" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/moon_phase.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "on_ground" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/on_ground.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "on_ladder" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/on_ladder.json" }
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"groups_spec": {
|
||||
"oneOf": [
|
||||
{ "type": "array", "items": { "$ref": "#/definitions/groups_spec" } },
|
||||
{ "type": "object", "$ref": "#/definitions/filters_spec" }
|
||||
]
|
||||
}
|
||||
},
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
}
|
||||
104
behaviour/entities/1.10.0/minecraft.entity.json
Normal file
104
behaviour/entities/1.10.0/minecraft.entity.json
Normal file
@@ -0,0 +1,104 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.minecraft:entity",
|
||||
"title": "Entity 1.10.0",
|
||||
"required": ["description"],
|
||||
"properties": {
|
||||
"description": {
|
||||
"required": ["identifier"],
|
||||
"title": "Description",
|
||||
"description": "The description of the this entity",
|
||||
"properties": {
|
||||
"animations": {
|
||||
"title": "Animations",
|
||||
"description": "Sets the mapping of internal animation / animation controllers references to actual animations. This is a JSON Object of name/animation pairs",
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"title": "Animation (controller)",
|
||||
"description": "The name of the animation controller / animation",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"identifier": {
|
||||
"$ref": "../../../general/entity/identifier.json",
|
||||
"description": "Sets the identifier for this entity's description.",
|
||||
"title": "Identifier"
|
||||
},
|
||||
"is_spawnable": {
|
||||
"type": "boolean",
|
||||
"title": "Is spawnable",
|
||||
"description": "Sets whether or not this entity has a spawn egg in the creative ui."
|
||||
},
|
||||
"is_summonable": {
|
||||
"type": "boolean",
|
||||
"title": "The is summonable property",
|
||||
"description": "Sets whether or not we can summon this entity using commands such as /summon."
|
||||
},
|
||||
"is_experimental": {
|
||||
"type": "boolean",
|
||||
"title": "Is experimental",
|
||||
"description": "Sets whether or not this entity is experimental. Experimental entities are only enabled when the experimental toggle is enabled."
|
||||
},
|
||||
"runtime_identifier": {
|
||||
"type": "string",
|
||||
"title": "Runtime identifier",
|
||||
"description": "Sets the name for the Vanilla Minecraft identifier this entity will use to build itself from."
|
||||
},
|
||||
"scripts": {
|
||||
"type": "object",
|
||||
"title": "Scripts",
|
||||
"description": "Sets the mapping of internal animation controller references to actual animation controller. This is a JSON Array of name/animation-controller pairs",
|
||||
"properties": {
|
||||
"animate": {
|
||||
"type": "array",
|
||||
"title": "Animate",
|
||||
"description": "Tells minecraft to run which animation / animation controllers and under what conditions",
|
||||
"items": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"title": "Animation",
|
||||
"description": "The name of an animation controller referenced in animations"
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"title": "Conditional Animation",
|
||||
"description": "TODO",
|
||||
"additionalProperties": {
|
||||
"type": "string",
|
||||
"title": "Animation"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"component_groups": {
|
||||
"title": "Component groups",
|
||||
"description": "Each group when add / remove the default components",
|
||||
"uniqueItems": true,
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"$ref": "components.json",
|
||||
"uniqueItems": true,
|
||||
"description": "The components that are added as the foundation of the entity",
|
||||
"title": "The component schema"
|
||||
}
|
||||
},
|
||||
"components": {
|
||||
"$ref": "components.json",
|
||||
"uniqueItems": true,
|
||||
"description": "The components that are added as the foundation of the entity",
|
||||
"title": "The component schema"
|
||||
},
|
||||
"events": {
|
||||
"$ref": "events.json",
|
||||
"uniqueItems": true,
|
||||
"description": "The events that the entity can run, these add or remove components_groups",
|
||||
"title": "The events schema"
|
||||
}
|
||||
}
|
||||
}
|
||||
51
behaviour/entities/1.10.0/types/entity_types.json
Normal file
51
behaviour/entities/1.10.0/types/entity_types.json
Normal file
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.type.entity_types.1.10.0",
|
||||
"title": "Entity types 1.10.0",
|
||||
|
||||
"definitions": {
|
||||
"entity_definition": {
|
||||
"description": "The entity type",
|
||||
"title": "The entity type",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"filters": {
|
||||
"type": "object",
|
||||
"$ref": "../filters.json"
|
||||
},
|
||||
"max_dist": {
|
||||
"type": "number",
|
||||
"description": "Maximum distance this mob can be away to be a valid choice",
|
||||
"default": 16,
|
||||
"title": "Max Dist"
|
||||
},
|
||||
"walk_speed_multiplier": {
|
||||
"type": "number",
|
||||
"description": "Multiplier for the walking speed. A value of 1.0 means the speed is unchanged",
|
||||
"default": 16,
|
||||
"title": "Walk Speed Multiplier"
|
||||
},
|
||||
"sprint_speed_multiplier": {
|
||||
"type": "number",
|
||||
"description": "Multiplier for the running speed. A value of 1.0 means the speed is unchanged",
|
||||
"default": 16,
|
||||
"title": "Sprint Speed Multiplier"
|
||||
},
|
||||
"must_see": {
|
||||
"type": "boolean",
|
||||
"description": "If true, the mob has to be visible to be a valid choice",
|
||||
"default": false,
|
||||
"title": "Must See"
|
||||
},
|
||||
"must_see_forget_duration": {
|
||||
"type": "number",
|
||||
"description": "Determines the amount of time in seconds that this mob will look for a target before forgetting about it and looking for a new one when the target isn't visible any more",
|
||||
"default": 3,
|
||||
"title": "Must See Forget Duration"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"oneOf": [{ "type": "array", "items": { "$ref": "#/definitions/entity_definition" } }, { "$ref": "#/definitions/entity_definition" }]
|
||||
}
|
||||
29
behaviour/entities/1.10.0/types/event.json
Normal file
29
behaviour/entities/1.10.0/types/event.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.entities.1.10.0.event",
|
||||
"title": "Event",
|
||||
"description": "Minecraft behaviour event 1.10.0",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"pattern": "^[a-zA-Z0-9_\\-:]+$",
|
||||
"description": "The event to fire"
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"event": {
|
||||
"type": "string",
|
||||
"pattern": "^[a-zA-Z0-9_\\-:]+$",
|
||||
"description": "The event to fire",
|
||||
"title": "Event"
|
||||
},
|
||||
"target": {
|
||||
"type": "string",
|
||||
"description": "The target of the event",
|
||||
"enum": ["block", "damager", "other", "parent", "player", "self", "target"]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
10
behaviour/entities/1.10.0/types/range_number_type.json
Normal file
10
behaviour/entities/1.10.0/types/range_number_type.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.type.range_number_type.1.10.0",
|
||||
"title": "Range [a, b]",
|
||||
"description": "A described range",
|
||||
"items": [
|
||||
{ "type": "number", "title": "Range: A", "description": "The first value of the range" },
|
||||
{ "type": "number", "title": "Range: B", "description": "The second value of the range" }
|
||||
]
|
||||
}
|
||||
18
behaviour/entities/1.10.0/types/trigger.json
Normal file
18
behaviour/entities/1.10.0/types/trigger.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.type.trigger.1.10.0",
|
||||
"title": "Trigger 1.10.0",
|
||||
"type": "object",
|
||||
"description": "Trigger to fire",
|
||||
"minProperties": 1,
|
||||
"properties": {
|
||||
"event": {
|
||||
"type": "string",
|
||||
"description": "Event",
|
||||
"title": "The event to fire"
|
||||
},
|
||||
"filters": { "$ref": "../filters.json", "description": "The filters to check to determine if the event should be fired", "title": "Filters" },
|
||||
"target": { "$ref": "../filters/types/base_subject.json", "description": "The entity to target", "title": "Target" }
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
8
behaviour/entities/1.11.0/components.json
Normal file
8
behaviour/entities/1.11.0/components.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.components1.11.0",
|
||||
"type": "object",
|
||||
"title": "Entity 1.11.0",
|
||||
"$ref": "../1.10.0/components.json",
|
||||
"description": "TODO description"
|
||||
}
|
||||
18
behaviour/entities/1.11.0/entities.json
Normal file
18
behaviour/entities/1.11.0/entities.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entity1.10.0",
|
||||
"type": "object",
|
||||
"title": "The minecraft behaviour entity 1.11.0",
|
||||
"description": "TODO description",
|
||||
"required": ["format_version", "minecraft:entity"],
|
||||
"properties": {
|
||||
"format_version": {
|
||||
"title": "The 1.11.0 format_version",
|
||||
"type": "string",
|
||||
"const": "1.11.0",
|
||||
"description": "A version that tells minecraft what type of data format can be expected when reading this file."
|
||||
},
|
||||
"minecraft:entity": { "$ref": "minecraft.entity.json", "description": "TODO description: minecraft:entity", "title": "Entity" }
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
133
behaviour/entities/1.11.0/events.json
Normal file
133
behaviour/entities/1.11.0/events.json
Normal file
@@ -0,0 +1,133 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.events1.11.0",
|
||||
"type": "object",
|
||||
"title": "Entity 1.11.0",
|
||||
"definitions": {
|
||||
"addremove": {
|
||||
"additionalProperties": false,
|
||||
"title": "The add/remove schema",
|
||||
"description": "The components groups to add or remove",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"component_groups": {
|
||||
"title": "The component groups schema",
|
||||
"description": "The components groups to add or remove",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"description": "TODO description: component groups",
|
||||
"title": "Component Groups"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"event_base": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"add": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: add",
|
||||
"title": "Add"
|
||||
},
|
||||
"remove": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: remove",
|
||||
"title": "Remove"
|
||||
},
|
||||
"randomize": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"required": ["weight"],
|
||||
"properties": {
|
||||
"add": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: add",
|
||||
"title": "Add"
|
||||
},
|
||||
"remove": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: remove",
|
||||
"title": "Remove"
|
||||
},
|
||||
"trigger": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"weight": {
|
||||
"type": "number",
|
||||
"description": "TODO description: weight",
|
||||
"title": "Weight"
|
||||
}
|
||||
},
|
||||
"description": "TODO description: randomize",
|
||||
"title": "Randomize"
|
||||
},
|
||||
"description": "TODO description: randomize",
|
||||
"title": "Randomize"
|
||||
},
|
||||
"sequence": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "TODO description: sequence",
|
||||
"title": "Sequence",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"add": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: add",
|
||||
"title": "Add"
|
||||
},
|
||||
"remove": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: remove",
|
||||
"title": "Remove"
|
||||
},
|
||||
"filters": {
|
||||
"$ref": "./filters.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"description": "A series of filters and components to be added",
|
||||
"title": "Sequences"
|
||||
},
|
||||
"filters": {
|
||||
"$ref": "./filters.json"
|
||||
},
|
||||
"trigger": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"minecraft:entity_transformed": {
|
||||
"description": "Event called on an entity that transforms into another entity.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "Entity Transformed"
|
||||
},
|
||||
"minecraft:minecraft:entity_born": {
|
||||
"description": "Event called on an entity that is spawned through two entities breeding.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "Minecraft:entity Born"
|
||||
},
|
||||
"minecraft:entity_spawned": {
|
||||
"description": "Event called on an entity that is placed in the level.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "Entity Spawned"
|
||||
},
|
||||
"minecraft:on_prime": {
|
||||
"description": "Event called on an entity whose fuse is lit and is ready to explode.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "On Prime"
|
||||
}
|
||||
},
|
||||
"additionalProperties": {
|
||||
"$ref": "#/definitions/event_base"
|
||||
},
|
||||
"description": "TODO description: "
|
||||
}
|
||||
260
behaviour/entities/1.11.0/filters.json
Normal file
260
behaviour/entities/1.11.0/filters.json
Normal file
@@ -0,0 +1,260 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.11.0.minecraft.filters",
|
||||
"title": "Filters 1.11.0",
|
||||
"definitions": {
|
||||
"filters_spec": {
|
||||
"oneOf": [
|
||||
{
|
||||
"propertyNames": {
|
||||
"enum": ["all_of", "any_of", "none_of"]
|
||||
},
|
||||
"properties": {
|
||||
"all_of": {
|
||||
"title": "All of",
|
||||
"description": "All tests in an 'all_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"any_of": {
|
||||
"title": "Any of",
|
||||
"description": "One or more tests in an 'any_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"none_of": {
|
||||
"title": "None of",
|
||||
"description": "All tests in a 'none_of' group must fail in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"required": ["test"],
|
||||
"properties": {
|
||||
"all_of": {
|
||||
"title": "All of",
|
||||
"description": "All tests in an 'all_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"any_of": {
|
||||
"title": "Any of",
|
||||
"description": "One or more tests in an 'any_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"none_of": {
|
||||
"title": "None of",
|
||||
"description": "All tests in a 'none_of' group must fail in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
}
|
||||
},
|
||||
"allOf": [
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "clock_time" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/clock_time.json" }
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": { "test": { "const": "distance_to_nearest_player" } }
|
||||
},
|
||||
"then": { "$ref": "../1.8.0/filters/distance_to_nearest_player.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_ability" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_ability.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_biome_tag" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_biome_tag.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_component" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_component.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_damage" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_damage.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_equipment" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_equipment.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_mob_effect" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_mob_effect.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_tag" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_tag.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_trade_supply" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_trade_supply.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "hourly_clock_time" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/hourly_clock_time.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_caravan" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_caravan.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_clouds" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_clouds.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_lava" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_lava.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_water" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_water.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_water_or_rain" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_water_or_rain.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_altitude" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_altitude.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_avoiding_mobs" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_avoiding_mobs.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_biome" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_biome.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_brightness" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_brightness.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_climbing" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_climbing.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_color" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_color.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_daytime" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_daytime.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_difficulty" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_difficulty.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_family" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_family.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_game_rule" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_game_rule.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_humid" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_humid.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_immobile" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_immobile.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_in_village" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_in_village.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_leashed" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_leashed.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_mark_variant" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_mark_variant.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_moving" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_moving.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_owner" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_owner.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_riding" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_riding.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_skin_id" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_skin_id.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_sneaking" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_sneaking.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_snow_covered" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_snow_covered.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_target" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_target.json" }
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": { "test": { "const": "is_temperature_type" } }
|
||||
},
|
||||
"then": { "$ref": "../1.8.0/filters/is_temperature_type.json" }
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": { "test": { "const": "is_temperature_value" } }
|
||||
},
|
||||
"then": { "$ref": "../1.8.0/filters/is_temperature_value.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_underground" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_underground.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_underwater" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_underwater.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_variant" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_variant.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_visible" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_visible.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "moon_intensity" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/moon_intensity.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "moon_phase" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/moon_phase.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "on_ground" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/on_ground.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "on_ladder" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/on_ladder.json" }
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"groups_spec": {
|
||||
"oneOf": [
|
||||
{ "type": "array", "items": { "$ref": "#/definitions/groups_spec" } },
|
||||
{ "type": "object", "$ref": "#/definitions/filters_spec" }
|
||||
]
|
||||
}
|
||||
},
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
}
|
||||
104
behaviour/entities/1.11.0/minecraft.entity.json
Normal file
104
behaviour/entities/1.11.0/minecraft.entity.json
Normal file
@@ -0,0 +1,104 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.minecraft:entity",
|
||||
"title": "Entity 1.11.0",
|
||||
"required": ["description"],
|
||||
"properties": {
|
||||
"description": {
|
||||
"required": ["identifier"],
|
||||
"title": "Description",
|
||||
"description": "The description of the this entity",
|
||||
"properties": {
|
||||
"animations": {
|
||||
"title": "Animations",
|
||||
"description": "Sets the mapping of internal animation / animation controllers references to actual animations. This is a JSON Object of name/animation pairs",
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"title": "Animation (controller)",
|
||||
"description": "The name of the animation controller / animation",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"identifier": {
|
||||
"$ref": "../../../general/entity/identifier.json",
|
||||
"description": "Sets the identifier for this entity's description.",
|
||||
"title": "Identifier"
|
||||
},
|
||||
"is_spawnable": {
|
||||
"type": "boolean",
|
||||
"title": "Is spawnable",
|
||||
"description": "Sets whether or not this entity has a spawn egg in the creative ui."
|
||||
},
|
||||
"is_summonable": {
|
||||
"type": "boolean",
|
||||
"title": "The is summonable property",
|
||||
"description": "Sets whether or not we can summon this entity using commands such as /summon."
|
||||
},
|
||||
"is_experimental": {
|
||||
"type": "boolean",
|
||||
"title": "Is experimental",
|
||||
"description": "Sets whether or not this entity is experimental. Experimental entities are only enabled when the experimental toggle is enabled."
|
||||
},
|
||||
"runtime_identifier": {
|
||||
"type": "string",
|
||||
"title": "Runtime identifier",
|
||||
"description": "Sets the name for the Vanilla Minecraft identifier this entity will use to build itself from."
|
||||
},
|
||||
"scripts": {
|
||||
"type": "object",
|
||||
"title": "Scripts",
|
||||
"description": "Sets the mapping of internal animation controller references to actual animation controller. This is a JSON Array of name/animation-controller pairs",
|
||||
"properties": {
|
||||
"animate": {
|
||||
"type": "array",
|
||||
"title": "Animate",
|
||||
"description": "Tells minecraft to run which animation / animation controllers and under what conditions",
|
||||
"items": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"title": "Animation",
|
||||
"description": "The name of an animation controller referenced in animations"
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"title": "Conditional Animation",
|
||||
"description": "TODO",
|
||||
"additionalProperties": {
|
||||
"type": "string",
|
||||
"title": "Animation"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"component_groups": {
|
||||
"title": "Component groups",
|
||||
"description": "Each group when add / remove the default components",
|
||||
"uniqueItems": true,
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"$ref": "components.json",
|
||||
"uniqueItems": true,
|
||||
"description": "The components that are added as the foundation of the entity",
|
||||
"title": "The component schema"
|
||||
}
|
||||
},
|
||||
"components": {
|
||||
"$ref": "components.json",
|
||||
"uniqueItems": true,
|
||||
"description": "The components that are added as the foundation of the entity",
|
||||
"title": "The component schema"
|
||||
},
|
||||
"events": {
|
||||
"$ref": "events.json",
|
||||
"uniqueItems": true,
|
||||
"description": "The events that the entity can run, these add or remove components_groups",
|
||||
"title": "The events schema"
|
||||
}
|
||||
}
|
||||
}
|
||||
323
behaviour/entities/1.12.0/components.json
Normal file
323
behaviour/entities/1.12.0/components.json
Normal file
@@ -0,0 +1,323 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.components.1.12.0",
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"title": "Components 1.12.0",
|
||||
"description": "A collection of components",
|
||||
"required": [],
|
||||
"properties": {
|
||||
"minecraft:addrider": { "$ref": "../1.8.0/components/minecraft.addrider.json" },
|
||||
"minecraft:admire_item": { "$ref": "../1.8.0/components/minecraft.admire_item.json" },
|
||||
"minecraft:ageable": { "$ref": "../1.8.0/components/minecraft.ageable.json" },
|
||||
"minecraft:ambient_sound_interval": { "$ref": "../1.8.0/components/minecraft.ambient_sound_interval.json" },
|
||||
"minecraft:angry": { "$ref": "../1.8.0/components/minecraft.angry.json" },
|
||||
"minecraft:annotation.break_door": { "$ref": "../1.8.0/components/minecraft.annotation.break_door.json" },
|
||||
"minecraft:annotation.open_door": { "$ref": "../1.8.0/components/minecraft.annotation.open_door.json" },
|
||||
"minecraft:area_attack": { "$ref": "../1.8.0/components/minecraft.area_attack.json" },
|
||||
"minecraft:attack": { "$ref": "../1.8.0/components/minecraft.attack.json" },
|
||||
"minecraft:attack_cooldown": { "$ref": "../1.8.0/components/minecraft.attack_cooldown.json" },
|
||||
"minecraft:attack_damage": { "$ref": "../1.8.0/components/minecraft.attack_damage.json" },
|
||||
"minecraft:balloonable": { "$ref": "../1.8.0/components/minecraft.balloonable.json" },
|
||||
"minecraft:barter": { "$ref": "../1.8.0/components/minecraft.barter.json" },
|
||||
"minecraft:block_sensor": { "$ref": "../1.8.0/components/minecraft.block_sensor.json" },
|
||||
"minecraft:boostable": { "$ref": "../1.8.0/components/minecraft.boostable.json" },
|
||||
"minecraft:boss": { "$ref": "../1.8.0/components/minecraft.boss.json" },
|
||||
"minecraft:break_blocks": { "$ref": "../1.8.0/components/minecraft.break_blocks.json" },
|
||||
"minecraft:breathable": { "$ref": "../1.8.0/components/minecraft.breathable.json" },
|
||||
"minecraft:breedable": { "$ref": "../1.8.0/components/minecraft.breedable.json" },
|
||||
"minecraft:bribeable": { "$ref": "../1.8.0/components/minecraft.bribeable.json" },
|
||||
"minecraft:buoyant": { "$ref": "../1.8.0/components/minecraft.buoyant.json" },
|
||||
"minecraft:burns_in_daylight": { "$ref": "../1.8.0/components/minecraft.burns_in_daylight.json" },
|
||||
"minecraft:can_climb": { "$ref": "../1.8.0/components/minecraft.can_climb.json" },
|
||||
"minecraft:can_fly": { "$ref": "../1.8.0/components/minecraft.can_fly.json" },
|
||||
"minecraft:can_power_jump": { "$ref": "../1.8.0/components/minecraft.can_power_jump.json" },
|
||||
"minecraft:celebrate_hunt": { "$ref": "../1.8.0/components/minecraft.celebrate_hunt.json" },
|
||||
"minecraft:collision_box": { "$ref": "../1.8.0/components/minecraft.collision_box.json" },
|
||||
"minecraft:color": { "$ref": "../1.8.0/components/minecraft.color.json" },
|
||||
"minecraft:color2": { "$ref": "../1.8.0/components/minecraft.color2.json" },
|
||||
"minecraft:conditional_bandwidth_optimization": { "$ref": "../1.8.0/components/minecraft.conditional_bandwidth_optimization.json" },
|
||||
"minecraft:custom_hit_test": { "$ref": "../1.8.0/components/minecraft.custom_hit_test.json" },
|
||||
"minecraft:damage_over_time": { "$ref": "../1.8.0/components/minecraft.damage_over_time.json" },
|
||||
"minecraft:damage_sensor": { "$ref": "../1.8.0/components/minecraft.damage_sensor.json" },
|
||||
"minecraft:default_look_angle": { "$ref": "../1.8.0/components/minecraft.default_look_angle.json" },
|
||||
"minecraft:despawn": { "$ref": "../1.8.0/components/minecraft.despawn.json" },
|
||||
"minecraft:dweller": { "$ref": "../1.8.0/components/minecraft.dweller.json" },
|
||||
"minecraft:economy_trade_table": { "$ref": "../1.8.0/components/minecraft.economy_trade_table.json" },
|
||||
"minecraft:entity_sensor": { "$ref": "../1.8.0/components/minecraft.entity_sensor.json" },
|
||||
"minecraft:environment_sensor": { "$ref": "../1.8.0/components/minecraft.environment_sensor.json" },
|
||||
"minecraft:equip_item": { "$ref": "../1.8.0/components/minecraft.equip_item.json" },
|
||||
"minecraft:equipment": { "$ref": "../1.8.0/components/minecraft.equipment.json" },
|
||||
"minecraft:equippable": { "$ref": "../1.8.0/components/minecraft.equippable.json" },
|
||||
"minecraft:experience_reward": { "$ref": "../1.8.0/components/minecraft.experience_reward.json" },
|
||||
"minecraft:explode": { "$ref": "./components/minecraft.explode.json" },
|
||||
"minecraft:fall_damage": { "$ref": "../1.8.0/components/minecraft.fall_damage.json" },
|
||||
"minecraft:fire_immune": { "$ref": "../1.8.0/components/minecraft.fire_immune.json" },
|
||||
"minecraft:floats_in_liquid": { "$ref": "../1.8.0/components/minecraft.floats_in_liquid.json" },
|
||||
"minecraft:flocking": { "$ref": "../1.8.0/components/minecraft.flocking.json" },
|
||||
"minecraft:flying_speed": { "$ref": "../1.8.0/components/minecraft.flying_speed.json" },
|
||||
"minecraft:follow_range": { "$ref": "../1.8.0/components/minecraft.follow_range.json" },
|
||||
"minecraft:foot_size": { "$ref": "../1.8.0/components/minecraft.foot_size.json" },
|
||||
"minecraft:friction_modifier": { "$ref": "../1.8.0/components/minecraft.friction_modifier.json" },
|
||||
"minecraft:genetics": { "$ref": "../1.8.0/components/minecraft.genetics.json" },
|
||||
"minecraft:giveable": { "$ref": "../1.8.0/components/minecraft.giveable.json" },
|
||||
"minecraft:ground_offset": { "$ref": "../1.8.0/components/minecraft.ground_offset.json" },
|
||||
"minecraft:group_size": { "$ref": "../1.8.0/components/minecraft.group_size.json" },
|
||||
"minecraft:grows_crop": { "$ref": "../1.8.0/components/minecraft.grows_crop.json" },
|
||||
"minecraft:healable": { "$ref": "../1.8.0/components/minecraft.healable.json" },
|
||||
"minecraft:health": { "$ref": "../1.8.0/components/minecraft.health.json" },
|
||||
"minecraft:home": { "$ref": "../1.8.0/components/minecraft.home.json" },
|
||||
"minecraft:hurt_on_condition": { "$ref": "../1.8.0/components/minecraft.hurt_on_condition.json" },
|
||||
"minecraft:hurt_when_wet": { "$ref": "../1.8.0/components/minecraft.hurt_when_wet.json" },
|
||||
"minecraft:input_ground_controlled": { "$ref": "../1.8.0/components/minecraft.input_ground_controlled.json" },
|
||||
"minecraft:inside_block_notifier": { "$ref": "../1.8.0/components/minecraft.inside_block_notifier.json" },
|
||||
"minecraft:insomnia": { "$ref": "../1.8.0/components/minecraft.insomnia.json" },
|
||||
"minecraft:instant_despawn": { "$ref": "../1.8.0/components/minecraft.instant_despawn.json" },
|
||||
"minecraft:interact": { "$ref": "../1.8.0/components/minecraft.interact.json" },
|
||||
"minecraft:inventory": { "$ref": "../1.8.0/components/minecraft.inventory.json" },
|
||||
"minecraft:is_baby": { "$ref": "../1.8.0/components/minecraft.is_baby.json" },
|
||||
"minecraft:is_charged": { "$ref": "../1.8.0/components/minecraft.is_charged.json" },
|
||||
"minecraft:is_chested": { "$ref": "../1.8.0/components/minecraft.is_chested.json" },
|
||||
"minecraft:is_dyeable": { "$ref": "../1.8.0/components/minecraft.is_dyeable.json" },
|
||||
"minecraft:is_hidden_when_invisible": { "$ref": "../1.8.0/components/minecraft.is_hidden_when_invisible.json" },
|
||||
"minecraft:is_ignited": { "$ref": "../1.8.0/components/minecraft.is_ignited.json" },
|
||||
"minecraft:is_illager_captain": { "$ref": "../1.8.0/components/minecraft.is_illager_captain.json" },
|
||||
"minecraft:is_saddled": { "$ref": "../1.8.0/components/minecraft.is_saddled.json" },
|
||||
"minecraft:is_shaking": { "$ref": "../1.8.0/components/minecraft.is_shaking.json" },
|
||||
"minecraft:is_sheared": { "$ref": "../1.8.0/components/minecraft.is_sheared.json" },
|
||||
"minecraft:is_stackable": { "$ref": "../1.8.0/components/minecraft.is_stackable.json" },
|
||||
"minecraft:is_stunned": { "$ref": "../1.8.0/components/minecraft.is_stunned.json" },
|
||||
"minecraft:is_tamed": { "$ref": "../1.8.0/components/minecraft.is_tamed.json" },
|
||||
"minecraft:item_controllable": { "$ref": "../1.8.0/components/minecraft.item_controllable.json" },
|
||||
"minecraft:item_hopper": { "$ref": "../1.8.0/components/minecraft.item_hopper.json" },
|
||||
"minecraft:jump.dynamic": { "$ref": "../1.8.0/components/minecraft.jump.dynamic.json" },
|
||||
"minecraft:jump.static": { "$ref": "../1.8.0/components/minecraft.jump.static.json" },
|
||||
"minecraft:knockback_resistance": { "$ref": "../1.8.0/components/minecraft.knockback_resistance.json" },
|
||||
"minecraft:lava_movement": { "$ref": "../1.8.0/components/minecraft.lava_movement.json" },
|
||||
"minecraft:leashable": { "$ref": "../1.8.0/components/minecraft.leashable.json" },
|
||||
"minecraft:lookat": { "$ref": "../1.8.0/components/minecraft.lookat.json" },
|
||||
"minecraft:loot": { "$ref": "../1.8.0/components/minecraft.loot.json" },
|
||||
"minecraft:managed_wandering_trader": { "$ref": "../1.8.0/components/minecraft.managed_wandering_trader.json" },
|
||||
"minecraft:mark_variant": { "$ref": "../1.8.0/components/minecraft.mark_variant.json" },
|
||||
"minecraft:mob_effect": { "$ref": "../1.8.0/components/minecraft.mob_effect.json" },
|
||||
"minecraft:movement": { "$ref": "../1.8.0/components/minecraft.movement.json" },
|
||||
"minecraft:movement.amphibious": { "$ref": "../1.8.0/components/minecraft.movement.amphibious.json" },
|
||||
"minecraft:movement.basic": { "$ref": "../1.8.0/components/minecraft.movement.basic.json" },
|
||||
"minecraft:movement.fly": { "$ref": "../1.8.0/components/minecraft.movement.fly.json" },
|
||||
"minecraft:movement.generic": { "$ref": "../1.8.0/components/minecraft.movement.generic.json" },
|
||||
"minecraft:movement.glide": { "$ref": "../1.8.0/components/minecraft.movement.glide.json" },
|
||||
"minecraft:movement.hover": { "$ref": "../1.8.0/components/minecraft.movement.hover.json" },
|
||||
"minecraft:movement.jump": { "$ref": "../1.8.0/components/minecraft.movement.jump.json" },
|
||||
"minecraft:movement.skip": { "$ref": "../1.8.0/components/minecraft.movement.skip.json" },
|
||||
"minecraft:movement.sway": { "$ref": "../1.8.0/components/minecraft.movement.sway.json" },
|
||||
"minecraft:nameable": { "$ref": "../1.8.0/components/minecraft.nameable.json" },
|
||||
"minecraft:navigation.climb": { "$ref": "../1.8.0/components/minecraft.navigation.climb.json" },
|
||||
"minecraft:navigation.float": { "$ref": "../1.8.0/components/minecraft.navigation.float.json" },
|
||||
"minecraft:navigation.fly": { "$ref": "../1.8.0/components/minecraft.navigation.fly.json" },
|
||||
"minecraft:navigation.generic": { "$ref": "../1.8.0/components/minecraft.navigation.generic.json" },
|
||||
"minecraft:navigation.hover": { "$ref": "../1.8.0/components/minecraft.navigation.hover.json" },
|
||||
"minecraft:navigation.swim": { "$ref": "../1.8.0/components/minecraft.navigation.swim.json" },
|
||||
"minecraft:navigation.walk": { "$ref": "../1.8.0/components/minecraft.navigation.walk.json" },
|
||||
"minecraft:npc": { "$ref": "../1.8.0/components/minecraft.npc.json" },
|
||||
"minecraft:on_death": { "$ref": "../1.8.0/components/minecraft.on_death.json" },
|
||||
"minecraft:on_friendly_anger": { "$ref": "../1.8.0/components/minecraft.on_friendly_anger.json" },
|
||||
"minecraft:on_hurt": { "$ref": "../1.8.0/components/minecraft.on_hurt.json" },
|
||||
"minecraft:on_hurt_by_player": { "$ref": "../1.8.0/components/minecraft.on_hurt_by_player.json" },
|
||||
"minecraft:on_ignite": { "$ref": "../1.8.0/components/minecraft.on_ignite.json" },
|
||||
"minecraft:on_start_landing": { "$ref": "../1.8.0/components/minecraft.on_start_landing.json" },
|
||||
"minecraft:on_start_takeoff": { "$ref": "../1.8.0/components/minecraft.on_start_takeoff.json" },
|
||||
"minecraft:on_target_acquired": { "$ref": "../1.8.0/components/minecraft.on_target_acquired.json" },
|
||||
"minecraft:on_target_escape": { "$ref": "../1.8.0/components/minecraft.on_target_escape.json" },
|
||||
"minecraft:on_wake_with_owner": { "$ref": "../1.8.0/components/minecraft.on_wake_with_owner.json" },
|
||||
"minecraft:out_of_control": { "$ref": "../1.8.0/components/minecraft.out_of_control.json" },
|
||||
"minecraft:player.saturation": { "$ref": "../1.8.0/components/minecraft.player.saturation.json" },
|
||||
"minecraft:player.exhaustion": { "$ref": "../1.8.0/components/minecraft.player.exhaustion.json" },
|
||||
"minecraft:player.level": { "$ref": "../1.8.0/components/minecraft.player.level.json" },
|
||||
"minecraft:player.experience": { "$ref": "../1.8.0/components/minecraft.player.experience.json" },
|
||||
"minecraft:peek": { "$ref": "../1.8.0/components/minecraft.peek.json" },
|
||||
"minecraft:persistent": { "$ref": "../1.8.0/components/minecraft.persistent.json" },
|
||||
"minecraft:physics": { "$ref": "../1.8.0/components/minecraft.physics.json" },
|
||||
"minecraft:preferred_path": { "$ref": "../1.8.0/components/minecraft.preferred_path.json" },
|
||||
"minecraft:projectile": { "$ref": "./components/minecraft.projectile.json" },
|
||||
"minecraft:push_through": { "$ref": "../1.8.0/components/minecraft.push_through.json" },
|
||||
"minecraft:pushable": { "$ref": "../1.8.0/components/minecraft.pushable.json" },
|
||||
"minecraft:raid_trigger": { "$ref": "../1.8.0/components/minecraft.raid_trigger.json" },
|
||||
"minecraft:rail_movement": { "$ref": "../1.8.0/components/minecraft.rail_movement.json" },
|
||||
"minecraft:rail_sensor": { "$ref": "../1.8.0/components/minecraft.rail_sensor.json" },
|
||||
"minecraft:ravager_blocked": { "$ref": "../1.8.0/components/minecraft.ravager_blocked.json" },
|
||||
"minecraft:rideable": { "$ref": "../1.8.0/components/minecraft.rideable.json" },
|
||||
"minecraft:scaffolding_climber": { "$ref": "../1.8.0/components/minecraft.scaffolding_climber.json" },
|
||||
"minecraft:scale": { "$ref": "../1.8.0/components/minecraft.scale.json" },
|
||||
"minecraft:scale_by_age": { "$ref": "../1.8.0/components/minecraft.scale_by_age.json" },
|
||||
"minecraft:scheduler": { "$ref": "../1.8.0/components/minecraft.scheduler.json" },
|
||||
"minecraft:shareables": { "$ref": "../1.8.0/components/minecraft.shareables.json" },
|
||||
"minecraft:shooter": { "$ref": "../1.8.0/components/minecraft.shooter.json" },
|
||||
"minecraft:sittable": { "$ref": "../1.8.0/components/minecraft.sittable.json" },
|
||||
"minecraft:skin_id": { "$ref": "../1.8.0/components/minecraft.skin_id.json" },
|
||||
"minecraft:sound_volume": { "$ref": "../1.8.0/components/minecraft.sound_volume.json" },
|
||||
"minecraft:spawn_entity": { "$ref": "../1.8.0/components/minecraft.spawn_entity.json" },
|
||||
"minecraft:spell_effects": { "$ref": "../1.8.0/components/minecraft.spell_effects.json" },
|
||||
"minecraft:strength": { "$ref": "../1.8.0/components/minecraft.strength.json" },
|
||||
"minecraft:tameable": { "$ref": "../1.8.0/components/minecraft.tameable.json" },
|
||||
"minecraft:tamemount": { "$ref": "../1.8.0/components/minecraft.tamemount.json" },
|
||||
"minecraft:target_nearby_sensor": { "$ref": "../1.8.0/components/minecraft.target_nearby_sensor.json" },
|
||||
"minecraft:teleport": { "$ref": "../1.8.0/components/minecraft.teleport.json" },
|
||||
"minecraft:tick_world": { "$ref": "../1.8.0/components/minecraft.tick_world.json" },
|
||||
"minecraft:timer": { "$ref": "../1.8.0/components/minecraft.timer.json" },
|
||||
"minecraft:trade_table": { "$ref": "../1.8.0/components/minecraft.trade_table.json" },
|
||||
"minecraft:trail": { "$ref": "../1.8.0/components/minecraft.trail.json" },
|
||||
"minecraft:transformation": { "$ref": "../1.8.0/components/minecraft.transformation.json" },
|
||||
"minecraft:trust": { "$ref": "../1.8.0/components/minecraft.trust.json" },
|
||||
"minecraft:trusting": { "$ref": "../1.8.0/components/minecraft.trusting.json" },
|
||||
"minecraft:type_family": { "$ref": "../1.8.0/components/minecraft.type_family.json" },
|
||||
"minecraft:variant": { "$ref": "../1.8.0/components/minecraft.variant.json" },
|
||||
"minecraft:walk_animation_speed": { "$ref": "../1.8.0/components/minecraft.walk_animation_speed.json" },
|
||||
"minecraft:wants_jockey": { "$ref": "../1.8.0/components/minecraft.wants_jockey.json" },
|
||||
"minecraft:water_movement": { "$ref": "../1.8.0/components/minecraft.water_movement.json" },
|
||||
"minecraft:behavior.admire_item": { "$ref": "../1.8.0/behaviors/minecraft.behavior.admire_item.json" },
|
||||
"minecraft:behavior.avoid_mob_type": { "$ref": "../1.8.0/behaviors/minecraft.behavior.avoid_mob_type.json" },
|
||||
"minecraft:behavior.beg": { "$ref": "../1.8.0/behaviors/minecraft.behavior.beg.json" },
|
||||
"minecraft:behavior.break_door": { "$ref": "../1.8.0/behaviors/minecraft.behavior.break_door.json" },
|
||||
"minecraft:behavior.breed": { "$ref": "../1.8.0/behaviors/minecraft.behavior.breed.json" },
|
||||
"minecraft:behavior.celebrate": { "$ref": "../1.8.0/behaviors/minecraft.behavior.celebrate.json" },
|
||||
"minecraft:behavior.charge_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.charge_attack.json" },
|
||||
"minecraft:behavior.charge_held_item": { "$ref": "../1.8.0/behaviors/minecraft.behavior.charge_held_item.json" },
|
||||
"minecraft:behavior.circle_around_anchor": { "$ref": "../1.8.0/behaviors/minecraft.behavior.circle_around_anchor.json" },
|
||||
"minecraft:behavior.controlled_by_player": { "$ref": "../1.8.0/behaviors/minecraft.behavior.controlled_by_player.json" },
|
||||
"minecraft:behavior.defend_trusted_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.defend_trusted_target.json" },
|
||||
"minecraft:behavior.defend_village_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.defend_village_target.json" },
|
||||
"minecraft:behavior.delayed_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.delayed_attack.json" },
|
||||
"minecraft:behavior.door_interact": { "$ref": "../1.8.0/behaviors/minecraft.behavior.door_interact.json" },
|
||||
"minecraft:behavior.dragonchargeplayer": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonchargeplayer.json" },
|
||||
"minecraft:behavior.dragondeath": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragondeath.json" },
|
||||
"minecraft:behavior.dragonflaming": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonflaming.json" },
|
||||
"minecraft:behavior.dragonholdingpattern": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonholdingpattern.json" },
|
||||
"minecraft:behavior.dragonlanding": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonlanding.json" },
|
||||
"minecraft:behavior.dragonscanning": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonscanning.json" },
|
||||
"minecraft:behavior.dragonstrafeplayer": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonstrafeplayer.json" },
|
||||
"minecraft:behavior.dragontakeoff": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragontakeoff.json" },
|
||||
"minecraft:behavior.drink_potion": { "$ref": "../1.8.0/behaviors/minecraft.behavior.drink_potion.json" },
|
||||
"minecraft:behavior.drop_item_for": { "$ref": "../1.8.0/behaviors/minecraft.behavior.drop_item_for.json" },
|
||||
"minecraft:behavior.eat_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.eat_block.json" },
|
||||
"minecraft:behavior.eat_carried_item": { "$ref": "../1.8.0/behaviors/minecraft.behavior.eat_carried_item.json" },
|
||||
"minecraft:behavior.enderman_leave_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.enderman_leave_block.json" },
|
||||
"minecraft:behavior.enderman_take_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.enderman_take_block.json" },
|
||||
"minecraft:behavior.explore_outskirts": { "$ref": "../1.8.0/behaviors/minecraft.behavior.explore_outskirts.json" },
|
||||
"minecraft:behavior.find_cover": { "$ref": "../1.8.0/behaviors/minecraft.behavior.find_cover.json" },
|
||||
"minecraft:behavior.find_mount": { "$ref": "../1.8.0/behaviors/minecraft.behavior.find_mount.json" },
|
||||
"minecraft:behavior.find_underwater_treasure": { "$ref": "../1.8.0/behaviors/minecraft.behavior.find_underwater_treasure.json" },
|
||||
"minecraft:behavior.flee_sun": { "$ref": "../1.8.0/behaviors/minecraft.behavior.flee_sun.json" },
|
||||
"minecraft:behavior.float": { "$ref": "../1.8.0/behaviors/minecraft.behavior.float.json" },
|
||||
"minecraft:behavior.float_wander": { "$ref": "../1.8.0/behaviors/minecraft.behavior.float_wander.json" },
|
||||
"minecraft:behavior.follow_caravan": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_caravan.json" },
|
||||
"minecraft:behavior.follow_mob": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_mob.json" },
|
||||
"minecraft:behavior.follow_owner": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_owner.json" },
|
||||
"minecraft:behavior.follow_parent": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_parent.json" },
|
||||
"minecraft:behavior.follow_target_captain": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_target_captain.json" },
|
||||
"minecraft:behavior.go_home": { "$ref": "../1.8.0/behaviors/minecraft.behavior.go_home.json" },
|
||||
"minecraft:behavior.guardian_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.guardian_attack.json" },
|
||||
"minecraft:behavior.harvest_farm_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.harvest_farm_block.json" },
|
||||
"minecraft:behavior.hide": { "$ref": "../1.8.0/behaviors/minecraft.behavior.hide.json" },
|
||||
"minecraft:behavior.hold_ground": { "$ref": "../1.8.0/behaviors/minecraft.behavior.hold_ground.json" },
|
||||
"minecraft:behavior.hurt_by_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.hurt_by_target.json" },
|
||||
"minecraft:behavior.inspect_bookshelf": { "$ref": "../1.8.0/behaviors/minecraft.behavior.inspect_bookshelf.json" },
|
||||
"minecraft:behavior.knockback_roar": { "$ref": "../1.8.0/behaviors/minecraft.behavior.knockback_roar.json" },
|
||||
"minecraft:behavior.lay_down": { "$ref": "../1.8.0/behaviors/minecraft.behavior.lay_down.json" },
|
||||
"minecraft:behavior.lay_egg": { "$ref": "../1.8.0/behaviors/minecraft.behavior.lay_egg.json" },
|
||||
"minecraft:behavior.leap_at_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.leap_at_target.json" },
|
||||
"minecraft:behavior.look_at_entity": { "$ref": "../1.8.0/behaviors/minecraft.behavior.look_at_entity.json" },
|
||||
"minecraft:behavior.look_at_player": { "$ref": "../1.8.0/behaviors/minecraft.behavior.look_at_player.json" },
|
||||
"minecraft:behavior.look_at_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.look_at_target.json" },
|
||||
"minecraft:behavior.look_at_trading_player": { "$ref": "../1.8.0/behaviors/minecraft.behavior.look_at_trading_player.json" },
|
||||
"minecraft:behavior.make_love": { "$ref": "../1.8.0/behaviors/minecraft.behavior.make_love.json" },
|
||||
"minecraft:behavior.melee_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.melee_attack.json" },
|
||||
"minecraft:behavior.mingle": { "$ref": "../1.8.0/behaviors/minecraft.behavior.mingle.json" },
|
||||
"minecraft:behavior.mount_pathing": { "$ref": "../1.8.0/behaviors/minecraft.behavior.mount_pathing.json" },
|
||||
"minecraft:behavior.move_indoors": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_indoors.json" },
|
||||
"minecraft:behavior.move_through_village": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_through_village.json" },
|
||||
"minecraft:behavior.move_to_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_block.json" },
|
||||
"minecraft:behavior.move_to_land": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_land.json" },
|
||||
"minecraft:behavior.move_to_lava": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_lava.json" },
|
||||
"minecraft:behavior.move_to_liquid": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_liquid.json" },
|
||||
"minecraft:behavior.move_to_poi": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_poi.json" },
|
||||
"minecraft:behavior.move_to_random_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_random_block.json" },
|
||||
"minecraft:behavior.move_to_village": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_village.json" },
|
||||
"minecraft:behavior.move_to_water": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_water.json" },
|
||||
"minecraft:behavior.move_towards_dwelling_restriction": {
|
||||
"$ref": "../1.8.0/behaviors/minecraft.behavior.move_towards_dwelling_restriction.json"
|
||||
},
|
||||
"minecraft:behavior.move_towards_restriction": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_towards_restriction.json" },
|
||||
"minecraft:behavior.move_towards_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_towards_target.json" },
|
||||
"minecraft:behavior.nap": { "$ref": "../1.8.0/behaviors/minecraft.behavior.nap.json" },
|
||||
"minecraft:behavior.nearest_attackable_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.nearest_attackable_target.json" },
|
||||
"minecraft:behavior.nearest_prioritized_attackable_target": {
|
||||
"$ref": "../1.8.0/behaviors/minecraft.behavior.nearest_prioritized_attackable_target.json"
|
||||
},
|
||||
"minecraft:behavior.ocelot_sit_on_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.ocelot_sit_on_block.json" },
|
||||
"minecraft:behavior.ocelotattack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.ocelotattack.json" },
|
||||
"minecraft:behavior.offer_flower": { "$ref": "../1.8.0/behaviors/minecraft.behavior.offer_flower.json" },
|
||||
"minecraft:behavior.open_door": { "$ref": "../1.8.0/behaviors/minecraft.behavior.open_door.json" },
|
||||
"minecraft:behavior.owner_hurt_by_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.owner_hurt_by_target.json" },
|
||||
"minecraft:behavior.owner_hurt_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.owner_hurt_target.json" },
|
||||
"minecraft:behavior.panic": { "$ref": "../1.8.0/behaviors/minecraft.behavior.panic.json" },
|
||||
"minecraft:behavior.peek": { "$ref": "../1.8.0/behaviors/minecraft.behavior.peek.json" },
|
||||
"minecraft:behavior.pet_sleep_with_owner": { "$ref": "../1.8.0/behaviors/minecraft.behavior.pet_sleep_with_owner.json" },
|
||||
"minecraft:behavior.pickup_items": { "$ref": "../1.8.0/behaviors/minecraft.behavior.pickup_items.json" },
|
||||
"minecraft:behavior.play": { "$ref": "../1.8.0/behaviors/minecraft.behavior.play.json" },
|
||||
"minecraft:behavior.player_ride_tamed": { "$ref": "../1.8.0/behaviors/minecraft.behavior.player_ride_tamed.json" },
|
||||
"minecraft:behavior.raid_garden": { "$ref": "../1.8.0/behaviors/minecraft.behavior.raid_garden.json" },
|
||||
"minecraft:behavior.random_breach": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_breach.json" },
|
||||
"minecraft:behavior.random_fly": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_fly.json" },
|
||||
"minecraft:behavior.random_hover": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_hover.json" },
|
||||
"minecraft:behavior.random_look_around": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_look_around.json" },
|
||||
"minecraft:behavior.random_look_around_and_sit": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_look_around_and_sit.json" },
|
||||
"minecraft:behavior.random_sitting": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_sitting.json" },
|
||||
"minecraft:behavior.random_stroll": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_stroll.json" },
|
||||
"minecraft:behavior.random_swim": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_swim.json" },
|
||||
"minecraft:behavior.ranged_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.ranged_attack.json" },
|
||||
"minecraft:behavior.receive_love": { "$ref": "../1.8.0/behaviors/minecraft.behavior.receive_love.json" },
|
||||
"minecraft:behavior.restrict_open_door": { "$ref": "../1.8.0/behaviors/minecraft.behavior.restrict_open_door.json" },
|
||||
"minecraft:behavior.restrict_sun": { "$ref": "../1.8.0/behaviors/minecraft.behavior.restrict_sun.json" },
|
||||
"minecraft:behavior.rise_to_liquid_level": { "$ref": "../1.8.0/behaviors/minecraft.behavior.rise_to_liquid_level.json" },
|
||||
"minecraft:behavior.roll": { "$ref": "../1.8.0/behaviors/minecraft.behavior.roll.json" },
|
||||
"minecraft:behavior.run_around_like_crazy": { "$ref": "../1.8.0/behaviors/minecraft.behavior.run_around_like_crazy.json" },
|
||||
"minecraft:behavior.scared": { "$ref": "../1.8.0/behaviors/minecraft.behavior.scared.json" },
|
||||
"minecraft:behavior.send_event": { "$ref": "../1.8.0/behaviors/minecraft.behavior.send_event.json" },
|
||||
"minecraft:behavior.share_items": { "$ref": "../1.8.0/behaviors/minecraft.behavior.share_items.json" },
|
||||
"minecraft:behavior.silverfish_merge_with_stone": { "$ref": "../1.8.0/behaviors/minecraft.behavior.silverfish_merge_with_stone.json" },
|
||||
"minecraft:behavior.silverfish_wake_up_friends": { "$ref": "../1.8.0/behaviors/minecraft.behavior.silverfish_wake_up_friends.json" },
|
||||
"minecraft:behavior.skeleton_horse_trap": { "$ref": "../1.8.0/behaviors/minecraft.behavior.skeleton_horse_trap.json" },
|
||||
"minecraft:behavior.sleep": { "$ref": "../1.8.0/behaviors/minecraft.behavior.sleep.json" },
|
||||
"minecraft:behavior.slime_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.slime_attack.json" },
|
||||
"minecraft:behavior.slime_float": { "$ref": "../1.8.0/behaviors/minecraft.behavior.slime_float.json" },
|
||||
"minecraft:behavior.slime_keep_on_jumping": { "$ref": "../1.8.0/behaviors/minecraft.behavior.slime_keep_on_jumping.json" },
|
||||
"minecraft:behavior.slime_random_direction": { "$ref": "../1.8.0/behaviors/minecraft.behavior.slime_random_direction.json" },
|
||||
"minecraft:behavior.snacking": { "$ref": "../1.8.0/behaviors/minecraft.behavior.snacking.json" },
|
||||
"minecraft:behavior.sneeze": { "$ref": "../1.8.0/behaviors/minecraft.behavior.sneeze.json" },
|
||||
"minecraft:behavior.squid_dive": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_dive.json" },
|
||||
"minecraft:behavior.squid_flee": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_flee.json" },
|
||||
"minecraft:behavior.squid_idle": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_idle.json" },
|
||||
"minecraft:behavior.squid_move_away_from_ground": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_move_away_from_ground.json" },
|
||||
"minecraft:behavior.squid_out_of_water": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_out_of_water.json" },
|
||||
"minecraft:behavior.stalk_and_pounce_on_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.stalk_and_pounce_on_target.json" },
|
||||
"minecraft:behavior.stay_while_sitting": { "$ref": "../1.8.0/behaviors/minecraft.behavior.stay_while_sitting.json" },
|
||||
"minecraft:behavior.stomp_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.stomp_attack.json" },
|
||||
"minecraft:behavior.stomp_turtle_egg": { "$ref": "../1.8.0/behaviors/minecraft.behavior.stomp_turtle_egg.json" },
|
||||
"minecraft:behavior.stroll_towards_village": { "$ref": "../1.8.0/behaviors/minecraft.behavior.stroll_towards_village.json" },
|
||||
"minecraft:behavior.summon_entity": { "$ref": "../1.8.0/behaviors/minecraft.behavior.summon_entity.json" },
|
||||
"minecraft:behavior.swell": { "$ref": "../1.8.0/behaviors/minecraft.behavior.swell.json" },
|
||||
"minecraft:behavior.swim_wander": { "$ref": "../1.8.0/behaviors/minecraft.behavior.swim_wander.json" },
|
||||
"minecraft:behavior.swim_with_entity": { "$ref": "../1.8.0/behaviors/minecraft.behavior.swim_with_entity.json" },
|
||||
"minecraft:behavior.swoop_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.swoop_attack.json" },
|
||||
"minecraft:behavior.take_flower": { "$ref": "../1.8.0/behaviors/minecraft.behavior.take_flower.json" },
|
||||
"minecraft:behavior.target_when_pushed": { "$ref": "../1.8.0/behaviors/minecraft.behavior.target_when_pushed.json" },
|
||||
"minecraft:behavior.tempt": { "$ref": "../1.8.0/behaviors/minecraft.behavior.tempt.json" },
|
||||
"minecraft:behavior.trade_interest": { "$ref": "../1.8.0/behaviors/minecraft.behavior.trade_interest.json" },
|
||||
"minecraft:behavior.trade_with_player": { "$ref": "../1.8.0/behaviors/minecraft.behavior.trade_with_player.json" },
|
||||
"minecraft:behavior.vex_copy_owner_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.vex_copy_owner_target.json" },
|
||||
"minecraft:behavior.vex_random_move": { "$ref": "../1.8.0/behaviors/minecraft.behavior.vex_random_move.json" },
|
||||
"minecraft:behavior.wither_random_attack_pos_goal": { "$ref": "../1.8.0/behaviors/minecraft.behavior.wither_random_attack_pos_goal.json" },
|
||||
"minecraft:behavior.wither_target_highest_damage": { "$ref": "../1.8.0/behaviors/minecraft.behavior.wither_target_highest_damage.json" },
|
||||
"minecraft:behavior.work": { "$ref": "../1.8.0/behaviors/minecraft.behavior.work.json" }
|
||||
}
|
||||
}
|
||||
90
behaviour/entities/1.12.0/components/minecraft.explode.json
Normal file
90
behaviour/entities/1.12.0/components/minecraft.explode.json
Normal file
@@ -0,0 +1,90 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.12.0.minecraft.explode",
|
||||
"type": "object",
|
||||
"title": "Explode 1.12.0",
|
||||
"additionalProperties": false,
|
||||
"description": "Defines how the entity explodes.",
|
||||
"required": [],
|
||||
"properties": {
|
||||
"breaks_blocks": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "If true, the explosion will destroy blocks in the explosion radius.",
|
||||
"title": "Breaks blocks"
|
||||
},
|
||||
"causes_fire": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, blocks in the explosion radius will be set on fire.",
|
||||
"title": "Causes fire"
|
||||
},
|
||||
"destroy_affected_by_griefing": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, whether the explosion breaks blocks is affected by the mob griefing game rule.",
|
||||
"title": "Destroy affected by griefing"
|
||||
},
|
||||
"fire_affected_by_griefing": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, whether the explosion causes fire is affected by the mob griefing game rule.",
|
||||
"title": "Fire affected by griefing"
|
||||
},
|
||||
"fuse_length": {
|
||||
"default": [0.0, 0.0],
|
||||
"description": "The range for the random amount of time the fuse will be lit before exploding, a negative value means the explosion will be immediate.",
|
||||
"title": "Fuse length",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": [
|
||||
{
|
||||
"type": "number"
|
||||
},
|
||||
{
|
||||
"type": "number"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "number"
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"range_min": {
|
||||
"type": "number",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"range_max": {
|
||||
"type": "number",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"fuse_lit": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the fuse is already lit when this component is added to the entity.",
|
||||
"title": "Fuse lit"
|
||||
},
|
||||
"max_resistance": {
|
||||
"type": "number",
|
||||
"default": 3.40282e38,
|
||||
"description": "A blocks explosion resistance will be capped at this value when an explosion occurs.",
|
||||
"title": "Max resistance"
|
||||
},
|
||||
"power": {
|
||||
"type": "number",
|
||||
"default": 3,
|
||||
"description": "The radius of the explosion in blocks and the amount of damage the explosion deals.",
|
||||
"title": "Power"
|
||||
}
|
||||
}
|
||||
}
|
||||
521
behaviour/entities/1.12.0/components/minecraft.projectile.json
Normal file
521
behaviour/entities/1.12.0/components/minecraft.projectile.json
Normal file
@@ -0,0 +1,521 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.12.0.minecraft.projectile",
|
||||
"description": "Allows the entity to be a thrown entity.",
|
||||
"type": "object",
|
||||
"title": "Projectile 1.12.0",
|
||||
"additionalProperties": false,
|
||||
"required": [],
|
||||
"properties": {
|
||||
"anchor": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"angle_offset": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "Determines the angle at which the projectile is thrown",
|
||||
"title": "Angle offset"
|
||||
},
|
||||
"catch_fire": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the entity hit will be set on fire",
|
||||
"title": "Catch fire"
|
||||
},
|
||||
"crit_particle_on_hurt": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the projectile will produce additional particles when a critical hit happens",
|
||||
"title": "Crit particle on hurt"
|
||||
},
|
||||
"destroy_on_hurt": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, this entity will be destroyed when hit",
|
||||
"title": "Destroy on hurt"
|
||||
},
|
||||
"filter": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Entity Definitions defined here can't be hurt by the projectile",
|
||||
"title": "Filter"
|
||||
},
|
||||
"fire_affected_by_griefing": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, whether the projectile causes fire is affected by the mob griefing game rule",
|
||||
"title": "Fire affected by griefing"
|
||||
},
|
||||
"gravity": {
|
||||
"type": "number",
|
||||
"default": 0.05,
|
||||
"description": "The gravity applied to this entity when thrown. The higher the value, the faster the entity falls",
|
||||
"title": "Gravity"
|
||||
},
|
||||
"hit_sound": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "The sound that plays when the projectile hits something",
|
||||
"title": "Hit sound"
|
||||
},
|
||||
"hit_ground_sound": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"homing": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the projectile homes in to the nearest entity",
|
||||
"title": "Homing"
|
||||
},
|
||||
"inertia": {
|
||||
"type": "number",
|
||||
"default": 0.99,
|
||||
"description": "The fraction of the projectile's speed maintained every frame while traveling in air",
|
||||
"title": "Inertia"
|
||||
},
|
||||
"is_dangerous": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the projectile will be treated as dangerous to the players",
|
||||
"title": "Is dangerous"
|
||||
},
|
||||
"knockback": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "If true, the projectile will knock back the entity it hits",
|
||||
"title": "Knockback"
|
||||
},
|
||||
"lightning": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the entity hit will be struck by lightning",
|
||||
"title": "Lightning"
|
||||
},
|
||||
"liquid_inertia": {
|
||||
"type": "number",
|
||||
"default": 0.6,
|
||||
"description": "The fraction of the projectile's speed maintained every frame while traveling in water",
|
||||
"title": "Liquid inertia"
|
||||
},
|
||||
"multiple_targets": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "If true, the projectile can hit multiple entities per flight",
|
||||
"title": "Multiple targets"
|
||||
},
|
||||
"offset": {
|
||||
"type": "array",
|
||||
"default": [0, 0.5, 0],
|
||||
"description": "The offset from the entity's anchor where the projectile will spawn",
|
||||
"title": "Offset",
|
||||
"items": [
|
||||
{
|
||||
"type": "number",
|
||||
"description": "X",
|
||||
"title": "X"
|
||||
},
|
||||
{
|
||||
"type": "number",
|
||||
"description": "Y",
|
||||
"title": "Y"
|
||||
},
|
||||
{
|
||||
"type": "number",
|
||||
"description": "Z",
|
||||
"title": "Z"
|
||||
}
|
||||
]
|
||||
},
|
||||
"on_fire_time": {
|
||||
"type": "number",
|
||||
"default": 5,
|
||||
"description": "Time in seconds that the entity hit will be on fire for",
|
||||
"title": "On fire time"
|
||||
},
|
||||
"on_hit": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"properties": {
|
||||
"catch_fire": {
|
||||
"additionalProperties": false,
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"fire_affected_by_griefing": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
},
|
||||
"definition_event": {
|
||||
"additionalProperties": false,
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"affect_projectile": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"event_trigger": {
|
||||
"$ref": "../types/event.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"douse_fire": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"grant_xp": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"effect": "levitation",
|
||||
"properties": {
|
||||
"minXP": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"maxXP": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
},
|
||||
"impact_damage": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"properties": {
|
||||
"catch_fire": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"damage": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"destroy_on_hit": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"knockback": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"semi_random_diff_damage": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
},
|
||||
"mob_effect": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"effect": "levitation",
|
||||
"properties": {
|
||||
"effect": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"durationeasy": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"durationnormal": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"durationhard": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"amplifier": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
},
|
||||
"particle_on_hit": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"properties": {
|
||||
"particle_type": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"num_particles": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"on_entity_hit": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"on_other_hit": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
},
|
||||
"remove_on_hit": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"spawn_chance": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"properties": {
|
||||
"first_spawn_percent_chance": {
|
||||
"type": "number",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"first_spawn_chance": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"second_spawn_chance": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"first_spawn_count": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"second_spawn_count": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"spawn_definition": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"spawn_baby": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
},
|
||||
"spawn_aoe_cloud": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"properties": {
|
||||
"radius": {
|
||||
"type": "number",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"radius_on_use": {
|
||||
"type": "number",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"potion": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"particle": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"duration": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"color": {
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"type": "array",
|
||||
"format": "color-array",
|
||||
"items": [
|
||||
{
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"maximum": 255,
|
||||
"description": "R",
|
||||
"title": "R"
|
||||
},
|
||||
{
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"maximum": 255,
|
||||
"description": "G",
|
||||
"title": "G"
|
||||
},
|
||||
{
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"maximum": 255,
|
||||
"description": "B",
|
||||
"title": "B"
|
||||
}
|
||||
]
|
||||
},
|
||||
"affect_owner": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"reapplication_delay": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
},
|
||||
"stick_in_ground": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"properties": {
|
||||
"shake_time": {
|
||||
"type": "integer",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
},
|
||||
"teleport_owner": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"thrown_potion_effect": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
},
|
||||
"particle": {
|
||||
"type": "string",
|
||||
"default": "iconcrack",
|
||||
"description": "Particle to use upon collision",
|
||||
"title": "Particle"
|
||||
},
|
||||
"potion_effect": {
|
||||
"type": "integer",
|
||||
"default": -1,
|
||||
"description": "Defines the effect the arrow will apply to the entity it hits",
|
||||
"title": "Potion effect"
|
||||
},
|
||||
"power": {
|
||||
"type": "number",
|
||||
"default": 1.3,
|
||||
"description": "Determines the velocity of the projectile",
|
||||
"title": "Power"
|
||||
},
|
||||
"reflect_on_hurt": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, this entity will be reflected back when hit",
|
||||
"title": "Reflect on hurt"
|
||||
},
|
||||
"semi_random_diff_damage": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, damage will be randomized based on damage and speed",
|
||||
"title": "Semi random diff damage"
|
||||
},
|
||||
"shoot_sound": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "The sound that plays when the projectile is shot",
|
||||
"title": "Shoot sound"
|
||||
},
|
||||
"shoot_target": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "If true, the projectile will be shot towards the target of the entity firing it",
|
||||
"title": "Shoot target"
|
||||
},
|
||||
"should_bounce": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the projectile will bounce upon hit",
|
||||
"title": "Should bounce"
|
||||
},
|
||||
"splash_potion": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the projectile will be treated like a splash potion",
|
||||
"title": "Splash potion"
|
||||
},
|
||||
"splash_range": {
|
||||
"type": "number",
|
||||
"default": 4,
|
||||
"description": "Radius in blocks of the 'splash' effect",
|
||||
"title": "Splash range"
|
||||
},
|
||||
"stop_on_hurt": {
|
||||
"type": "boolean",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"uncertainty_base": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "The base accuracy. Accuracy is determined by the formula uncertaintyBase - difficultyLevel * uncertaintyMultiplier",
|
||||
"title": "Uncertainty base"
|
||||
},
|
||||
"uncertainty_multiplier": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "Determines how much difficulty affects accuracy. Accuracy is determined by the formula uncertaintyBase - difficultyLevel * uncertaintyMultiplier",
|
||||
"title": "Uncertainty multiplier"
|
||||
}
|
||||
}
|
||||
}
|
||||
18
behaviour/entities/1.12.0/entities.json
Normal file
18
behaviour/entities/1.12.0/entities.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entity1.10.0",
|
||||
"type": "object",
|
||||
"title": "The minecraft behaviour entity 1.12.0",
|
||||
"description": "TODO description",
|
||||
"required": ["format_version", "minecraft:entity"],
|
||||
"properties": {
|
||||
"format_version": {
|
||||
"title": "The 1.12.0 format_version",
|
||||
"type": "string",
|
||||
"const": "1.12.0",
|
||||
"description": "A version that tells minecraft what type of data format can be expected when reading this file."
|
||||
},
|
||||
"minecraft:entity": { "$ref": "minecraft.entity.json", "description": "TODO description: minecraft:entity", "title": "Entity" }
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
133
behaviour/entities/1.12.0/events.json
Normal file
133
behaviour/entities/1.12.0/events.json
Normal file
@@ -0,0 +1,133 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.events1.12.0",
|
||||
"type": "object",
|
||||
"title": "Entity 1.12.0",
|
||||
"definitions": {
|
||||
"addremove": {
|
||||
"additionalProperties": false,
|
||||
"title": "The add/remove schema",
|
||||
"description": "The components groups to add or remove",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"component_groups": {
|
||||
"title": "The component groups schema",
|
||||
"description": "The components groups to add or remove",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"description": "TODO description: component groups",
|
||||
"title": "Component Groups"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"event_base": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"add": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: add",
|
||||
"title": "Add"
|
||||
},
|
||||
"remove": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: remove",
|
||||
"title": "Remove"
|
||||
},
|
||||
"randomize": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"required": ["weight"],
|
||||
"properties": {
|
||||
"add": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: add",
|
||||
"title": "Add"
|
||||
},
|
||||
"remove": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: remove",
|
||||
"title": "Remove"
|
||||
},
|
||||
"trigger": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"weight": {
|
||||
"type": "number",
|
||||
"description": "TODO description: weight",
|
||||
"title": "Weight"
|
||||
}
|
||||
},
|
||||
"description": "TODO description: randomize",
|
||||
"title": "Randomize"
|
||||
},
|
||||
"description": "TODO description: randomize",
|
||||
"title": "Randomize"
|
||||
},
|
||||
"sequence": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "TODO description: sequence",
|
||||
"title": "Sequence",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"add": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: add",
|
||||
"title": "Add"
|
||||
},
|
||||
"remove": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: remove",
|
||||
"title": "Remove"
|
||||
},
|
||||
"filters": {
|
||||
"$ref": "./filters.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"description": "A series of filters and components to be added",
|
||||
"title": "Sequences"
|
||||
},
|
||||
"filters": {
|
||||
"$ref": "./filters.json"
|
||||
},
|
||||
"trigger": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"minecraft:entity_transformed": {
|
||||
"description": "Event called on an entity that transforms into another entity.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "Entity Transformed"
|
||||
},
|
||||
"minecraft:minecraft:entity_born": {
|
||||
"description": "Event called on an entity that is spawned through two entities breeding.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "Minecraft:entity Born"
|
||||
},
|
||||
"minecraft:entity_spawned": {
|
||||
"description": "Event called on an entity that is placed in the level.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "Entity Spawned"
|
||||
},
|
||||
"minecraft:on_prime": {
|
||||
"description": "Event called on an entity whose fuse is lit and is ready to explode.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "On Prime"
|
||||
}
|
||||
},
|
||||
"additionalProperties": {
|
||||
"$ref": "#/definitions/event_base"
|
||||
},
|
||||
"description": "TODO description: "
|
||||
}
|
||||
260
behaviour/entities/1.12.0/filters.json
Normal file
260
behaviour/entities/1.12.0/filters.json
Normal file
@@ -0,0 +1,260 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.12.0.minecraft.filters",
|
||||
"title": "Filters 1.12.0",
|
||||
"definitions": {
|
||||
"filters_spec": {
|
||||
"oneOf": [
|
||||
{
|
||||
"propertyNames": {
|
||||
"enum": ["all_of", "any_of", "none_of"]
|
||||
},
|
||||
"properties": {
|
||||
"all_of": {
|
||||
"title": "All of",
|
||||
"description": "All tests in an 'all_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"any_of": {
|
||||
"title": "Any of",
|
||||
"description": "One or more tests in an 'any_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"none_of": {
|
||||
"title": "None of",
|
||||
"description": "All tests in a 'none_of' group must fail in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"required": ["test"],
|
||||
"properties": {
|
||||
"all_of": {
|
||||
"title": "All of",
|
||||
"description": "All tests in an 'all_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"any_of": {
|
||||
"title": "Any of",
|
||||
"description": "One or more tests in an 'any_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"none_of": {
|
||||
"title": "None of",
|
||||
"description": "All tests in a 'none_of' group must fail in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
}
|
||||
},
|
||||
"allOf": [
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "clock_time" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/clock_time.json" }
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": { "test": { "const": "distance_to_nearest_player" } }
|
||||
},
|
||||
"then": { "$ref": "../1.8.0/filters/distance_to_nearest_player.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_ability" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_ability.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_biome_tag" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_biome_tag.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_component" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_component.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_damage" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_damage.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_equipment" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_equipment.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_mob_effect" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_mob_effect.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_tag" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_tag.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_trade_supply" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_trade_supply.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "hourly_clock_time" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/hourly_clock_time.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_caravan" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_caravan.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_clouds" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_clouds.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_lava" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_lava.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_water" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_water.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_water_or_rain" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_water_or_rain.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_altitude" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_altitude.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_avoiding_mobs" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_avoiding_mobs.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_biome" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_biome.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_brightness" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_brightness.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_climbing" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_climbing.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_color" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_color.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_daytime" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_daytime.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_difficulty" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_difficulty.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_family" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_family.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_game_rule" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_game_rule.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_humid" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_humid.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_immobile" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_immobile.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_in_village" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_in_village.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_leashed" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_leashed.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_mark_variant" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_mark_variant.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_moving" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_moving.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_owner" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_owner.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_riding" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_riding.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_skin_id" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_skin_id.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_sneaking" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_sneaking.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_snow_covered" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_snow_covered.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_target" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_target.json" }
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": { "test": { "const": "is_temperature_type" } }
|
||||
},
|
||||
"then": { "$ref": "../1.8.0/filters/is_temperature_type.json" }
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": { "test": { "const": "is_temperature_value" } }
|
||||
},
|
||||
"then": { "$ref": "../1.8.0/filters/is_temperature_value.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_underground" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_underground.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_underwater" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_underwater.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_variant" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_variant.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_visible" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_visible.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "moon_intensity" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/moon_intensity.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "moon_phase" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/moon_phase.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "on_ground" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/on_ground.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "on_ladder" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/on_ladder.json" }
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"groups_spec": {
|
||||
"oneOf": [
|
||||
{ "type": "array", "items": { "$ref": "#/definitions/groups_spec" } },
|
||||
{ "type": "object", "$ref": "#/definitions/filters_spec" }
|
||||
]
|
||||
}
|
||||
},
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
}
|
||||
104
behaviour/entities/1.12.0/minecraft.entity.json
Normal file
104
behaviour/entities/1.12.0/minecraft.entity.json
Normal file
@@ -0,0 +1,104 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.minecraft:entity",
|
||||
"title": "Entity 1.12.0",
|
||||
"required": ["description"],
|
||||
"properties": {
|
||||
"description": {
|
||||
"required": ["identifier"],
|
||||
"title": "Description",
|
||||
"description": "The description of the this entity",
|
||||
"properties": {
|
||||
"animations": {
|
||||
"title": "Animations",
|
||||
"description": "Sets the mapping of internal animation / animation controllers references to actual animations. This is a JSON Object of name/animation pairs",
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"title": "Animation (controller)",
|
||||
"description": "The name of the animation controller / animation",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"identifier": {
|
||||
"$ref": "../../../general/entity/identifier.json",
|
||||
"description": "Sets the identifier for this entity's description.",
|
||||
"title": "Identifier"
|
||||
},
|
||||
"is_spawnable": {
|
||||
"type": "boolean",
|
||||
"title": "Is spawnable",
|
||||
"description": "Sets whether or not this entity has a spawn egg in the creative ui."
|
||||
},
|
||||
"is_summonable": {
|
||||
"type": "boolean",
|
||||
"title": "The is summonable property",
|
||||
"description": "Sets whether or not we can summon this entity using commands such as /summon."
|
||||
},
|
||||
"is_experimental": {
|
||||
"type": "boolean",
|
||||
"title": "Is experimental",
|
||||
"description": "Sets whether or not this entity is experimental. Experimental entities are only enabled when the experimental toggle is enabled."
|
||||
},
|
||||
"runtime_identifier": {
|
||||
"type": "string",
|
||||
"title": "Runtime identifier",
|
||||
"description": "Sets the name for the Vanilla Minecraft identifier this entity will use to build itself from."
|
||||
},
|
||||
"scripts": {
|
||||
"type": "object",
|
||||
"title": "Scripts",
|
||||
"description": "Sets the mapping of internal animation controller references to actual animation controller. This is a JSON Array of name/animation-controller pairs",
|
||||
"properties": {
|
||||
"animate": {
|
||||
"type": "array",
|
||||
"title": "Animate",
|
||||
"description": "Tells minecraft to run which animation / animation controllers and under what conditions",
|
||||
"items": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"title": "Animation",
|
||||
"description": "The name of an animation controller referenced in animations"
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"title": "Conditional Animation",
|
||||
"description": "TODO",
|
||||
"additionalProperties": {
|
||||
"type": "string",
|
||||
"title": "Animation"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"component_groups": {
|
||||
"title": "Component groups",
|
||||
"description": "Each group when add / remove the default components",
|
||||
"uniqueItems": true,
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"$ref": "components.json",
|
||||
"uniqueItems": true,
|
||||
"description": "The components that are added as the foundation of the entity",
|
||||
"title": "The component schema"
|
||||
}
|
||||
},
|
||||
"components": {
|
||||
"$ref": "components.json",
|
||||
"uniqueItems": true,
|
||||
"description": "The components that are added as the foundation of the entity",
|
||||
"title": "The component schema"
|
||||
},
|
||||
"events": {
|
||||
"$ref": "events.json",
|
||||
"uniqueItems": true,
|
||||
"description": "The events that the entity can run, these add or remove components_groups",
|
||||
"title": "The events schema"
|
||||
}
|
||||
}
|
||||
}
|
||||
44
behaviour/entities/1.12.0/types/entity_types.json
Normal file
44
behaviour/entities/1.12.0/types/entity_types.json
Normal file
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.type.entity_types.1.12.0",
|
||||
"title": "Entity types 1.12.0",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "The entity type",
|
||||
"title": "The entity type",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"filters": { "type": "object", "$ref": "../filters.json" },
|
||||
"max_dist": {
|
||||
"type": "number",
|
||||
"description": "Maximum distance this mob can be away to be a valid choice",
|
||||
"default": 16,
|
||||
"title": "Max Dist"
|
||||
},
|
||||
"walk_speed_multiplier": {
|
||||
"type": "number",
|
||||
"description": "Multiplier for the walking speed. A value of 1.0 means the speed is unchanged",
|
||||
"default": 16,
|
||||
"title": "Walk Speed Multiplier"
|
||||
},
|
||||
"sprint_speed_multiplier": {
|
||||
"type": "number",
|
||||
"description": "Multiplier for the running speed. A value of 1.0 means the speed is unchanged",
|
||||
"default": 16,
|
||||
"title": "Sprint Speed Multiplier"
|
||||
},
|
||||
"must_see": {
|
||||
"type": "boolean",
|
||||
"description": "If true, the mob has to be visible to be a valid choice",
|
||||
"default": false,
|
||||
"title": "Must See"
|
||||
},
|
||||
"must_see_forget_duration": {
|
||||
"type": "number",
|
||||
"description": "Determines the amount of time in seconds that this mob will look for a target before forgetting about it and looking for a new one when the target isn't visible any more",
|
||||
"default": 3,
|
||||
"title": "Must See Forget Duration"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
29
behaviour/entities/1.12.0/types/event.json
Normal file
29
behaviour/entities/1.12.0/types/event.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.entities.1.12.0.event",
|
||||
"title": "Event",
|
||||
"description": "Minecraft behaviour event 1.12.0",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"pattern": "^[a-zA-Z0-9_\\-:]+$",
|
||||
"description": "The event to fire"
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"event": {
|
||||
"type": "string",
|
||||
"pattern": "^[a-zA-Z0-9_\\-:]+$",
|
||||
"description": "The event to fire",
|
||||
"title": "Event"
|
||||
},
|
||||
"target": {
|
||||
"type": "string",
|
||||
"description": "The target of the event",
|
||||
"enum": ["block", "damager", "other", "parent", "player", "self", "target"]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
10
behaviour/entities/1.12.0/types/range_number_type.json
Normal file
10
behaviour/entities/1.12.0/types/range_number_type.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.type.range_number_type.1.12.0",
|
||||
"title": "Range [a, b]",
|
||||
"description": "A described range",
|
||||
"items": [
|
||||
{ "type": "number", "title": "Range: A", "description": "The first value of the range" },
|
||||
{ "type": "number", "title": "Range: B", "description": "The second value of the range" }
|
||||
]
|
||||
}
|
||||
18
behaviour/entities/1.12.0/types/trigger.json
Normal file
18
behaviour/entities/1.12.0/types/trigger.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.type.trigger.1.12.0",
|
||||
"title": "Trigger1.12.0",
|
||||
"type": "object",
|
||||
"description": "Trigger to fire",
|
||||
"minProperties": 1,
|
||||
"properties": {
|
||||
"event": {
|
||||
"type": "string",
|
||||
"description": "Event",
|
||||
"title": "The event to fire"
|
||||
},
|
||||
"filters": { "$ref": "../filters.json", "description": "The filters to check to determine if the event should be fired", "title": "Filters" },
|
||||
"target": { "$ref": "../filters/types/base_subject.json", "description": "The entity to target", "title": "Target" }
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.behavior.find_mount",
|
||||
"type": "object",
|
||||
"title": "Behavior.find_mount 1.8.0",
|
||||
"description": "Allows the mob to look around for another mob to ride atop it.",
|
||||
"additionalProperties": false,
|
||||
"required": [],
|
||||
"properties": {
|
||||
"priority": {
|
||||
"ref": "types/base_priority.json"
|
||||
},
|
||||
"avoid_water": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the mob will not go into water blocks when going towards a mount",
|
||||
"title": "Avoid water"
|
||||
},
|
||||
"mount_distance": {
|
||||
"type": "number",
|
||||
"default": -1,
|
||||
"description": "This is the distance the mob needs to be, in blocks, from the desired mount to mount it. If the value is below 0, the mob will use its default attack distance",
|
||||
"title": "Mount distance"
|
||||
},
|
||||
"start_delay": {
|
||||
"type": "integer",
|
||||
"default": 0,
|
||||
"description": "Time the mob will wait before starting to move towards the mount",
|
||||
"title": "Start delay"
|
||||
},
|
||||
"target_needed": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the mob will only look for a mount if it has a target",
|
||||
"title": "Target needed"
|
||||
},
|
||||
"within_radius": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "Distance in blocks within which the mob will look for a mount",
|
||||
"title": "Within radius"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.behavior.go_home",
|
||||
"type": "object",
|
||||
"title": "Behavior.go_home 1.13.0",
|
||||
"description": "Allows the mob to move back to the position they were spawned.",
|
||||
"additionalProperties": false,
|
||||
"required": [],
|
||||
"properties": {
|
||||
"priority": { "ref": "types/base_priority.json" },
|
||||
"speed_multiplier": { "ref": "types/base_speed_multiplier.json" },
|
||||
"goal_radius": {
|
||||
"type": "number",
|
||||
"default": 0.5,
|
||||
"description": "Distance in blocks within the mob considers it has reached the goal. This is the \"wiggle room\" to stop the AI from bouncing back and forth trying to reach a specific spot",
|
||||
"title": "Goal radius"
|
||||
},
|
||||
"interval": {
|
||||
"type": "integer",
|
||||
"default": 120,
|
||||
"description": "A random value to determine when to randomly move somewhere. This has a 1/interval chance to choose this goal",
|
||||
"title": "Interval"
|
||||
},
|
||||
"on_home": {
|
||||
"title": "On home",
|
||||
"description": "Event to run when this mob gets home.",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"$ref": "../types/trigger.json"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "../types/trigger.json"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"on_failed": {
|
||||
"description": "Event to run when this mob gets home.",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"$ref": "../types/trigger.json"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "../types/trigger.json"
|
||||
}
|
||||
}
|
||||
],
|
||||
"title": "On failed"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.behavior.stomp_turtle_egg",
|
||||
"description": "Allows this mob to stomp turtle eggs",
|
||||
"type": "object",
|
||||
"title": "Behavior.stomp_turtle_egg 1.13.0",
|
||||
"additionalProperties": false,
|
||||
"required": [],
|
||||
"properties": {
|
||||
"priority": { "ref": "types/base_priority.json" },
|
||||
"speed_multiplier": { "ref": "types/base_speed_multiplier.json" },
|
||||
"goal_radius": {
|
||||
"type": "number",
|
||||
"default": 0.5,
|
||||
"description": "Distance in blocks within the mob considers it has reached the goal. This is the \"wiggle room\" to stop the AI from bouncing back and forth trying to reach a specific spot",
|
||||
"title": "Goal radius"
|
||||
},
|
||||
"interval": {
|
||||
"type": "integer",
|
||||
"default": 120,
|
||||
"description": "A random value to determine when to randomly move somewhere. This has a 1/interval chance to choose this goal",
|
||||
"title": "Interval"
|
||||
},
|
||||
"search_count": {
|
||||
"type": "integer",
|
||||
"default": 10,
|
||||
"description": "The number of blocks each tick that the mob will check within it's search range and height for a valid block to move to. A value of 0 will have the mob check every block within range in one tick",
|
||||
"title": "Search count"
|
||||
},
|
||||
"search_height": {
|
||||
"type": "integer",
|
||||
"default": 1,
|
||||
"description": "Height in blocks the mob will look for turtle eggs to move towards",
|
||||
"title": "Search height"
|
||||
},
|
||||
"search_range": {
|
||||
"type": "integer",
|
||||
"default": 0,
|
||||
"description": "The distance in blocks it will look for turtle eggs to move towards",
|
||||
"title": "Search range"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.behavior.tempt",
|
||||
"description": "Allows the mob to be tempted by food they like.",
|
||||
"type": "object",
|
||||
"title": "Behavior.tempt 1.13.0",
|
||||
"additionalProperties": false,
|
||||
"required": [],
|
||||
"properties": {
|
||||
"priority": { "ref": "types/base_priority.json" },
|
||||
"speed_multiplier": { "ref": "types/base_speed_multiplier.json" },
|
||||
"can_get_scared": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the mob can stop being tempted if the player moves too fast while close to this mob",
|
||||
"title": "Can get scared"
|
||||
},
|
||||
"can_tempt_while_ridden": {
|
||||
"type": "boolean",
|
||||
"title": "Can tempt while ridden",
|
||||
"description": "UNDOCUMENTATED"
|
||||
},
|
||||
"items": {
|
||||
"type": "array",
|
||||
"description": "List of items this mob is tempted by",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"title": "Item",
|
||||
"description": "An item identifier"
|
||||
},
|
||||
"title": "Items"
|
||||
},
|
||||
"within_radius": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "Distance in blocks this mob can get tempted by a player holding an item they like",
|
||||
"title": "Within radius"
|
||||
},
|
||||
"tempt_sound": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "Tempt sound"
|
||||
},
|
||||
"sound_interval": {
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "Sound interval",
|
||||
"properties": {
|
||||
"range_min": {
|
||||
"type": "number",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "Range min"
|
||||
},
|
||||
"range_max": {
|
||||
"type": "number",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "Range max"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.base_priority",
|
||||
"additionalProperties": false,
|
||||
"type": "integer",
|
||||
"title": "Priority",
|
||||
"minimum": 0,
|
||||
"description": "Allows the mob to drink potions based on specified environment conditions."
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.speed_multiplier",
|
||||
"additionalProperties": false,
|
||||
"default": 1.0,
|
||||
"description": "Movement speed multiplier of the mob when using this AI Goal.",
|
||||
"type": "number",
|
||||
"title": "Speed multiplier"
|
||||
}
|
||||
322
behaviour/entities/1.13.0/components.json
Normal file
322
behaviour/entities/1.13.0/components.json
Normal file
@@ -0,0 +1,322 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.components1.13.0",
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"title": "Entity 1.13.0",
|
||||
"description": "TODO description",
|
||||
"properties": {
|
||||
"minecraft:addrider": { "$ref": "../1.8.0/components/minecraft.addrider.json" },
|
||||
"minecraft:admire_item": { "$ref": "../1.8.0/components/minecraft.admire_item.json" },
|
||||
"minecraft:ageable": { "$ref": "./components/minecraft.ageable.json" },
|
||||
"minecraft:ambient_sound_interval": { "$ref": "./components/minecraft.ambient_sound_interval.json" },
|
||||
"minecraft:angry": { "$ref": "../1.8.0/components/minecraft.angry.json" },
|
||||
"minecraft:annotation.break_door": { "$ref": "../1.8.0/components/minecraft.annotation.break_door.json" },
|
||||
"minecraft:annotation.open_door": { "$ref": "../1.8.0/components/minecraft.annotation.open_door.json" },
|
||||
"minecraft:area_attack": { "$ref": "../1.8.0/components/minecraft.area_attack.json" },
|
||||
"minecraft:attack": { "$ref": "../1.8.0/components/minecraft.attack.json" },
|
||||
"minecraft:attack_cooldown": { "$ref": "../1.8.0/components/minecraft.attack_cooldown.json" },
|
||||
"minecraft:attack_damage": { "$ref": "../1.8.0/components/minecraft.attack_damage.json" },
|
||||
"minecraft:balloonable": { "$ref": "../1.8.0/components/minecraft.balloonable.json" },
|
||||
"minecraft:barter": { "$ref": "../1.8.0/components/minecraft.barter.json" },
|
||||
"minecraft:block_sensor": { "$ref": "../1.8.0/components/minecraft.block_sensor.json" },
|
||||
"minecraft:boostable": { "$ref": "../1.8.0/components/minecraft.boostable.json" },
|
||||
"minecraft:boss": { "$ref": "../1.8.0/components/minecraft.boss.json" },
|
||||
"minecraft:break_blocks": { "$ref": "../1.8.0/components/minecraft.break_blocks.json" },
|
||||
"minecraft:breathable": { "$ref": "../1.8.0/components/minecraft.breathable.json" },
|
||||
"minecraft:breedable": { "$ref": "./components/minecraft.breedable.json" },
|
||||
"minecraft:bribeable": { "$ref": "../1.8.0/components/minecraft.bribeable.json" },
|
||||
"minecraft:buoyant": { "$ref": "../1.8.0/components/minecraft.buoyant.json" },
|
||||
"minecraft:burns_in_daylight": { "$ref": "../1.8.0/components/minecraft.burns_in_daylight.json" },
|
||||
"minecraft:can_climb": { "$ref": "../1.8.0/components/minecraft.can_climb.json" },
|
||||
"minecraft:can_fly": { "$ref": "../1.8.0/components/minecraft.can_fly.json" },
|
||||
"minecraft:can_power_jump": { "$ref": "../1.8.0/components/minecraft.can_power_jump.json" },
|
||||
"minecraft:celebrate_hunt": { "$ref": "../1.8.0/components/minecraft.celebrate_hunt.json" },
|
||||
"minecraft:collision_box": { "$ref": "../1.8.0/components/minecraft.collision_box.json" },
|
||||
"minecraft:color": { "$ref": "../1.8.0/components/minecraft.color.json" },
|
||||
"minecraft:color2": { "$ref": "../1.8.0/components/minecraft.color2.json" },
|
||||
"minecraft:conditional_bandwidth_optimization": { "$ref": "../1.8.0/components/minecraft.conditional_bandwidth_optimization.json" },
|
||||
"minecraft:custom_hit_test": { "$ref": "../1.8.0/components/minecraft.custom_hit_test.json" },
|
||||
"minecraft:damage_over_time": { "$ref": "../1.8.0/components/minecraft.damage_over_time.json" },
|
||||
"minecraft:damage_sensor": { "$ref": "./components/minecraft.damage_sensor.json" },
|
||||
"minecraft:default_look_angle": { "$ref": "../1.8.0/components/minecraft.default_look_angle.json" },
|
||||
"minecraft:despawn": { "$ref": "../1.8.0/components/minecraft.despawn.json" },
|
||||
"minecraft:dweller": { "$ref": "../1.8.0/components/minecraft.dweller.json" },
|
||||
"minecraft:economy_trade_table": { "$ref": "../1.8.0/components/minecraft.economy_trade_table.json" },
|
||||
"minecraft:entity_sensor": { "$ref": "../1.8.0/components/minecraft.entity_sensor.json" },
|
||||
"minecraft:environment_sensor": { "$ref": "./components/minecraft.environment_sensor.json" },
|
||||
"minecraft:equip_item": { "$ref": "../1.8.0/components/minecraft.equip_item.json" },
|
||||
"minecraft:equipment": { "$ref": "../1.8.0/components/minecraft.equipment.json" },
|
||||
"minecraft:equippable": { "$ref": "../1.8.0/components/minecraft.equippable.json" },
|
||||
"minecraft:experience_reward": { "$ref": "./components/minecraft.experience_reward.json" },
|
||||
"minecraft:explode": { "$ref": "../1.12.0/components/minecraft.explode.json" },
|
||||
"minecraft:fall_damage": { "$ref": "../1.8.0/components/minecraft.fall_damage.json" },
|
||||
"minecraft:fire_immune": { "$ref": "../1.8.0/components/minecraft.fire_immune.json" },
|
||||
"minecraft:floats_in_liquid": { "$ref": "../1.8.0/components/minecraft.floats_in_liquid.json" },
|
||||
"minecraft:flocking": { "$ref": "../1.8.0/components/minecraft.flocking.json" },
|
||||
"minecraft:flying_speed": { "$ref": "../1.8.0/components/minecraft.flying_speed.json" },
|
||||
"minecraft:follow_range": { "$ref": "../1.8.0/components/minecraft.follow_range.json" },
|
||||
"minecraft:foot_size": { "$ref": "../1.8.0/components/minecraft.foot_size.json" },
|
||||
"minecraft:friction_modifier": { "$ref": "../1.8.0/components/minecraft.friction_modifier.json" },
|
||||
"minecraft:genetics": { "$ref": "../1.8.0/components/minecraft.genetics.json" },
|
||||
"minecraft:giveable": { "$ref": "../1.8.0/components/minecraft.giveable.json" },
|
||||
"minecraft:ground_offset": { "$ref": "../1.8.0/components/minecraft.ground_offset.json" },
|
||||
"minecraft:group_size": { "$ref": "../1.8.0/components/minecraft.group_size.json" },
|
||||
"minecraft:grows_crop": { "$ref": "../1.8.0/components/minecraft.grows_crop.json" },
|
||||
"minecraft:healable": { "$ref": "../1.8.0/components/minecraft.healable.json" },
|
||||
"minecraft:health": { "$ref": "../1.8.0/components/minecraft.health.json" },
|
||||
"minecraft:home": { "$ref": "../1.8.0/components/minecraft.home.json" },
|
||||
"minecraft:hurt_on_condition": { "$ref": "../1.8.0/components/minecraft.hurt_on_condition.json" },
|
||||
"minecraft:hurt_when_wet": { "$ref": "../1.8.0/components/minecraft.hurt_when_wet.json" },
|
||||
"minecraft:input_ground_controlled": { "$ref": "../1.8.0/components/minecraft.input_ground_controlled.json" },
|
||||
"minecraft:inside_block_notifier": { "$ref": "../1.8.0/components/minecraft.inside_block_notifier.json" },
|
||||
"minecraft:insomnia": { "$ref": "../1.8.0/components/minecraft.insomnia.json" },
|
||||
"minecraft:instant_despawn": { "$ref": "../1.8.0/components/minecraft.instant_despawn.json" },
|
||||
"minecraft:interact": { "$ref": "./components/minecraft.interact.json" },
|
||||
"minecraft:inventory": { "$ref": "../1.8.0/components/minecraft.inventory.json" },
|
||||
"minecraft:is_baby": { "$ref": "../1.8.0/components/minecraft.is_baby.json" },
|
||||
"minecraft:is_charged": { "$ref": "../1.8.0/components/minecraft.is_charged.json" },
|
||||
"minecraft:is_chested": { "$ref": "../1.8.0/components/minecraft.is_chested.json" },
|
||||
"minecraft:is_dyeable": { "$ref": "../1.8.0/components/minecraft.is_dyeable.json" },
|
||||
"minecraft:is_hidden_when_invisible": { "$ref": "../1.8.0/components/minecraft.is_hidden_when_invisible.json" },
|
||||
"minecraft:is_ignited": { "$ref": "../1.8.0/components/minecraft.is_ignited.json" },
|
||||
"minecraft:is_illager_captain": { "$ref": "../1.8.0/components/minecraft.is_illager_captain.json" },
|
||||
"minecraft:is_saddled": { "$ref": "../1.8.0/components/minecraft.is_saddled.json" },
|
||||
"minecraft:is_shaking": { "$ref": "../1.8.0/components/minecraft.is_shaking.json" },
|
||||
"minecraft:is_sheared": { "$ref": "../1.8.0/components/minecraft.is_sheared.json" },
|
||||
"minecraft:is_stackable": { "$ref": "../1.8.0/components/minecraft.is_stackable.json" },
|
||||
"minecraft:is_stunned": { "$ref": "../1.8.0/components/minecraft.is_stunned.json" },
|
||||
"minecraft:is_tamed": { "$ref": "../1.8.0/components/minecraft.is_tamed.json" },
|
||||
"minecraft:item_controllable": { "$ref": "../1.8.0/components/minecraft.item_controllable.json" },
|
||||
"minecraft:item_hopper": { "$ref": "../1.8.0/components/minecraft.item_hopper.json" },
|
||||
"minecraft:jump.dynamic": { "$ref": "../1.8.0/components/minecraft.jump.dynamic.json" },
|
||||
"minecraft:jump.static": { "$ref": "../1.8.0/components/minecraft.jump.static.json" },
|
||||
"minecraft:knockback_resistance": { "$ref": "../1.8.0/components/minecraft.knockback_resistance.json" },
|
||||
"minecraft:lava_movement": { "$ref": "../1.8.0/components/minecraft.lava_movement.json" },
|
||||
"minecraft:leashable": { "$ref": "../1.8.0/components/minecraft.leashable.json" },
|
||||
"minecraft:lookat": { "$ref": "../1.8.0/components/minecraft.lookat.json" },
|
||||
"minecraft:loot": { "$ref": "../1.8.0/components/minecraft.loot.json" },
|
||||
"minecraft:managed_wandering_trader": { "$ref": "../1.8.0/components/minecraft.managed_wandering_trader.json" },
|
||||
"minecraft:mark_variant": { "$ref": "../1.8.0/components/minecraft.mark_variant.json" },
|
||||
"minecraft:mob_effect": { "$ref": "../1.8.0/components/minecraft.mob_effect.json" },
|
||||
"minecraft:movement": { "$ref": "../1.8.0/components/minecraft.movement.json" },
|
||||
"minecraft:movement.amphibious": { "$ref": "../1.8.0/components/minecraft.movement.amphibious.json" },
|
||||
"minecraft:movement.basic": { "$ref": "../1.8.0/components/minecraft.movement.basic.json" },
|
||||
"minecraft:movement.fly": { "$ref": "../1.8.0/components/minecraft.movement.fly.json" },
|
||||
"minecraft:movement.generic": { "$ref": "../1.8.0/components/minecraft.movement.generic.json" },
|
||||
"minecraft:movement.glide": { "$ref": "../1.8.0/components/minecraft.movement.glide.json" },
|
||||
"minecraft:movement.hover": { "$ref": "../1.8.0/components/minecraft.movement.hover.json" },
|
||||
"minecraft:movement.jump": { "$ref": "../1.8.0/components/minecraft.movement.jump.json" },
|
||||
"minecraft:movement.skip": { "$ref": "../1.8.0/components/minecraft.movement.skip.json" },
|
||||
"minecraft:movement.sway": { "$ref": "../1.8.0/components/minecraft.movement.sway.json" },
|
||||
"minecraft:nameable": { "$ref": "../1.8.0/components/minecraft.nameable.json" },
|
||||
"minecraft:navigation.climb": { "$ref": "./components/minecraft.navigation.climb.json" },
|
||||
"minecraft:navigation.float": { "$ref": "./components/minecraft.navigation.float.json" },
|
||||
"minecraft:navigation.fly": { "$ref": "./components/minecraft.navigation.fly.json" },
|
||||
"minecraft:navigation.generic": { "$ref": "./components/minecraft.navigation.generic.json" },
|
||||
"minecraft:navigation.hover": { "$ref": "../1.8.0/components/minecraft.navigation.hover.json" },
|
||||
"minecraft:navigation.swim": { "$ref": "./components/minecraft.navigation.swim.json" },
|
||||
"minecraft:navigation.walk": { "$ref": "./components/minecraft.navigation.walk.json" },
|
||||
"minecraft:npc": { "$ref": "../1.8.0/components/minecraft.npc.json" },
|
||||
"minecraft:on_death": { "$ref": "../1.8.0/components/minecraft.on_death.json" },
|
||||
"minecraft:on_friendly_anger": { "$ref": "../1.8.0/components/minecraft.on_friendly_anger.json" },
|
||||
"minecraft:on_hurt": { "$ref": "../1.8.0/components/minecraft.on_hurt.json" },
|
||||
"minecraft:on_hurt_by_player": { "$ref": "../1.8.0/components/minecraft.on_hurt_by_player.json" },
|
||||
"minecraft:on_ignite": { "$ref": "../1.8.0/components/minecraft.on_ignite.json" },
|
||||
"minecraft:on_start_landing": { "$ref": "../1.8.0/components/minecraft.on_start_landing.json" },
|
||||
"minecraft:on_start_takeoff": { "$ref": "../1.8.0/components/minecraft.on_start_takeoff.json" },
|
||||
"minecraft:on_target_acquired": { "$ref": "../1.8.0/components/minecraft.on_target_acquired.json" },
|
||||
"minecraft:on_target_escape": { "$ref": "../1.8.0/components/minecraft.on_target_escape.json" },
|
||||
"minecraft:on_wake_with_owner": { "$ref": "../1.8.0/components/minecraft.on_wake_with_owner.json" },
|
||||
"minecraft:out_of_control": { "$ref": "../1.8.0/components/minecraft.out_of_control.json" },
|
||||
"minecraft:player.saturation": { "$ref": "../1.8.0/components/minecraft.player.saturation.json" },
|
||||
"minecraft:player.exhaustion": { "$ref": "../1.8.0/components/minecraft.player.exhaustion.json" },
|
||||
"minecraft:player.level": { "$ref": "../1.8.0/components/minecraft.player.level.json" },
|
||||
"minecraft:player.experience": { "$ref": "../1.8.0/components/minecraft.player.experience.json" },
|
||||
"minecraft:peek": { "$ref": "../1.8.0/components/minecraft.peek.json" },
|
||||
"minecraft:persistent": { "$ref": "../1.8.0/components/minecraft.persistent.json" },
|
||||
"minecraft:physics": { "$ref": "../1.8.0/components/minecraft.physics.json" },
|
||||
"minecraft:preferred_path": { "$ref": "../1.8.0/components/minecraft.preferred_path.json" },
|
||||
"minecraft:projectile": { "$ref": "./components/minecraft.projectile.json" },
|
||||
"minecraft:push_through": { "$ref": "../1.8.0/components/minecraft.push_through.json" },
|
||||
"minecraft:pushable": { "$ref": "../1.8.0/components/minecraft.pushable.json" },
|
||||
"minecraft:raid_trigger": { "$ref": "../1.8.0/components/minecraft.raid_trigger.json" },
|
||||
"minecraft:rail_movement": { "$ref": "../1.8.0/components/minecraft.rail_movement.json" },
|
||||
"minecraft:rail_sensor": { "$ref": "../1.8.0/components/minecraft.rail_sensor.json" },
|
||||
"minecraft:ravager_blocked": { "$ref": "../1.8.0/components/minecraft.ravager_blocked.json" },
|
||||
"minecraft:rideable": { "$ref": "./components/minecraft.rideable.json" },
|
||||
"minecraft:scaffolding_climber": { "$ref": "../1.8.0/components/minecraft.scaffolding_climber.json" },
|
||||
"minecraft:scale": { "$ref": "../1.8.0/components/minecraft.scale.json" },
|
||||
"minecraft:scale_by_age": { "$ref": "../1.8.0/components/minecraft.scale_by_age.json" },
|
||||
"minecraft:scheduler": { "$ref": "../1.8.0/components/minecraft.scheduler.json" },
|
||||
"minecraft:shareables": { "$ref": "../1.8.0/components/minecraft.shareables.json" },
|
||||
"minecraft:shooter": { "$ref": "../1.8.0/components/minecraft.shooter.json" },
|
||||
"minecraft:sittable": { "$ref": "../1.8.0/components/minecraft.sittable.json" },
|
||||
"minecraft:skin_id": { "$ref": "../1.8.0/components/minecraft.skin_id.json" },
|
||||
"minecraft:sound_volume": { "$ref": "../1.8.0/components/minecraft.sound_volume.json" },
|
||||
"minecraft:spawn_entity": { "$ref": "../1.8.0/components/minecraft.spawn_entity.json" },
|
||||
"minecraft:spell_effects": { "$ref": "../1.8.0/components/minecraft.spell_effects.json" },
|
||||
"minecraft:strength": { "$ref": "../1.8.0/components/minecraft.strength.json" },
|
||||
"minecraft:tameable": { "$ref": "../1.8.0/components/minecraft.tameable.json" },
|
||||
"minecraft:tamemount": { "$ref": "../1.8.0/components/minecraft.tamemount.json" },
|
||||
"minecraft:target_nearby_sensor": { "$ref": "../1.8.0/components/minecraft.target_nearby_sensor.json" },
|
||||
"minecraft:teleport": { "$ref": "../1.8.0/components/minecraft.teleport.json" },
|
||||
"minecraft:tick_world": { "$ref": "../1.8.0/components/minecraft.tick_world.json" },
|
||||
"minecraft:timer": { "$ref": "../1.8.0/components/minecraft.timer.json" },
|
||||
"minecraft:trade_table": { "$ref": "../1.8.0/components/minecraft.trade_table.json" },
|
||||
"minecraft:trail": { "$ref": "../1.8.0/components/minecraft.trail.json" },
|
||||
"minecraft:transformation": { "$ref": "./components/minecraft.transformation.json" },
|
||||
"minecraft:trust": { "$ref": "../1.8.0/components/minecraft.trust.json" },
|
||||
"minecraft:trusting": { "$ref": "../1.8.0/components/minecraft.trusting.json" },
|
||||
"minecraft:type_family": { "$ref": "../1.8.0/components/minecraft.type_family.json" },
|
||||
"minecraft:variant": { "$ref": "../1.8.0/components/minecraft.variant.json" },
|
||||
"minecraft:walk_animation_speed": { "$ref": "../1.8.0/components/minecraft.walk_animation_speed.json" },
|
||||
"minecraft:wants_jockey": { "$ref": "../1.8.0/components/minecraft.wants_jockey.json" },
|
||||
"minecraft:water_movement": { "$ref": "../1.8.0/components/minecraft.water_movement.json" },
|
||||
"minecraft:behavior.admire_item": { "$ref": "../1.8.0/behaviors/minecraft.behavior.admire_item.json" },
|
||||
"minecraft:behavior.avoid_mob_type": { "$ref": "../1.8.0/behaviors/minecraft.behavior.avoid_mob_type.json" },
|
||||
"minecraft:behavior.beg": { "$ref": "../1.8.0/behaviors/minecraft.behavior.beg.json" },
|
||||
"minecraft:behavior.break_door": { "$ref": "../1.8.0/behaviors/minecraft.behavior.break_door.json" },
|
||||
"minecraft:behavior.breed": { "$ref": "../1.8.0/behaviors/minecraft.behavior.breed.json" },
|
||||
"minecraft:behavior.celebrate": { "$ref": "../1.8.0/behaviors/minecraft.behavior.celebrate.json" },
|
||||
"minecraft:behavior.charge_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.charge_attack.json" },
|
||||
"minecraft:behavior.charge_held_item": { "$ref": "../1.8.0/behaviors/minecraft.behavior.charge_held_item.json" },
|
||||
"minecraft:behavior.circle_around_anchor": { "$ref": "../1.8.0/behaviors/minecraft.behavior.circle_around_anchor.json" },
|
||||
"minecraft:behavior.controlled_by_player": { "$ref": "../1.8.0/behaviors/minecraft.behavior.controlled_by_player.json" },
|
||||
"minecraft:behavior.defend_trusted_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.defend_trusted_target.json" },
|
||||
"minecraft:behavior.defend_village_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.defend_village_target.json" },
|
||||
"minecraft:behavior.delayed_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.delayed_attack.json" },
|
||||
"minecraft:behavior.door_interact": { "$ref": "../1.8.0/behaviors/minecraft.behavior.door_interact.json" },
|
||||
"minecraft:behavior.dragonchargeplayer": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonchargeplayer.json" },
|
||||
"minecraft:behavior.dragondeath": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragondeath.json" },
|
||||
"minecraft:behavior.dragonflaming": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonflaming.json" },
|
||||
"minecraft:behavior.dragonholdingpattern": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonholdingpattern.json" },
|
||||
"minecraft:behavior.dragonlanding": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonlanding.json" },
|
||||
"minecraft:behavior.dragonscanning": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonscanning.json" },
|
||||
"minecraft:behavior.dragonstrafeplayer": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonstrafeplayer.json" },
|
||||
"minecraft:behavior.dragontakeoff": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragontakeoff.json" },
|
||||
"minecraft:behavior.drink_potion": { "$ref": "../1.8.0/behaviors/minecraft.behavior.drink_potion.json" },
|
||||
"minecraft:behavior.drop_item_for": { "$ref": "../1.8.0/behaviors/minecraft.behavior.drop_item_for.json" },
|
||||
"minecraft:behavior.eat_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.eat_block.json" },
|
||||
"minecraft:behavior.eat_carried_item": { "$ref": "../1.8.0/behaviors/minecraft.behavior.eat_carried_item.json" },
|
||||
"minecraft:behavior.enderman_leave_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.enderman_leave_block.json" },
|
||||
"minecraft:behavior.enderman_take_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.enderman_take_block.json" },
|
||||
"minecraft:behavior.explore_outskirts": { "$ref": "../1.8.0/behaviors/minecraft.behavior.explore_outskirts.json" },
|
||||
"minecraft:behavior.find_cover": { "$ref": "../1.8.0/behaviors/minecraft.behavior.find_cover.json" },
|
||||
"minecraft:behavior.find_mount": { "$ref": "./behaviors/minecraft.behavior.find_mount.json" },
|
||||
"minecraft:behavior.find_underwater_treasure": { "$ref": "../1.8.0/behaviors/minecraft.behavior.find_underwater_treasure.json" },
|
||||
"minecraft:behavior.flee_sun": { "$ref": "../1.8.0/behaviors/minecraft.behavior.flee_sun.json" },
|
||||
"minecraft:behavior.float": { "$ref": "../1.8.0/behaviors/minecraft.behavior.float.json" },
|
||||
"minecraft:behavior.float_wander": { "$ref": "../1.8.0/behaviors/minecraft.behavior.float_wander.json" },
|
||||
"minecraft:behavior.follow_caravan": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_caravan.json" },
|
||||
"minecraft:behavior.follow_mob": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_mob.json" },
|
||||
"minecraft:behavior.follow_owner": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_owner.json" },
|
||||
"minecraft:behavior.follow_parent": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_parent.json" },
|
||||
"minecraft:behavior.follow_target_captain": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_target_captain.json" },
|
||||
"minecraft:behavior.go_home": { "$ref": "./behaviors/minecraft.behavior.go_home.json" },
|
||||
"minecraft:behavior.guardian_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.guardian_attack.json" },
|
||||
"minecraft:behavior.harvest_farm_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.harvest_farm_block.json" },
|
||||
"minecraft:behavior.hide": { "$ref": "../1.8.0/behaviors/minecraft.behavior.hide.json" },
|
||||
"minecraft:behavior.hold_ground": { "$ref": "../1.8.0/behaviors/minecraft.behavior.hold_ground.json" },
|
||||
"minecraft:behavior.hurt_by_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.hurt_by_target.json" },
|
||||
"minecraft:behavior.inspect_bookshelf": { "$ref": "../1.8.0/behaviors/minecraft.behavior.inspect_bookshelf.json" },
|
||||
"minecraft:behavior.knockback_roar": { "$ref": "../1.8.0/behaviors/minecraft.behavior.knockback_roar.json" },
|
||||
"minecraft:behavior.lay_down": { "$ref": "../1.8.0/behaviors/minecraft.behavior.lay_down.json" },
|
||||
"minecraft:behavior.lay_egg": { "$ref": "../1.8.0/behaviors/minecraft.behavior.lay_egg.json" },
|
||||
"minecraft:behavior.leap_at_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.leap_at_target.json" },
|
||||
"minecraft:behavior.look_at_entity": { "$ref": "../1.8.0/behaviors/minecraft.behavior.look_at_entity.json" },
|
||||
"minecraft:behavior.look_at_player": { "$ref": "../1.8.0/behaviors/minecraft.behavior.look_at_player.json" },
|
||||
"minecraft:behavior.look_at_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.look_at_target.json" },
|
||||
"minecraft:behavior.look_at_trading_player": { "$ref": "../1.8.0/behaviors/minecraft.behavior.look_at_trading_player.json" },
|
||||
"minecraft:behavior.make_love": { "$ref": "../1.8.0/behaviors/minecraft.behavior.make_love.json" },
|
||||
"minecraft:behavior.melee_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.melee_attack.json" },
|
||||
"minecraft:behavior.mingle": { "$ref": "../1.8.0/behaviors/minecraft.behavior.mingle.json" },
|
||||
"minecraft:behavior.mount_pathing": { "$ref": "../1.8.0/behaviors/minecraft.behavior.mount_pathing.json" },
|
||||
"minecraft:behavior.move_indoors": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_indoors.json" },
|
||||
"minecraft:behavior.move_through_village": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_through_village.json" },
|
||||
"minecraft:behavior.move_to_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_block.json" },
|
||||
"minecraft:behavior.move_to_land": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_land.json" },
|
||||
"minecraft:behavior.move_to_lava": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_lava.json" },
|
||||
"minecraft:behavior.move_to_liquid": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_liquid.json" },
|
||||
"minecraft:behavior.move_to_poi": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_poi.json" },
|
||||
"minecraft:behavior.move_to_random_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_random_block.json" },
|
||||
"minecraft:behavior.move_to_village": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_village.json" },
|
||||
"minecraft:behavior.move_to_water": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_water.json" },
|
||||
"minecraft:behavior.move_towards_dwelling_restriction": {
|
||||
"$ref": "../1.8.0/behaviors/minecraft.behavior.move_towards_dwelling_restriction.json"
|
||||
},
|
||||
"minecraft:behavior.move_towards_restriction": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_towards_restriction.json" },
|
||||
"minecraft:behavior.move_towards_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_towards_target.json" },
|
||||
"minecraft:behavior.nap": { "$ref": "../1.8.0/behaviors/minecraft.behavior.nap.json" },
|
||||
"minecraft:behavior.nearest_attackable_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.nearest_attackable_target.json" },
|
||||
"minecraft:behavior.nearest_prioritized_attackable_target": {
|
||||
"$ref": "../1.8.0/behaviors/minecraft.behavior.nearest_prioritized_attackable_target.json"
|
||||
},
|
||||
"minecraft:behavior.ocelot_sit_on_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.ocelot_sit_on_block.json" },
|
||||
"minecraft:behavior.ocelotattack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.ocelotattack.json" },
|
||||
"minecraft:behavior.offer_flower": { "$ref": "../1.8.0/behaviors/minecraft.behavior.offer_flower.json" },
|
||||
"minecraft:behavior.open_door": { "$ref": "../1.8.0/behaviors/minecraft.behavior.open_door.json" },
|
||||
"minecraft:behavior.owner_hurt_by_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.owner_hurt_by_target.json" },
|
||||
"minecraft:behavior.owner_hurt_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.owner_hurt_target.json" },
|
||||
"minecraft:behavior.panic": { "$ref": "../1.8.0/behaviors/minecraft.behavior.panic.json" },
|
||||
"minecraft:behavior.peek": { "$ref": "../1.8.0/behaviors/minecraft.behavior.peek.json" },
|
||||
"minecraft:behavior.pet_sleep_with_owner": { "$ref": "../1.8.0/behaviors/minecraft.behavior.pet_sleep_with_owner.json" },
|
||||
"minecraft:behavior.pickup_items": { "$ref": "../1.8.0/behaviors/minecraft.behavior.pickup_items.json" },
|
||||
"minecraft:behavior.play": { "$ref": "../1.8.0/behaviors/minecraft.behavior.play.json" },
|
||||
"minecraft:behavior.player_ride_tamed": { "$ref": "../1.8.0/behaviors/minecraft.behavior.player_ride_tamed.json" },
|
||||
"minecraft:behavior.raid_garden": { "$ref": "../1.8.0/behaviors/minecraft.behavior.raid_garden.json" },
|
||||
"minecraft:behavior.random_breach": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_breach.json" },
|
||||
"minecraft:behavior.random_fly": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_fly.json" },
|
||||
"minecraft:behavior.random_hover": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_hover.json" },
|
||||
"minecraft:behavior.random_look_around": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_look_around.json" },
|
||||
"minecraft:behavior.random_look_around_and_sit": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_look_around_and_sit.json" },
|
||||
"minecraft:behavior.random_sitting": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_sitting.json" },
|
||||
"minecraft:behavior.random_stroll": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_stroll.json" },
|
||||
"minecraft:behavior.random_swim": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_swim.json" },
|
||||
"minecraft:behavior.ranged_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.ranged_attack.json" },
|
||||
"minecraft:behavior.receive_love": { "$ref": "../1.8.0/behaviors/minecraft.behavior.receive_love.json" },
|
||||
"minecraft:behavior.restrict_open_door": { "$ref": "../1.8.0/behaviors/minecraft.behavior.restrict_open_door.json" },
|
||||
"minecraft:behavior.restrict_sun": { "$ref": "../1.8.0/behaviors/minecraft.behavior.restrict_sun.json" },
|
||||
"minecraft:behavior.rise_to_liquid_level": { "$ref": "../1.8.0/behaviors/minecraft.behavior.rise_to_liquid_level.json" },
|
||||
"minecraft:behavior.roll": { "$ref": "../1.8.0/behaviors/minecraft.behavior.roll.json" },
|
||||
"minecraft:behavior.run_around_like_crazy": { "$ref": "../1.8.0/behaviors/minecraft.behavior.run_around_like_crazy.json" },
|
||||
"minecraft:behavior.scared": { "$ref": "../1.8.0/behaviors/minecraft.behavior.scared.json" },
|
||||
"minecraft:behavior.send_event": { "$ref": "../1.8.0/behaviors/minecraft.behavior.send_event.json" },
|
||||
"minecraft:behavior.share_items": { "$ref": "../1.8.0/behaviors/minecraft.behavior.share_items.json" },
|
||||
"minecraft:behavior.silverfish_merge_with_stone": { "$ref": "../1.8.0/behaviors/minecraft.behavior.silverfish_merge_with_stone.json" },
|
||||
"minecraft:behavior.silverfish_wake_up_friends": { "$ref": "../1.8.0/behaviors/minecraft.behavior.silverfish_wake_up_friends.json" },
|
||||
"minecraft:behavior.skeleton_horse_trap": { "$ref": "../1.8.0/behaviors/minecraft.behavior.skeleton_horse_trap.json" },
|
||||
"minecraft:behavior.sleep": { "$ref": "../1.8.0/behaviors/minecraft.behavior.sleep.json" },
|
||||
"minecraft:behavior.slime_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.slime_attack.json" },
|
||||
"minecraft:behavior.slime_float": { "$ref": "../1.8.0/behaviors/minecraft.behavior.slime_float.json" },
|
||||
"minecraft:behavior.slime_keep_on_jumping": { "$ref": "../1.8.0/behaviors/minecraft.behavior.slime_keep_on_jumping.json" },
|
||||
"minecraft:behavior.slime_random_direction": { "$ref": "../1.8.0/behaviors/minecraft.behavior.slime_random_direction.json" },
|
||||
"minecraft:behavior.snacking": { "$ref": "../1.8.0/behaviors/minecraft.behavior.snacking.json" },
|
||||
"minecraft:behavior.sneeze": { "$ref": "../1.8.0/behaviors/minecraft.behavior.sneeze.json" },
|
||||
"minecraft:behavior.squid_dive": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_dive.json" },
|
||||
"minecraft:behavior.squid_flee": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_flee.json" },
|
||||
"minecraft:behavior.squid_idle": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_idle.json" },
|
||||
"minecraft:behavior.squid_move_away_from_ground": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_move_away_from_ground.json" },
|
||||
"minecraft:behavior.squid_out_of_water": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_out_of_water.json" },
|
||||
"minecraft:behavior.stalk_and_pounce_on_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.stalk_and_pounce_on_target.json" },
|
||||
"minecraft:behavior.stay_while_sitting": { "$ref": "../1.8.0/behaviors/minecraft.behavior.stay_while_sitting.json" },
|
||||
"minecraft:behavior.stomp_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.stomp_attack.json" },
|
||||
"minecraft:behavior.stomp_turtle_egg": { "$ref": "./behaviors/minecraft.behavior.stomp_turtle_egg.json" },
|
||||
"minecraft:behavior.stroll_towards_village": { "$ref": "../1.8.0/behaviors/minecraft.behavior.stroll_towards_village.json" },
|
||||
"minecraft:behavior.summon_entity": { "$ref": "../1.8.0/behaviors/minecraft.behavior.summon_entity.json" },
|
||||
"minecraft:behavior.swell": { "$ref": "../1.8.0/behaviors/minecraft.behavior.swell.json" },
|
||||
"minecraft:behavior.swim_wander": { "$ref": "../1.8.0/behaviors/minecraft.behavior.swim_wander.json" },
|
||||
"minecraft:behavior.swim_with_entity": { "$ref": "../1.8.0/behaviors/minecraft.behavior.swim_with_entity.json" },
|
||||
"minecraft:behavior.swoop_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.swoop_attack.json" },
|
||||
"minecraft:behavior.take_flower": { "$ref": "../1.8.0/behaviors/minecraft.behavior.take_flower.json" },
|
||||
"minecraft:behavior.target_when_pushed": { "$ref": "../1.8.0/behaviors/minecraft.behavior.target_when_pushed.json" },
|
||||
"minecraft:behavior.tempt": { "$ref": "./behaviors/minecraft.behavior.tempt.json" },
|
||||
"minecraft:behavior.trade_interest": { "$ref": "../1.8.0/behaviors/minecraft.behavior.trade_interest.json" },
|
||||
"minecraft:behavior.trade_with_player": { "$ref": "../1.8.0/behaviors/minecraft.behavior.trade_with_player.json" },
|
||||
"minecraft:behavior.vex_copy_owner_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.vex_copy_owner_target.json" },
|
||||
"minecraft:behavior.vex_random_move": { "$ref": "../1.8.0/behaviors/minecraft.behavior.vex_random_move.json" },
|
||||
"minecraft:behavior.wither_random_attack_pos_goal": { "$ref": "../1.8.0/behaviors/minecraft.behavior.wither_random_attack_pos_goal.json" },
|
||||
"minecraft:behavior.wither_target_highest_damage": { "$ref": "../1.8.0/behaviors/minecraft.behavior.wither_target_highest_damage.json" },
|
||||
"minecraft:behavior.work": { "$ref": "../1.8.0/behaviors/minecraft.behavior.work.json" }
|
||||
}
|
||||
}
|
||||
50
behaviour/entities/1.13.0/components/minecraft.ageable.json
Normal file
50
behaviour/entities/1.13.0/components/minecraft.ageable.json
Normal file
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.ageable",
|
||||
"type": "object",
|
||||
"title": "Ageable 1.13.0",
|
||||
"description": "Adds a timer for the entity to grow up. It can be accelerated by giving the entity the items it likes as defined by feedItems.",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"drop_items": {
|
||||
"description": "List of items that the entity drops when it grows up.",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"title": "TODO title"
|
||||
},
|
||||
"duration": {
|
||||
"type": "number",
|
||||
"default": 1200,
|
||||
"description": "Amount of time before the entity grows up, -1 for always a baby.",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"feed_items": {
|
||||
"description": "List of items that can be fed to the entity. Includes 'item' for the item name and 'growth' to define how much time it grows up by",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"title": "TODO title"
|
||||
},
|
||||
"grow_up": {
|
||||
"description": "Event to run when this entity grows up.",
|
||||
"title": "TODO title"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.ambient_sound_interval",
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"title": "Ambient sound interval 1.8.0",
|
||||
"description": "Sets the entity's delay between playing its ambient sound.",
|
||||
"required": ["event_name"],
|
||||
"properties": {
|
||||
"event_name": {
|
||||
"type": "string",
|
||||
"default": "ambient",
|
||||
"description": "Level sound event to be played as the ambient sound.",
|
||||
"title": "Event name"
|
||||
},
|
||||
"range": {
|
||||
"type": "number",
|
||||
"default": 16,
|
||||
"description": "Maximum time in seconds to randomly add to the ambient sound delay time.",
|
||||
"title": "Range"
|
||||
},
|
||||
"value": {
|
||||
"type": "number",
|
||||
"default": 8,
|
||||
"description": "Minimum time in seconds before the entity plays its ambient sound again",
|
||||
"title": "Value"
|
||||
}
|
||||
}
|
||||
}
|
||||
212
behaviour/entities/1.13.0/components/minecraft.breedable.json
Normal file
212
behaviour/entities/1.13.0/components/minecraft.breedable.json
Normal file
@@ -0,0 +1,212 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.breedable",
|
||||
"type": "object",
|
||||
"title": "Breedable 1.13.0",
|
||||
"additionalProperties": false,
|
||||
"description": "Specifies the blocks that this entity can break as it moves around.",
|
||||
"definitions": {
|
||||
"breeds_with_spec": {
|
||||
"type": "object",
|
||||
"description": "An entity definitions that this entity can breed with.",
|
||||
"additionalItems": false,
|
||||
"required": [],
|
||||
"properties": {
|
||||
"baby_type": {
|
||||
"type": "string",
|
||||
"description": "The entity definition of this entity's babies.",
|
||||
"title": "Baby Type"
|
||||
},
|
||||
"breed_event": {
|
||||
"$ref": "../types/event.json",
|
||||
"description": "Event to run when this entity breeds.",
|
||||
"title": "Breed Event"
|
||||
},
|
||||
"mate_type": {
|
||||
"type": "string",
|
||||
"description": "The entity definition of this entity's mate.",
|
||||
"title": "Mate Type"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [],
|
||||
"properties": {
|
||||
"allow_sitting": {
|
||||
"description": "If true, entities can breed while sitting.",
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"title": "Allow Sitting"
|
||||
},
|
||||
"blend_attributes": {
|
||||
"description": "If true, the entities will blend their attributes in the offspring after they breed. For example, horses blend their health, movement, and jump_strength in their offspring.",
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"title": "Blend Attributes"
|
||||
},
|
||||
"breed_cooldown": {
|
||||
"description": "Time in seconds before the Entity can breed again.",
|
||||
"type": "number",
|
||||
"default": 60.0,
|
||||
"title": "Breed Cooldown"
|
||||
},
|
||||
"breed_items": {
|
||||
"description": "The list of items that can be used to get the entity into the 'love' state",
|
||||
"title": "Breed Items",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"breeds_with": {
|
||||
"description": "The list of entity definitions that this entity can breed with.",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "object",
|
||||
"$ref": "#/definitions/breeds_with_spec"
|
||||
},
|
||||
{
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"$ref": "#/definitions/breeds_with_spec"
|
||||
}
|
||||
}
|
||||
],
|
||||
"title": "TODO title"
|
||||
},
|
||||
"deny_parents_variant": {
|
||||
"type": "object",
|
||||
"description": "Determines how likely the baby of parents with the same variant will deny that variant and take a random variant within the given range instead.",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"chance": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "The percentage chance of denying the parents' variant.",
|
||||
"title": "Chance"
|
||||
},
|
||||
"max_variant": {
|
||||
"type": "integer",
|
||||
"default": 0,
|
||||
"description": "The inclusive maximum of the variant range.",
|
||||
"title": "Max Variant"
|
||||
},
|
||||
"min_variant": {
|
||||
"type": "integer",
|
||||
"default": 0,
|
||||
"description": "The inclusive minimum of the variant range.",
|
||||
"title": "Min Variant"
|
||||
}
|
||||
},
|
||||
"title": "Deny Parents Variant"
|
||||
},
|
||||
"environment_requirements": {
|
||||
"type": "array",
|
||||
"description": "The list of nearby block requirements to get the entity into the 'love' state.",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"description": "A nearby block requirements to get the entity into the 'love' state.",
|
||||
"properties": {
|
||||
"blocks": {
|
||||
"type": "array",
|
||||
"description": "The block types required nearby for the entity to breed.",
|
||||
"items": {
|
||||
"description": "A block type required nearby for the entity to breed.",
|
||||
"type": "string",
|
||||
"$ref": "../../../../general/blocks_item.json",
|
||||
"title": "Blocks"
|
||||
},
|
||||
"title": "Blocks"
|
||||
},
|
||||
"count": {
|
||||
"type": "number",
|
||||
"description": "The number of the required block types nearby for the entity to breed.",
|
||||
"title": "Count"
|
||||
},
|
||||
"radius": {
|
||||
"type": "number",
|
||||
"description": "How many blocks radius from the mob's center to search in for the required blocks. Bounded between 0 and 16.",
|
||||
"minimum": 0,
|
||||
"title": "Radius"
|
||||
}
|
||||
},
|
||||
"title": "Environment Requirements"
|
||||
},
|
||||
"title": "Environment Requirements"
|
||||
},
|
||||
"extra_baby_chance": {
|
||||
"type": "number",
|
||||
"default": 0.0,
|
||||
"description": "Chance that up to 16 babies will spawn between 0.0 and 1.0, where 1.0 is 100%.",
|
||||
"minimum": 0.0,
|
||||
"maximum": 1.0,
|
||||
"title": "Extra Baby Chance"
|
||||
},
|
||||
"love_filters": { "$ref": "../filters.json", "description": "The filters to run when attempting to fall in love.", "title": "Love Filters" },
|
||||
"mutation_factor": {
|
||||
"type": "object",
|
||||
"description": "Determines how likely the babies are to NOT inherit one of their parent's variances. Values are between 0.0 and 1.0, with a higher number meaning more likely to mutate.",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"color": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"minimum": 0.0,
|
||||
"maximum": 1.0,
|
||||
"description": "The percentage chance of a mutation on the entity's color.",
|
||||
"title": "Color"
|
||||
},
|
||||
"extra_variant": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"minimum": 0.0,
|
||||
"maximum": 1.0,
|
||||
"description": "The percentage chance of a mutation on the entity's extra variant type.",
|
||||
"title": "Extra Variant"
|
||||
},
|
||||
"variant": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"minimum": 0.0,
|
||||
"maximum": 1.0,
|
||||
"description": "The percentage chance of a mutation on the entity's variant type.",
|
||||
"title": "Variant"
|
||||
}
|
||||
},
|
||||
"title": "Mutation Factor"
|
||||
},
|
||||
"causes_pregnancy": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the entity will become pregnant instead of spawning a baby.",
|
||||
"title": "Causes pregnancy"
|
||||
},
|
||||
"inherit_tamed": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "If true, the babies will be automatically tamed if its parents are",
|
||||
"title": "Inherit tamed"
|
||||
},
|
||||
"require_full_health": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the entity needs to be at full health before it can breed.",
|
||||
"title": "Require full health"
|
||||
},
|
||||
"require_tame": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "If true, the entities need to be tamed first before they can breed.",
|
||||
"title": "Require tame"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,108 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.damage_sensor",
|
||||
"title": "Damage sensor 1.13.0",
|
||||
"description": "Defines what events to call when this entity is damaged by specific entities or items.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"definitions": {
|
||||
"trigger": {
|
||||
"properties": {
|
||||
"cause": {
|
||||
"type": "string",
|
||||
"default": "none",
|
||||
"description": "Type of damage that triggers the events.",
|
||||
"title": "Cause",
|
||||
"enum": [
|
||||
"all",
|
||||
"anvil",
|
||||
"attack",
|
||||
"block_explosion",
|
||||
"contact",
|
||||
"drowning",
|
||||
"entity_explosion",
|
||||
"fall",
|
||||
"falling_block",
|
||||
"fata",
|
||||
"fire",
|
||||
"fire_tick",
|
||||
"fly_into_wall",
|
||||
"lava",
|
||||
"lightning",
|
||||
"magic",
|
||||
"none",
|
||||
"override",
|
||||
"piston",
|
||||
"projectile",
|
||||
"starve",
|
||||
"suffocation",
|
||||
"suicide",
|
||||
"thorns",
|
||||
"void",
|
||||
"wither"
|
||||
]
|
||||
},
|
||||
"damage_multiplier": {
|
||||
"type": "number",
|
||||
"default": 1,
|
||||
"description": "A multiplier that modifies the base damage from the damage cause. If deals_damage is true the multiplier can only reduce the damage the entity will take to a minimum of 1.",
|
||||
"title": "Damage multiplier"
|
||||
},
|
||||
"deals_damage": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "If true, the damage dealt to the entity will take away health from it, set to false to make the entity ignore that damage.",
|
||||
"title": "Deals damage"
|
||||
},
|
||||
"on_damage": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "Specifies filters for entity definitions and events.",
|
||||
"title": "On damage",
|
||||
"properties": {
|
||||
"filters": {
|
||||
"$ref": "../filters.json"
|
||||
},
|
||||
"event": {
|
||||
"type": "string",
|
||||
"pattern": "^.*$",
|
||||
"description": "TODO description: event",
|
||||
"title": "Event"
|
||||
},
|
||||
"target": {
|
||||
"$ref": "../filters/types/base_subject.json",
|
||||
"description": "TODO description: target",
|
||||
"title": "Target"
|
||||
}
|
||||
},
|
||||
"on_damage_sound_event": {
|
||||
"type": "string",
|
||||
"description": "Defines what sound to play, if any, when the on_damage filters are met.",
|
||||
"title": "On damage sound event"
|
||||
}
|
||||
},
|
||||
"on_damage_sound_event": {
|
||||
"$ref": "../../1.8.0/types/event.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"triggers": {
|
||||
"description": "The list of triggers with the events to call when taking specific kinds of damage.",
|
||||
"title": "Triggers",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/trigger"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"$ref": "#/definitions/trigger"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.environment_sensor",
|
||||
"title": "Environment sensor 1.13.0",
|
||||
"description": "Creates a trigger based on environment conditions.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"triggers": {
|
||||
"description": "The list of triggers that fire when the environment conditions match the given filter criteria.",
|
||||
"title": "Triggers",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "../types/trigger.json"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"$ref": "../types/trigger.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.experience_reward",
|
||||
"type": "object",
|
||||
"title": "Experience reward 1.13.0",
|
||||
"description": "TODO",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"on_bred": {
|
||||
"type": "string",
|
||||
"default": 0,
|
||||
"description": "A molang expression defining the amount of experience rewarded when this entity is successfully bred. An array of expressions adds each expression's result together for a final total.",
|
||||
"title": "On bred"
|
||||
},
|
||||
"on_death": {
|
||||
"type": "string",
|
||||
"default": 0,
|
||||
"description": "A molang expression defining the amount of experience rewarded when this entity dies. An array of expressions adds each expression's result together for a final total.",
|
||||
"title": "On death"
|
||||
}
|
||||
}
|
||||
}
|
||||
126
behaviour/entities/1.13.0/components/minecraft.interact.json
Normal file
126
behaviour/entities/1.13.0/components/minecraft.interact.json
Normal file
@@ -0,0 +1,126 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.interact",
|
||||
"type": "object",
|
||||
"title": "Interact 1.13.0",
|
||||
"description": "Defines interactions with this entity.",
|
||||
"additionalProperties": false,
|
||||
"definitions": {
|
||||
"interaction_spec": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"add_items": {
|
||||
"type": "object",
|
||||
"description": "Loot table with items to add to the player's inventory upon successful interaction.",
|
||||
"title": "Add items"
|
||||
},
|
||||
"cooldown": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "Time in seconds before this entity can be interacted with again.",
|
||||
"title": "Cooldown"
|
||||
},
|
||||
"hurt_item": {
|
||||
"type": "integer",
|
||||
"default": 0,
|
||||
"description": "The amount of damage the item will take when used to interact with this entity. A value of 0 means the item won't lose durability.",
|
||||
"title": "Hurt item"
|
||||
},
|
||||
"interact_text": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Text to show when the player is able to interact in this way with this entity when playing with Touch-screen controls.",
|
||||
"title": "Interact text"
|
||||
},
|
||||
"on_interact": {
|
||||
"$ref": "../types/trigger.json",
|
||||
"description": "Event to fire when the interaction occurs.",
|
||||
"title": "On interact"
|
||||
},
|
||||
"particle_on_start": {
|
||||
"type": "object",
|
||||
"description": "Particle effect that will be triggered at the start of the interaction.",
|
||||
"title": "Particle on start",
|
||||
"properties": {
|
||||
"particle_offset_towards_interactor": {
|
||||
"type": "boolean",
|
||||
"description": "Whether or not the particle will appear closer to who performed the interaction.",
|
||||
"title": "Particle offset towards interactor"
|
||||
},
|
||||
"particle_type": {
|
||||
"type": "string",
|
||||
"description": "The type of particle that will be spawned.",
|
||||
"title": "Particle type"
|
||||
},
|
||||
"particle_y_offset": {
|
||||
"type": "number",
|
||||
"description": "Will offset the particle this amount in the y direction.",
|
||||
"title": "Particle y offset"
|
||||
}
|
||||
}
|
||||
},
|
||||
"play_sounds": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "List of sounds to play when the interaction occurs.",
|
||||
"title": "Play sounds"
|
||||
},
|
||||
"spawn_entities": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "List of entities to spawn when the interaction occurs.",
|
||||
"title": "Spawn entities"
|
||||
},
|
||||
"spawn_items": {
|
||||
"type": "object",
|
||||
"description": "Loot table with items to drop on the ground upon successful interaction.",
|
||||
"title": "Spawn items",
|
||||
"properties": {
|
||||
"table": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "File path, relative to the Behavior Pack's path, to the loot table file.",
|
||||
"title": "Table"
|
||||
}
|
||||
}
|
||||
},
|
||||
"swing": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the player will do the 'swing' animation when interacting with this entity.",
|
||||
"title": "Swing"
|
||||
},
|
||||
"transform_to_item": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "The item used will transform to this item upon successful interaction. Format: itemName:auxValue",
|
||||
"title": "Transform to item"
|
||||
},
|
||||
"use_item": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the interaction will use an item.",
|
||||
"title": "Use item"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"interactions": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "object",
|
||||
"$ref": "#/definitions/interaction_spec"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/interaction_spec"
|
||||
}
|
||||
}
|
||||
],
|
||||
"description": "TODO description",
|
||||
"title": "TODO title"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.navigation.climb",
|
||||
"title": "Navigation.climb",
|
||||
"description": "Allows this entity to generate paths that include vertical walls like the vanilla Spiders do.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"avoid_portals": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder to avoid portals (like nether portals) when finding a path",
|
||||
"title": "Avoid portals"
|
||||
},
|
||||
"avoid_sun": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Whether or not the pathfinder should avoid tiles that are exposed to the sun when creating paths",
|
||||
"title": "Avoid sun"
|
||||
},
|
||||
"avoid_water": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder to avoid water when creating a path",
|
||||
"title": "Avoid water"
|
||||
},
|
||||
"can_break_doors": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder that it can path through a closed door and break it",
|
||||
"title": "Can break doors"
|
||||
},
|
||||
"can_open_doors": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder that it can path through a closed door assuming the AI will open the door",
|
||||
"title": "Can open doors"
|
||||
},
|
||||
"can_pass_doors": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Whether a path can be created through a door",
|
||||
"title": "Can pass doors"
|
||||
},
|
||||
"can_path_over_water": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder whether or not it can travel on the surface of the water",
|
||||
"title": "Can path over water"
|
||||
},
|
||||
"can_sink": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Tells the pathfinder whether or not it will be pulled down by gravity while in water",
|
||||
"title": "Can sink"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.navigation.float",
|
||||
"title": "Navigation.float",
|
||||
"description": "Allows this entity to generate paths by flying around the air like the regular Ghast.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"avoid_portals": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder to avoid portals (like nether portals) when finding a path",
|
||||
"title": "Avoid portals"
|
||||
},
|
||||
"avoid_sun": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Whether or not the pathfinder should avoid tiles that are exposed to the sun when creating paths",
|
||||
"title": "Avoid sun"
|
||||
},
|
||||
"avoid_water": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder to avoid water when creating a path",
|
||||
"title": "Avoid water"
|
||||
},
|
||||
"can_break_doors": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder that it can path through a closed door and break it",
|
||||
"title": "Can break doors"
|
||||
},
|
||||
"can_open_doors": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder that it can path through a closed door assuming the AI will open the door",
|
||||
"title": "Can open doors"
|
||||
},
|
||||
"can_pass_doors": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Whether a path can be created through a door",
|
||||
"title": "Can pass doors"
|
||||
},
|
||||
"can_path_over_water": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder whether or not it can travel on the surface of the water",
|
||||
"title": "Can path over water"
|
||||
},
|
||||
"can_sink": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Tells the pathfinder whether or not it will be pulled down by gravity while in water",
|
||||
"title": "Can sink"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.navigation.fly",
|
||||
"title": "Navigation.fly",
|
||||
"description": "Allows this entity to generate paths in the air like the vanilla Parrots do.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"avoid_portals": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder to avoid portals (like nether portals) when finding a path",
|
||||
"title": "Avoid portals"
|
||||
},
|
||||
"avoid_sun": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Whether or not the pathfinder should avoid tiles that are exposed to the sun when creating paths",
|
||||
"title": "Avoid sun"
|
||||
},
|
||||
"avoid_water": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder to avoid water when creating a path",
|
||||
"title": "Avoid water"
|
||||
},
|
||||
"can_break_doors": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder that it can path through a closed door and break it",
|
||||
"title": "Can break doors"
|
||||
},
|
||||
"can_open_doors": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder that it can path through a closed door assuming the AI will open the door",
|
||||
"title": "Can open doors"
|
||||
},
|
||||
"can_pass_doors": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Whether a path can be created through a door",
|
||||
"title": "Can pass doors"
|
||||
},
|
||||
"can_path_over_water": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder whether or not it can travel on the surface of the water",
|
||||
"title": "Can path over water"
|
||||
},
|
||||
"can_sink": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Tells the pathfinder whether or not it will be pulled down by gravity while in water",
|
||||
"title": "Can sink"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.navigation.generic",
|
||||
"title": "Navigation.generic",
|
||||
"description": "Allows this entity to generate paths by walking, swimming, flying and/or climbing around and jumping up and down a block.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"avoid_portals": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder to avoid portals (like nether portals) when finding a path",
|
||||
"title": "Avoid portals"
|
||||
},
|
||||
"avoid_sun": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Whether or not the pathfinder should avoid tiles that are exposed to the sun when creating paths",
|
||||
"title": "Avoid sun"
|
||||
},
|
||||
"avoid_water": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder to avoid water when creating a path",
|
||||
"title": "Avoid water"
|
||||
},
|
||||
"can_break_doors": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder that it can path through a closed door and break it",
|
||||
"title": "Can break doors"
|
||||
},
|
||||
"can_open_doors": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder that it can path through a closed door assuming the AI will open the door",
|
||||
"title": "Can open doors"
|
||||
},
|
||||
"can_pass_doors": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Whether a path can be created through a door",
|
||||
"title": "Can pass doors"
|
||||
},
|
||||
"can_path_over_water": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder whether or not it can travel on the surface of the water",
|
||||
"title": "Can path over water"
|
||||
},
|
||||
"can_sink": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Tells the pathfinder whether or not it will be pulled down by gravity while in water",
|
||||
"title": "Can sink"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.navigation.swim",
|
||||
"title": "Navigation.swim",
|
||||
"description": "Allows this entity to generate paths by walking, swimming, flying and/or climbing around and jumping up and down a block.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"avoid_portals": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder to avoid portals (like nether portals) when finding a path",
|
||||
"title": "Avoid portals"
|
||||
},
|
||||
"avoid_sun": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Whether or not the pathfinder should avoid tiles that are exposed to the sun when creating paths",
|
||||
"title": "Avoid sun"
|
||||
},
|
||||
"avoid_water": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder to avoid water when creating a path",
|
||||
"title": "Avoid water"
|
||||
},
|
||||
"can_break_doors": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder that it can path through a closed door and break it",
|
||||
"title": "Can break doors"
|
||||
},
|
||||
"can_open_doors": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder that it can path through a closed door assuming the AI will open the door",
|
||||
"title": "Can open doors"
|
||||
},
|
||||
"can_pass_doors": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Whether a path can be created through a door",
|
||||
"title": "Can pass doors"
|
||||
},
|
||||
"can_path_over_water": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder whether or not it can travel on the surface of the water",
|
||||
"title": "Can path over water"
|
||||
},
|
||||
"can_sink": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Tells the pathfinder whether or not it will be pulled down by gravity while in water",
|
||||
"title": "Can sink"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.navigation.walk",
|
||||
"title": "Minecraft.navigation.walk 1.13.0",
|
||||
"description": "Allows this entity to generate paths by walking around and jumping up and down a block like regular mobs.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"avoid_damage_blocks": {
|
||||
"type": "boolean",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"description": "UNDOCUMENTATED"
|
||||
},
|
||||
"avoid_portals": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder to avoid portals (like nether portals) when finding a path",
|
||||
"title": "Avoid portals"
|
||||
},
|
||||
"avoid_sun": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Whether or not the pathfinder should avoid tiles that are exposed to the sun when creating paths",
|
||||
"title": "Avoid sun"
|
||||
},
|
||||
"avoid_water": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder to avoid water when creating a path",
|
||||
"title": "Avoid water"
|
||||
},
|
||||
"can_break_doors": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder that it can path through a closed door and break it",
|
||||
"title": "Can break doors"
|
||||
},
|
||||
"can_open_doors": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder that it can path through a closed door assuming the AI will open the door",
|
||||
"title": "Can open doors"
|
||||
},
|
||||
"can_open_iron_doors": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder that it can path through a closed iron door assuming the AI will open the door",
|
||||
"title": "Can open iron doors"
|
||||
},
|
||||
"can_pass_doors": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Whether a path can be created through a door",
|
||||
"title": "Can pass doors"
|
||||
},
|
||||
"can_path_from_air": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder that it can start pathing when in the air",
|
||||
"title": "Can path from air"
|
||||
},
|
||||
"can_path_over_lava": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder whether or not it can travel on the surface of the lava",
|
||||
"title": "Can path over lava"
|
||||
},
|
||||
"can_path_over_water": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder whether or not it can travel on the surface of the water",
|
||||
"title": "Can path over water"
|
||||
},
|
||||
"can_sink": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Tells the pathfinder whether or not it will be pulled down by gravity while in water",
|
||||
"title": "Can sink"
|
||||
},
|
||||
"can_walk_in_lava": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Tells the pathfinder whether or not it can travel in lava like walking on ground",
|
||||
"title": "Can walk in lava"
|
||||
}
|
||||
}
|
||||
}
|
||||
289
behaviour/entities/1.13.0/components/minecraft.projectile.json
Normal file
289
behaviour/entities/1.13.0/components/minecraft.projectile.json
Normal file
@@ -0,0 +1,289 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.projectile",
|
||||
"description": "Allows the entity to be a thrown entity.",
|
||||
"type": "object",
|
||||
"title": "Projectile 1.13.0",
|
||||
"additionalProperties": false,
|
||||
"required": [],
|
||||
"properties": {
|
||||
"anchor": {
|
||||
"type": "number",
|
||||
"title": "Anchor",
|
||||
"description": "UNDOCUMENTATED"
|
||||
},
|
||||
"angle_offset": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "Determines the angle at which the projectile is thrown",
|
||||
"title": "Angle offset"
|
||||
},
|
||||
"catch_fire": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the entity hit will be set on fire",
|
||||
"title": "Catch fire"
|
||||
},
|
||||
"crit_particle_on_hurt": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the projectile will produce additional particles when a critical hit happens",
|
||||
"title": "Crit particle on hurt"
|
||||
},
|
||||
"destroy_on_hurt": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, this entity will be destroyed when hit",
|
||||
"title": "Destroy on hurt"
|
||||
},
|
||||
"filter": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Entity Definitions defined here can't be hurt by the projectile",
|
||||
"title": "Filter"
|
||||
},
|
||||
"fire_affected_by_griefing": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, whether the projectile causes fire is affected by the mob griefing game rule",
|
||||
"title": "Fire affected by griefing"
|
||||
},
|
||||
"gravity": {
|
||||
"type": "number",
|
||||
"default": 0.05,
|
||||
"description": "The gravity applied to this entity when thrown. The higher the value, the faster the entity falls",
|
||||
"title": "Gravity"
|
||||
},
|
||||
"hit_sound": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "The sound that plays when the projectile hits something",
|
||||
"title": "Hit sound"
|
||||
},
|
||||
"homing": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the projectile homes in to the nearest entity",
|
||||
"title": "Homing"
|
||||
},
|
||||
"inertia": {
|
||||
"type": "number",
|
||||
"default": 0.99,
|
||||
"description": "The fraction of the projectile's speed maintained every frame while traveling in air",
|
||||
"title": "Inertia"
|
||||
},
|
||||
"is_dangerous": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the projectile will be treated as dangerous to the players",
|
||||
"title": "Is dangerous"
|
||||
},
|
||||
"knockback": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "If true, the projectile will knock back the entity it hits",
|
||||
"title": "Knockback"
|
||||
},
|
||||
"lightning": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the entity hit will be struck by lightning",
|
||||
"title": "Lightning"
|
||||
},
|
||||
"liquid_inertia": {
|
||||
"type": "number",
|
||||
"default": 0.6,
|
||||
"description": "The fraction of the projectile's speed maintained every frame while traveling in water",
|
||||
"title": "Liquid inertia"
|
||||
},
|
||||
"multiple_targets": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "If true, the projectile can hit multiple entities per flight",
|
||||
"title": "Multiple targets"
|
||||
},
|
||||
"offset": {
|
||||
"type": "array",
|
||||
"default": [0.0, 0.5, 0.0],
|
||||
"description": "The offset from the entity's anchor where the projectile will spawn",
|
||||
"title": "Offset",
|
||||
"items": [
|
||||
{
|
||||
"type": "number",
|
||||
"title": "X"
|
||||
},
|
||||
{
|
||||
"type": "number",
|
||||
"title": "Y"
|
||||
},
|
||||
{
|
||||
"type": "number",
|
||||
"title": "Z"
|
||||
}
|
||||
]
|
||||
},
|
||||
"on_fire_time": {
|
||||
"type": "number",
|
||||
"default": 5,
|
||||
"description": "Time in seconds that the entity hit will be on fire for",
|
||||
"title": "On fire time"
|
||||
},
|
||||
"on_hit": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"title": "On hit",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"properties": {
|
||||
"arrow_effect": {
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "Arrow effect",
|
||||
"type": "object",
|
||||
"additionalProperties": false
|
||||
},
|
||||
"impact_damage": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"title": "Impact damage",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"properties": {
|
||||
"damage": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "number"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"items": [
|
||||
{
|
||||
"type": "integer"
|
||||
},
|
||||
{
|
||||
"type": "integer"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"title": "Damage",
|
||||
"description": "UNDOCUMENTATED"
|
||||
},
|
||||
"destroy_on_hit": {
|
||||
"type": "boolean",
|
||||
"title": "Destroy on hit",
|
||||
"description": "UNDOCUMENTATED"
|
||||
},
|
||||
"knockback": {
|
||||
"type": "boolean",
|
||||
"title": "Knockback",
|
||||
"description": "UNDOCUMENTATED"
|
||||
},
|
||||
"max_critical_damage": {
|
||||
"type": "integer",
|
||||
"title": "Max critical damage",
|
||||
"description": "UNDOCUMENTATED"
|
||||
},
|
||||
"min_critical_damage": {
|
||||
"type": "integer",
|
||||
"title": "Min critical damage",
|
||||
"description": "UNDOCUMENTATED"
|
||||
},
|
||||
"power_multiplier": {
|
||||
"type": "number",
|
||||
"title": "Power multiplier",
|
||||
"description": "UNDOCUMENTATED"
|
||||
},
|
||||
"semi_random_diff_damage": {
|
||||
"type": "boolean",
|
||||
"title": "Semi random diff damage",
|
||||
"description": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
},
|
||||
"stick_in_ground": {
|
||||
"additionalProperties": false,
|
||||
"title": "Stick in ground",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"shake_time": {
|
||||
"title": "Shake time",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"type": "number"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"particle": {
|
||||
"type": "string",
|
||||
"default": "iconcrack",
|
||||
"description": "Particle to use upon collision",
|
||||
"title": "Particle"
|
||||
},
|
||||
"potion_effect": {
|
||||
"type": "integer",
|
||||
"default": -1,
|
||||
"description": "Defines the effect the arrow will apply to the entity it hits",
|
||||
"title": "Potion effect"
|
||||
},
|
||||
"power": {
|
||||
"type": "number",
|
||||
"default": 1.3,
|
||||
"description": "Determines the velocity of the projectile",
|
||||
"title": "Power"
|
||||
},
|
||||
"reflect_on_hurt": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, this entity will be reflected back when hit",
|
||||
"title": "Reflect on hurt"
|
||||
},
|
||||
"semi_random_diff_damage": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, damage will be randomized based on damage and speed",
|
||||
"title": "Semi random diff damage"
|
||||
},
|
||||
"shoot_sound": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "The sound that plays when the projectile is shot",
|
||||
"title": "Shoot sound"
|
||||
},
|
||||
"shoot_target": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "If true, the projectile will be shot towards the target of the entity firing it",
|
||||
"title": "Shoot target"
|
||||
},
|
||||
"should_bounce": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the projectile will bounce upon hit",
|
||||
"title": "Should bounce"
|
||||
},
|
||||
"splash_potion": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, the projectile will be treated like a splash potion",
|
||||
"title": "Splash potion"
|
||||
},
|
||||
"splash_range": {
|
||||
"type": "number",
|
||||
"default": 4,
|
||||
"description": "Radius in blocks of the 'splash' effect",
|
||||
"title": "Splash range"
|
||||
},
|
||||
"uncertainty_base": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "The base accuracy. Accuracy is determined by the formula uncertaintyBase - difficultyLevel * uncertaintyMultiplier",
|
||||
"title": "Uncertainty base"
|
||||
},
|
||||
"uncertainty_multiplier": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "Determines how much difficulty affects accuracy. Accuracy is determined by the formula uncertaintyBase - difficultyLevel * uncertaintyMultiplier",
|
||||
"title": "Uncertainty multiplier"
|
||||
}
|
||||
}
|
||||
}
|
||||
106
behaviour/entities/1.13.0/components/minecraft.rideable.json
Normal file
106
behaviour/entities/1.13.0/components/minecraft.rideable.json
Normal file
@@ -0,0 +1,106 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.rideable",
|
||||
"description": "Determines whether this entity can be ridden. Allows specifying the different seat positions and quantity.",
|
||||
"type": "object",
|
||||
"title": "Rideable 1.13.0",
|
||||
"additionalProperties": false,
|
||||
"definitions": {
|
||||
"seats_spec": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"lock_rider_rotation": {
|
||||
"type": "number",
|
||||
"default": 181,
|
||||
"description": "Angle in degrees that a rider is allowed to rotate while riding this entity. Omit this property for no limit"
|
||||
},
|
||||
"max_rider_count": {
|
||||
"type": "integer",
|
||||
"default": 0,
|
||||
"description": "Defines the maximum number of riders that can be riding this entity for this seat to be valid"
|
||||
},
|
||||
"min_rider_count": {
|
||||
"type": "integer",
|
||||
"default": 0,
|
||||
"description": "Defines the minimum number of riders that need to be riding this entity before this seat can be used"
|
||||
},
|
||||
"position": {
|
||||
"$ref": "../../../../general/array_3_number.json",
|
||||
"default": [0.0, 0.0, 0.0],
|
||||
"description": "Position of this seat relative to this entity's position"
|
||||
},
|
||||
"rotate_rider_by": {
|
||||
"$ref": "../../../../molang/1.8.0/number.json",
|
||||
"description": "Offset to rotate riders by"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [],
|
||||
"properties": {
|
||||
"priority": {
|
||||
"ref": "types/base_priority.json"
|
||||
},
|
||||
"controlling_seat": {
|
||||
"type": "integer",
|
||||
"default": 0,
|
||||
"description": "The seat that designates the driver of the entity",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"crouching_skip_interact": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "If true, this entity can't be interacted with if the entity interacting with it is crouching",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"family_types": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": "List of entities that can ride this entity",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"interact_text": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "The text to display when the player can interact with the entity when playing with Touch-screen controls",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"pull_in_entities": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, this entity will pull in entities that are in the correct family_types into any available seats",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"rider_can_interact": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, this entity will be picked when looked at by the rider",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"seat_count": {
|
||||
"type": "integer",
|
||||
"default": 1,
|
||||
"description": "The number of entities that can ride this entity at the same time",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"seats": {
|
||||
"description": "The list of positions and number of riders for each position for entities riding this entity",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "object",
|
||||
"$ref": "#/definitions/seats_spec"
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/seats_spec"
|
||||
}
|
||||
}
|
||||
],
|
||||
"title": "TODO title"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,99 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.transformation",
|
||||
"description": "Defines this entity's ability to trade with players.",
|
||||
"type": "object",
|
||||
"title": "Transformation 1.13.0",
|
||||
"additionalProperties": false,
|
||||
"required": [],
|
||||
"properties": {
|
||||
"add": {
|
||||
"type": "object",
|
||||
"description": "List of components to add to the entity after the transformation",
|
||||
"properties": {
|
||||
"component_groups": {
|
||||
"type": "array",
|
||||
"description": "Names of component groups to add",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"title": "TODO title",
|
||||
"additionalProperties": false
|
||||
},
|
||||
"begin_transform_sound": {
|
||||
"type": "string",
|
||||
"description": "Sound to play when the transformation starts",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"delay": {
|
||||
"type": "object",
|
||||
"description": "Defines the properties of the delay for the transformation",
|
||||
"properties": {
|
||||
"block_assist_chance": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "Chance that the entity will look for nearby blocks that can speed up the transformation. Value must be between 0.0 and 1.0"
|
||||
},
|
||||
"block_chance": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "Chance that, once a block is found, will help speed up the transformation"
|
||||
},
|
||||
"block_max": {
|
||||
"type": "integer",
|
||||
"default": 0,
|
||||
"description": "Maximum number of blocks the entity will look for to aid in the transformation. If not defined or set to 0, it will be set to the block radius"
|
||||
},
|
||||
"block_radius": {
|
||||
"type": "integer",
|
||||
"default": 0,
|
||||
"description": "Distance in Blocks that the entity will search for blocks that can help the transformation"
|
||||
},
|
||||
"block_types": {
|
||||
"type": "array",
|
||||
"description": "List of blocks that can help the transformation of this entity",
|
||||
"items": {
|
||||
"$ref": "../../../../general/blocks_identifiers.json"
|
||||
}
|
||||
},
|
||||
"value": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "Time in seconds before the entity transforms"
|
||||
}
|
||||
},
|
||||
"title": "TODO title",
|
||||
"additionalProperties": false
|
||||
},
|
||||
"drop_equipment": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Cause the entity to drop all equipment upon transformation",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"into": {
|
||||
"type": "string",
|
||||
"description": "Entity Definition that this entity will transform into",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"keep_level": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If this entity has trades and has leveled up, it should maintain that level after transformation.",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"keep_owner": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If this entity is owned by another entity, it should remain owned after transformation.",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"transformation_sound": {
|
||||
"type": "string",
|
||||
"description": "Sound to play when the entity is done transforming",
|
||||
"title": "TODO title"
|
||||
}
|
||||
}
|
||||
}
|
||||
18
behaviour/entities/1.13.0/entities.json
Normal file
18
behaviour/entities/1.13.0/entities.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entity1.13.0",
|
||||
"type": "object",
|
||||
"title": "The minecraft behaviour entity 1.13.0",
|
||||
"description": "TODO description",
|
||||
"required": ["format_version", "minecraft:entity"],
|
||||
"properties": {
|
||||
"format_version": {
|
||||
"title": "The 1.13.0 format_version",
|
||||
"type": "string",
|
||||
"const": "1.13.0",
|
||||
"description": "A version that tells minecraft what type of data format can be expected when reading this file."
|
||||
},
|
||||
"minecraft:entity": { "$ref": "minecraft.entity.json", "description": "TODO description: minecraft:entity", "title": "Entity" }
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
133
behaviour/entities/1.13.0/events.json
Normal file
133
behaviour/entities/1.13.0/events.json
Normal file
@@ -0,0 +1,133 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.events1.13.0",
|
||||
"type": "object",
|
||||
"title": "Entity 1.13.0",
|
||||
"definitions": {
|
||||
"addremove": {
|
||||
"additionalProperties": false,
|
||||
"title": "The add/remove schema",
|
||||
"description": "The components groups to add or remove",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"component_groups": {
|
||||
"title": "The component groups schema",
|
||||
"description": "The components groups to add or remove",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"description": "TODO description: component groups",
|
||||
"title": "Component Groups"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"event_base": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"add": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: add",
|
||||
"title": "Add"
|
||||
},
|
||||
"remove": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: remove",
|
||||
"title": "Remove"
|
||||
},
|
||||
"randomize": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"required": ["weight"],
|
||||
"properties": {
|
||||
"add": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: add",
|
||||
"title": "Add"
|
||||
},
|
||||
"remove": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: remove",
|
||||
"title": "Remove"
|
||||
},
|
||||
"trigger": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"weight": {
|
||||
"type": "number",
|
||||
"description": "TODO description: weight",
|
||||
"title": "Weight"
|
||||
}
|
||||
},
|
||||
"description": "TODO description: randomize",
|
||||
"title": "Randomize"
|
||||
},
|
||||
"description": "TODO description: randomize",
|
||||
"title": "Randomize"
|
||||
},
|
||||
"sequence": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "TODO description: sequence",
|
||||
"title": "Sequence",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"add": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: add",
|
||||
"title": "Add"
|
||||
},
|
||||
"remove": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: remove",
|
||||
"title": "Remove"
|
||||
},
|
||||
"filters": {
|
||||
"$ref": "./filters.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"description": "A series of filters and components to be added",
|
||||
"title": "Sequences"
|
||||
},
|
||||
"filters": {
|
||||
"$ref": "./filters.json"
|
||||
},
|
||||
"trigger": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"minecraft:entity_transformed": {
|
||||
"description": "Event called on an entity that transforms into another entity.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "Entity Transformed"
|
||||
},
|
||||
"minecraft:minecraft:entity_born": {
|
||||
"description": "Event called on an entity that is spawned through two entities breeding.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "Minecraft:entity Born"
|
||||
},
|
||||
"minecraft:entity_spawned": {
|
||||
"description": "Event called on an entity that is placed in the level.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "Entity Spawned"
|
||||
},
|
||||
"minecraft:on_prime": {
|
||||
"description": "Event called on an entity whose fuse is lit and is ready to explode.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "On Prime"
|
||||
}
|
||||
},
|
||||
"additionalProperties": {
|
||||
"$ref": "#/definitions/event_base"
|
||||
},
|
||||
"description": "TODO description: "
|
||||
}
|
||||
332
behaviour/entities/1.13.0/filters.json
Normal file
332
behaviour/entities/1.13.0/filters.json
Normal file
@@ -0,0 +1,332 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.minecraft.filters",
|
||||
"title": "Filters 1.13.0",
|
||||
"definitions": {
|
||||
"filters_spec": {
|
||||
"oneOf": [
|
||||
{
|
||||
"propertyNames": {
|
||||
"enum": ["all_of", "any_of", "none_of"]
|
||||
},
|
||||
"properties": {
|
||||
"all_of": {
|
||||
"title": "All of",
|
||||
"description": "All tests in an 'all_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"any_of": {
|
||||
"title": "Any of",
|
||||
"description": "One or more tests in an 'any_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"none_of": {
|
||||
"title": "None of",
|
||||
"description": "All tests in a 'none_of' group must fail in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"required": ["test"],
|
||||
"properties": {
|
||||
"all_of": {
|
||||
"title": "All of",
|
||||
"description": "All tests in an 'all_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"any_of": {
|
||||
"title": "Any of",
|
||||
"description": "One or more tests in an 'any_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"none_of": {
|
||||
"title": "None of",
|
||||
"description": "All tests in a 'none_of' group must fail in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
}
|
||||
},
|
||||
"allOf": [
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "clock_time" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/clock_time.json" }
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": { "test": { "const": "distance_to_nearest_player" } }
|
||||
},
|
||||
"then": { "$ref": "../1.8.0/filters/distance_to_nearest_player.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_ability" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_ability.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_biome_tag" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_biome_tag.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_component" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_component.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_container_open" } } },
|
||||
"then": { "$ref": "filters/has_container_open.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_damage" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_damage.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_equipment" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_equipment.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_mob_effect" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_mob_effect.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_ranged_weapon" } } },
|
||||
"then": { "$ref": "filters/has_ranged_weapon.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_tag" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_tag.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_target" } } },
|
||||
"then": { "$ref": "filters/has_target.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_trade_supply" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_trade_supply.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "hourly_clock_time" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/hourly_clock_time.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_caravan" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_caravan.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_clouds" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_clouds.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_lava" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_lava.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_nether" } } },
|
||||
"then": { "$ref": "filters/in_nether.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_water" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_water.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_water_or_rain" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_water_or_rain.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "inactivity_timer" } } },
|
||||
"then": { "$ref": "filters/inactivity_timer.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_altitude" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_altitude.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_avoiding_mobs" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_avoiding_mobs.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_biome" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_biome.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_block" } } },
|
||||
"then": { "$ref": "filters/is_block.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_brightness" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_brightness.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_climbing" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_climbing.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_color" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_color.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_daytime" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_daytime.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_difficulty" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_difficulty.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_family" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_family.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_game_rule" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_game_rule.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_humid" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_humid.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_immobile" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_immobile.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_in_village" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_in_village.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_leashed" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_leashed.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_leashed_to" } } },
|
||||
"then": { "$ref": "filters/is_leashed_to.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_mark_variant" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_mark_variant.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_moving" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_moving.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_owner" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_owner.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_persistent" } } },
|
||||
"then": { "$ref": "filters/is_persistent.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_riding" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_riding.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_skin_id" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_skin_id.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_sleeping" } } },
|
||||
"then": { "$ref": "filters/is_sleeping.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_sneaking" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_sneaking.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_snow_covered" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_snow_covered.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_target" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_target.json" }
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": { "test": { "const": "is_temperature_type" } }
|
||||
},
|
||||
"then": { "$ref": "../1.8.0/filters/is_temperature_type.json" }
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": { "test": { "const": "is_temperature_value" } }
|
||||
},
|
||||
"then": { "$ref": "../1.8.0/filters/is_temperature_value.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_underground" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_underground.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_underwater" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_underwater.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_variant" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_variant.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_visible" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_visible.json" }
|
||||
},
|
||||
{
|
||||
"not": {
|
||||
"properties": { "test": { "const": "is_weather" } },
|
||||
"$comment": "DEPRECATED"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "light_level" } } },
|
||||
"then": { "$ref": "filters/light_level.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "moon_intensity" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/moon_intensity.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "moon_phase" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/moon_phase.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "on_ground" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/on_ground.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "on_ladder" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/on_ladder.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "random_chance" } } },
|
||||
"then": { "$ref": "filters/random_chance.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "rider_count" } } },
|
||||
"then": { "$ref": "filters/rider_count.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "surface_mob" } } },
|
||||
"then": { "$ref": "filters/surface_mob.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "trusts" } } },
|
||||
"then": { "$ref": "filters/trusts.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "weather" } } },
|
||||
"then": { "$ref": "filters/weather.json" }
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": { "test": { "const": "weather_at_position" } }
|
||||
},
|
||||
"then": { "$ref": "filters/weather_at_position.json" }
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"groups_spec": {
|
||||
"oneOf": [
|
||||
{ "type": "array", "items": { "$ref": "#/definitions/groups_spec" } },
|
||||
{ "type": "object", "$ref": "#/definitions/filters_spec" }
|
||||
]
|
||||
}
|
||||
},
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
}
|
||||
30
behaviour/entities/1.13.0/filters/has_container_open.json
Normal file
30
behaviour/entities/1.13.0/filters/has_container_open.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.filters.has_container_open",
|
||||
"type": "object",
|
||||
"title": "Filters has container open 1.13.0",
|
||||
"description": "Returns true when the subject Player entity has opened a container.",
|
||||
"properties": {
|
||||
"test": {
|
||||
"type": "string",
|
||||
"title": "Test",
|
||||
"description": "The test property"
|
||||
},
|
||||
"operator": { "$ref": "types/base_operator.json" },
|
||||
"subject": { "$ref": "types/base_subject.json" },
|
||||
"value": {
|
||||
"description": "True or false.",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"enum": ["true", "false"]
|
||||
}
|
||||
],
|
||||
"title": "Value"
|
||||
}
|
||||
}
|
||||
}
|
||||
30
behaviour/entities/1.13.0/filters/has_ranged_weapon.json
Normal file
30
behaviour/entities/1.13.0/filters/has_ranged_weapon.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.filters.has_ranged_weapon",
|
||||
"type": "object",
|
||||
"title": "Filters has ranged weapon 1.13.0",
|
||||
"description": "Returns true when the subject entity is holding a ranged weapon like a bow or crossbow.",
|
||||
"properties": {
|
||||
"test": {
|
||||
"type": "string",
|
||||
"title": "Test",
|
||||
"description": "The test property"
|
||||
},
|
||||
"operator": { "$ref": "types/base_operator.json" },
|
||||
"subject": { "$ref": "types/base_subject.json" },
|
||||
"value": {
|
||||
"description": "True or false.",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"enum": ["true", "false"]
|
||||
}
|
||||
],
|
||||
"title": "Value"
|
||||
}
|
||||
}
|
||||
}
|
||||
30
behaviour/entities/1.13.0/filters/has_target.json
Normal file
30
behaviour/entities/1.13.0/filters/has_target.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.filters.has_target",
|
||||
"type": "object",
|
||||
"title": "Filters has target 1.13.0",
|
||||
"description": "Returns true if the subject entity has a valid target.",
|
||||
"properties": {
|
||||
"test": {
|
||||
"type": "string",
|
||||
"title": "Test",
|
||||
"description": "The test property"
|
||||
},
|
||||
"operator": { "$ref": "types/base_operator.json" },
|
||||
"subject": { "$ref": "types/base_subject.json" },
|
||||
"value": {
|
||||
"description": "True or false.",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"enum": ["true", "false"]
|
||||
}
|
||||
],
|
||||
"title": "Value"
|
||||
}
|
||||
}
|
||||
}
|
||||
30
behaviour/entities/1.13.0/filters/in_nether.json
Normal file
30
behaviour/entities/1.13.0/filters/in_nether.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.filters.in_nether",
|
||||
"type": "object",
|
||||
"title": "Filters in nether 1.13.0",
|
||||
"description": "Returns true when the subject entity is in Nether.",
|
||||
"properties": {
|
||||
"test": {
|
||||
"type": "string",
|
||||
"title": "Test",
|
||||
"description": "The test property"
|
||||
},
|
||||
"operator": { "$ref": "types/base_operator.json" },
|
||||
"subject": { "$ref": "types/base_subject.json" },
|
||||
"value": {
|
||||
"description": "True or false.",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"enum": ["true", "false"]
|
||||
}
|
||||
],
|
||||
"title": "Value"
|
||||
}
|
||||
}
|
||||
}
|
||||
22
behaviour/entities/1.13.0/filters/inactivity_timer.json
Normal file
22
behaviour/entities/1.13.0/filters/inactivity_timer.json
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.filters.inactivity_timer",
|
||||
"type": "object",
|
||||
"title": "Filters inactivity timer 1.13.0",
|
||||
"description": "Tests if the specified duration in seconds of inactivity for despawning has been reached.",
|
||||
"required": ["value"],
|
||||
"properties": {
|
||||
"test": {
|
||||
"type": "string",
|
||||
"title": "Test",
|
||||
"description": "The test property"
|
||||
},
|
||||
"operator": { "$ref": "types/base_operator.json" },
|
||||
"subject": { "$ref": "types/base_subject.json" },
|
||||
"value": {
|
||||
"description": "The Family name to look for",
|
||||
"type": "integer",
|
||||
"title": "Value"
|
||||
}
|
||||
}
|
||||
}
|
||||
22
behaviour/entities/1.13.0/filters/is_block.json
Normal file
22
behaviour/entities/1.13.0/filters/is_block.json
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.filters.is_block",
|
||||
"type": "object",
|
||||
"title": "Filters is block 1.13.0",
|
||||
"description": "Returns true when the block has the given name.",
|
||||
"required": ["value"],
|
||||
"properties": {
|
||||
"test": {
|
||||
"type": "string",
|
||||
"title": "Test",
|
||||
"description": "The test property"
|
||||
},
|
||||
"operator": { "$ref": "types/base_operator.json" },
|
||||
"subject": { "$ref": "types/base_subject.json" },
|
||||
"value": {
|
||||
"description": "The Family name to look for",
|
||||
"type": "string",
|
||||
"title": "Value"
|
||||
}
|
||||
}
|
||||
}
|
||||
30
behaviour/entities/1.13.0/filters/is_leashed_to.json
Normal file
30
behaviour/entities/1.13.0/filters/is_leashed_to.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.filters.is_leashed_to",
|
||||
"type": "object",
|
||||
"title": "Filters is leashed to 1.13.0",
|
||||
"description": "Returns true if the subject entity leashed to the calling entity.",
|
||||
"properties": {
|
||||
"test": {
|
||||
"type": "string",
|
||||
"title": "Test",
|
||||
"description": "The test property"
|
||||
},
|
||||
"operator": { "$ref": "types/base_operator.json" },
|
||||
"subject": { "$ref": "types/base_subject.json" },
|
||||
"value": {
|
||||
"description": "True or false.",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"enum": ["true", "false"]
|
||||
}
|
||||
],
|
||||
"title": "Value"
|
||||
}
|
||||
}
|
||||
}
|
||||
30
behaviour/entities/1.13.0/filters/is_persistent.json
Normal file
30
behaviour/entities/1.13.0/filters/is_persistent.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.filters.is_persistent",
|
||||
"type": "object",
|
||||
"title": "Filters is persistent 1.13.0",
|
||||
"description": "Tests if the subject's persistence matches the bool value passed in.",
|
||||
"properties": {
|
||||
"test": {
|
||||
"type": "string",
|
||||
"title": "Test",
|
||||
"description": "The test property"
|
||||
},
|
||||
"operator": { "$ref": "types/base_operator.json" },
|
||||
"subject": { "$ref": "types/base_subject.json" },
|
||||
"value": {
|
||||
"description": "True or false.",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"enum": ["true", "false"]
|
||||
}
|
||||
],
|
||||
"title": "Value"
|
||||
}
|
||||
}
|
||||
}
|
||||
30
behaviour/entities/1.13.0/filters/is_sleeping.json
Normal file
30
behaviour/entities/1.13.0/filters/is_sleeping.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.filters.is_sleeping",
|
||||
"type": "object",
|
||||
"title": "Filters is sleeping 1.13.0",
|
||||
"description": "Tests whether the Subject is sleeping.",
|
||||
"properties": {
|
||||
"test": {
|
||||
"type": "string",
|
||||
"title": "Test",
|
||||
"description": "The test property"
|
||||
},
|
||||
"operator": { "$ref": "types/base_operator.json" },
|
||||
"subject": { "$ref": "types/base_subject.json" },
|
||||
"value": {
|
||||
"description": "True or false.",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"enum": ["true", "false"]
|
||||
}
|
||||
],
|
||||
"title": "Value"
|
||||
}
|
||||
}
|
||||
}
|
||||
24
behaviour/entities/1.13.0/filters/light_level.json
Normal file
24
behaviour/entities/1.13.0/filters/light_level.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.filters.light_level",
|
||||
"type": "object",
|
||||
"title": "Filters light level 1.13.0",
|
||||
"description": "Tests is the mob is outside of the specified light level range (0, 16).",
|
||||
"required": ["value"],
|
||||
"properties": {
|
||||
"test": {
|
||||
"type": "string",
|
||||
"title": "Test",
|
||||
"description": "The test property"
|
||||
},
|
||||
"operator": { "$ref": "types/base_operator.json" },
|
||||
"subject": { "$ref": "types/base_subject.json" },
|
||||
"value": {
|
||||
"description": "An integer value.",
|
||||
"type": "integer",
|
||||
"title": "Value",
|
||||
"minimum": 0,
|
||||
"maximum": 16
|
||||
}
|
||||
}
|
||||
}
|
||||
22
behaviour/entities/1.13.0/filters/random_chance.json
Normal file
22
behaviour/entities/1.13.0/filters/random_chance.json
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.filters.random_chance",
|
||||
"type": "object",
|
||||
"title": "Filters random chance 1.13.0",
|
||||
"description": "Returns true if the random chance rolls 0 out of a specified max range.",
|
||||
"required": ["value"],
|
||||
"properties": {
|
||||
"test": {
|
||||
"type": "string",
|
||||
"title": "Test",
|
||||
"description": "The test property"
|
||||
},
|
||||
"operator": { "$ref": "types/base_operator.json" },
|
||||
"subject": { "$ref": "types/base_subject.json" },
|
||||
"value": {
|
||||
"description": "An integer value.",
|
||||
"type": "integer",
|
||||
"title": "Value"
|
||||
}
|
||||
}
|
||||
}
|
||||
22
behaviour/entities/1.13.0/filters/rider_count.json
Normal file
22
behaviour/entities/1.13.0/filters/rider_count.json
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.filters.rider_count",
|
||||
"type": "object",
|
||||
"title": "Filters rider count 1.13.0",
|
||||
"description": "Returns the number of riders on this entity.",
|
||||
"required": ["value"],
|
||||
"properties": {
|
||||
"test": {
|
||||
"type": "string",
|
||||
"title": "Test",
|
||||
"description": "The test property"
|
||||
},
|
||||
"operator": { "$ref": "types/base_operator.json" },
|
||||
"subject": { "$ref": "types/base_subject.json" },
|
||||
"value": {
|
||||
"description": "An integer value.",
|
||||
"type": "integer",
|
||||
"title": "Value"
|
||||
}
|
||||
}
|
||||
}
|
||||
30
behaviour/entities/1.13.0/filters/surface_mob.json
Normal file
30
behaviour/entities/1.13.0/filters/surface_mob.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.filters.surface_mob",
|
||||
"type": "object",
|
||||
"title": "Filters surface mob 1.13.0",
|
||||
"description": "Tests if the subject is a surface mob.",
|
||||
"properties": {
|
||||
"test": {
|
||||
"type": "string",
|
||||
"title": "Test",
|
||||
"description": "The test property"
|
||||
},
|
||||
"operator": { "$ref": "types/base_operator.json" },
|
||||
"subject": { "$ref": "types/base_subject.json" },
|
||||
"value": {
|
||||
"description": "True or false.",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"enum": ["true", "false"]
|
||||
}
|
||||
],
|
||||
"title": "Value"
|
||||
}
|
||||
}
|
||||
}
|
||||
30
behaviour/entities/1.13.0/filters/trusts.json
Normal file
30
behaviour/entities/1.13.0/filters/trusts.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.filters.trusts",
|
||||
"type": "object",
|
||||
"title": "Filters trusts 1.13.0",
|
||||
"description": "Returns true if the subject is trusted by entity.",
|
||||
"properties": {
|
||||
"test": {
|
||||
"type": "string",
|
||||
"title": "Test",
|
||||
"description": "The test property"
|
||||
},
|
||||
"operator": { "$ref": "types/base_operator.json" },
|
||||
"subject": { "$ref": "types/base_subject.json" },
|
||||
"value": {
|
||||
"description": "True or false.",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"enum": ["true", "false"]
|
||||
}
|
||||
],
|
||||
"title": "Value"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.filters.1.13.0.base_operator",
|
||||
"title": "Operator",
|
||||
"type": "string",
|
||||
"description": "The operator comparison to apply with 'value'.",
|
||||
"default": "equals",
|
||||
"enum": ["!=", "<", "<=", "<>", "=", "==", ">", ">=", "equals", "not"]
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.filters.1.13.0.base_subject",
|
||||
"title": "Subject 1.13.0",
|
||||
"type": "string",
|
||||
"description": "The subject of this filter test.",
|
||||
"default": "self",
|
||||
"enum": ["block", "damager", "other", "parent", "player", "self", "target"]
|
||||
}
|
||||
74
behaviour/entities/1.13.0/filters/types/base_test.json
Normal file
74
behaviour/entities/1.13.0/filters/types/base_test.json
Normal file
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.filters.1.13.0.base_test",
|
||||
"title": "Test 1.13.0",
|
||||
"type": "string",
|
||||
"description": "The test operation for 1.13.0",
|
||||
"enum": [
|
||||
"clock_time",
|
||||
"distance_to_nearest_player",
|
||||
"has_ability",
|
||||
"has_biome_tag",
|
||||
"has_component",
|
||||
"has_container_open",
|
||||
"has_damage",
|
||||
"has_equipment",
|
||||
"has_mob_effect",
|
||||
"has_ranged_weapon",
|
||||
"has_tag",
|
||||
"has_target",
|
||||
"has_trade_supply",
|
||||
"hourly_clock_time",
|
||||
"in_caravan",
|
||||
"in_clouds",
|
||||
"in_lava",
|
||||
"in_nether",
|
||||
"in_water",
|
||||
"in_water_or_rain",
|
||||
"inactivity_timer",
|
||||
"is_altitude",
|
||||
"is_avoiding_mobs",
|
||||
"is_biome",
|
||||
"is_block",
|
||||
"is_brightness",
|
||||
"is_climbing",
|
||||
"is_color",
|
||||
"is_daytime",
|
||||
"is_difficulty",
|
||||
"is_family",
|
||||
"is_game_rule",
|
||||
"is_humid",
|
||||
"is_immobile",
|
||||
"is_in_village",
|
||||
"is_leashed",
|
||||
"is_leashed_to",
|
||||
"is_mark_variant",
|
||||
"is_moving",
|
||||
"is_owner",
|
||||
"is_persistent",
|
||||
"is_riding",
|
||||
"is_skin_id",
|
||||
"is_sleeping",
|
||||
"is_sneaking",
|
||||
"is_snow_covered",
|
||||
"is_target",
|
||||
"is_temperature_type",
|
||||
"is_temperature_value",
|
||||
"is_underground",
|
||||
"is_underwater",
|
||||
"is_variant",
|
||||
"is_visible",
|
||||
"is_weather",
|
||||
"light_level",
|
||||
"moon_intensity",
|
||||
"moon_phase",
|
||||
"on_ground",
|
||||
"on_ladder",
|
||||
"random_chance",
|
||||
"rider_count",
|
||||
"surface_mob",
|
||||
"trusts",
|
||||
"weather",
|
||||
"weather_at_position"
|
||||
]
|
||||
}
|
||||
22
behaviour/entities/1.13.0/filters/weather.json
Normal file
22
behaviour/entities/1.13.0/filters/weather.json
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.filters.weather",
|
||||
"type": "object",
|
||||
"title": "Filters weather 1.13.0",
|
||||
"description": "Tests the current weather in the dimension against a provided weather value.",
|
||||
"required": ["value"],
|
||||
"properties": {
|
||||
"test": {
|
||||
"type": "string",
|
||||
"title": "Test",
|
||||
"description": "The test property"
|
||||
},
|
||||
"operator": { "$ref": "types/base_operator.json" },
|
||||
"subject": { "$ref": "types/base_subject.json" },
|
||||
"value": {
|
||||
"description": "The Family name to look for",
|
||||
"type": "string",
|
||||
"title": "Value"
|
||||
}
|
||||
}
|
||||
}
|
||||
22
behaviour/entities/1.13.0/filters/weather_at_position.json
Normal file
22
behaviour/entities/1.13.0/filters/weather_at_position.json
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.filters.weather_at_position",
|
||||
"type": "object",
|
||||
"title": "Filters weather at position 1.13.0",
|
||||
"description": "Tests the current weather, at the actor's position, against a provided weather value.",
|
||||
"required": ["value"],
|
||||
"properties": {
|
||||
"test": {
|
||||
"type": "string",
|
||||
"title": "Test",
|
||||
"description": "The test property"
|
||||
},
|
||||
"operator": { "$ref": "types/base_operator.json" },
|
||||
"subject": { "$ref": "types/base_subject.json" },
|
||||
"value": {
|
||||
"description": "The Family name to look for",
|
||||
"type": "string",
|
||||
"title": "Value"
|
||||
}
|
||||
}
|
||||
}
|
||||
104
behaviour/entities/1.13.0/minecraft.entity.json
Normal file
104
behaviour/entities/1.13.0/minecraft.entity.json
Normal file
@@ -0,0 +1,104 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.minecraft:entity",
|
||||
"title": "Entity 1.13.0",
|
||||
"required": ["description"],
|
||||
"properties": {
|
||||
"description": {
|
||||
"required": ["identifier"],
|
||||
"title": "Description",
|
||||
"description": "The description of the this entity",
|
||||
"properties": {
|
||||
"animations": {
|
||||
"title": "Animations",
|
||||
"description": "Sets the mapping of internal animation / animation controllers references to actual animations. This is a JSON Object of name/animation pairs",
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"title": "Animation (controller)",
|
||||
"description": "The name of the animation controller / animation",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"identifier": {
|
||||
"$ref": "../../../general/entity/identifier.json",
|
||||
"description": "Sets the identifier for this entity's description.",
|
||||
"title": "Identifier"
|
||||
},
|
||||
"is_spawnable": {
|
||||
"type": "boolean",
|
||||
"title": "Is spawnable",
|
||||
"description": "Sets whether or not this entity has a spawn egg in the creative ui."
|
||||
},
|
||||
"is_summonable": {
|
||||
"type": "boolean",
|
||||
"title": "The is summonable property",
|
||||
"description": "Sets whether or not we can summon this entity using commands such as /summon."
|
||||
},
|
||||
"is_experimental": {
|
||||
"type": "boolean",
|
||||
"title": "Is experimental",
|
||||
"description": "Sets whether or not this entity is experimental. Experimental entities are only enabled when the experimental toggle is enabled."
|
||||
},
|
||||
"runtime_identifier": {
|
||||
"type": "string",
|
||||
"title": "Runtime identifier",
|
||||
"description": "Sets the name for the Vanilla Minecraft identifier this entity will use to build itself from."
|
||||
},
|
||||
"scripts": {
|
||||
"type": "object",
|
||||
"title": "Scripts",
|
||||
"description": "Sets the mapping of internal animation controller references to actual animation controller. This is a JSON Array of name/animation-controller pairs",
|
||||
"properties": {
|
||||
"animate": {
|
||||
"type": "array",
|
||||
"title": "Animate",
|
||||
"description": "Tells minecraft to run which animation / animation controllers and under what conditions",
|
||||
"items": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"title": "Animation",
|
||||
"description": "The name of an animation controller referenced in animations"
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"title": "Conditional Animation",
|
||||
"description": "TODO",
|
||||
"additionalProperties": {
|
||||
"type": "string",
|
||||
"title": "Animation"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"component_groups": {
|
||||
"title": "Component groups",
|
||||
"description": "Each group when add / remove the default components",
|
||||
"uniqueItems": true,
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"$ref": "components.json",
|
||||
"uniqueItems": true,
|
||||
"description": "The components that are added as the foundation of the entity",
|
||||
"title": "The component schema"
|
||||
}
|
||||
},
|
||||
"components": {
|
||||
"$ref": "components.json",
|
||||
"uniqueItems": true,
|
||||
"description": "The components that are added as the foundation of the entity",
|
||||
"title": "The component schema"
|
||||
},
|
||||
"events": {
|
||||
"$ref": "events.json",
|
||||
"uniqueItems": true,
|
||||
"description": "The events that the entity can run, these add or remove components_groups",
|
||||
"title": "The events schema"
|
||||
}
|
||||
}
|
||||
}
|
||||
44
behaviour/entities/1.13.0/types/entity_types.json
Normal file
44
behaviour/entities/1.13.0/types/entity_types.json
Normal file
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.type.entity_types.1.13.0",
|
||||
"title": "Entity types 1.13.0",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "The entity type",
|
||||
"title": "The entity type",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"filters": { "type": "object", "$ref": "../filters.json" },
|
||||
"max_dist": {
|
||||
"type": "number",
|
||||
"description": "Maximum distance this mob can be away to be a valid choice",
|
||||
"default": 16,
|
||||
"title": "Max Dist"
|
||||
},
|
||||
"walk_speed_multiplier": {
|
||||
"type": "number",
|
||||
"description": "Multiplier for the walking speed. A value of 1.0 means the speed is unchanged",
|
||||
"default": 16,
|
||||
"title": "Walk Speed Multiplier"
|
||||
},
|
||||
"sprint_speed_multiplier": {
|
||||
"type": "number",
|
||||
"description": "Multiplier for the running speed. A value of 1.0 means the speed is unchanged",
|
||||
"default": 16,
|
||||
"title": "Sprint Speed Multiplier"
|
||||
},
|
||||
"must_see": {
|
||||
"type": "boolean",
|
||||
"description": "If true, the mob has to be visible to be a valid choice",
|
||||
"default": false,
|
||||
"title": "Must See"
|
||||
},
|
||||
"must_see_forget_duration": {
|
||||
"type": "number",
|
||||
"description": "Determines the amount of time in seconds that this mob will look for a target before forgetting about it and looking for a new one when the target isn't visible any more",
|
||||
"default": 3,
|
||||
"title": "Must See Forget Duration"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
29
behaviour/entities/1.13.0/types/event.json
Normal file
29
behaviour/entities/1.13.0/types/event.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.entities.1.13.0.event",
|
||||
"title": "Event",
|
||||
"description": "Minecraft behaviour event 1.13.0",
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"pattern": "^[a-zA-Z0-9_\\-:]+$",
|
||||
"description": "The event to fire"
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"event": {
|
||||
"type": "string",
|
||||
"pattern": "^[a-zA-Z0-9_\\-:]+$",
|
||||
"description": "The event to fire",
|
||||
"title": "Event"
|
||||
},
|
||||
"target": {
|
||||
"type": "string",
|
||||
"description": "The target of the event",
|
||||
"enum": ["block", "damager", "other", "parent", "player", "self", "target", "baby"]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
10
behaviour/entities/1.13.0/types/range_number_type.json
Normal file
10
behaviour/entities/1.13.0/types/range_number_type.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.type.range_number_type.1.13.0",
|
||||
"title": "Range [a, b]",
|
||||
"description": "A described range",
|
||||
"items": [
|
||||
{ "type": "number", "title": "Range: A", "description": "The first value of the range" },
|
||||
{ "type": "number", "title": "Range: B", "description": "The second value of the range" }
|
||||
]
|
||||
}
|
||||
18
behaviour/entities/1.13.0/types/trigger.json
Normal file
18
behaviour/entities/1.13.0/types/trigger.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.type.trigger.1.13.0",
|
||||
"title": "Trigger 1.13.0",
|
||||
"type": "object",
|
||||
"description": "Trigger to fire",
|
||||
"minProperties": 1,
|
||||
"properties": {
|
||||
"event": {
|
||||
"type": "string",
|
||||
"description": "Event",
|
||||
"title": "The event to fire"
|
||||
},
|
||||
"filters": { "$ref": "../filters.json", "description": "The filters to check to determine if the event should be fired", "title": "Filters" },
|
||||
"target": { "$ref": "../filters/types/base_subject.json", "description": "The entity to target", "title": "Target" }
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
8
behaviour/entities/1.14.0/components.json
Normal file
8
behaviour/entities/1.14.0/components.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.components1.14.0",
|
||||
"type": "object",
|
||||
"title": "Entity 1.14.0",
|
||||
"$ref": "../1.13.0/components.json",
|
||||
"description": "TODO description"
|
||||
}
|
||||
18
behaviour/entities/1.14.0/entities.json
Normal file
18
behaviour/entities/1.14.0/entities.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entity1.14.0",
|
||||
"type": "object",
|
||||
"title": "The minecraft behaviour entity 1.14.0",
|
||||
"description": "TODO description",
|
||||
"required": ["format_version", "minecraft:entity"],
|
||||
"properties": {
|
||||
"format_version": {
|
||||
"title": "The 1.14.0 format_version",
|
||||
"type": "string",
|
||||
"const": "1.14.0",
|
||||
"description": "A version that tells minecraft what type of data format can be expected when reading this file."
|
||||
},
|
||||
"minecraft:entity": { "$ref": "minecraft.entity.json" }
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
133
behaviour/entities/1.14.0/events.json
Normal file
133
behaviour/entities/1.14.0/events.json
Normal file
@@ -0,0 +1,133 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.events.1.14.0",
|
||||
"type": "object",
|
||||
"title": "Entity 1.14.0",
|
||||
"definitions": {
|
||||
"addremove": {
|
||||
"additionalProperties": false,
|
||||
"title": "The add/remove schema",
|
||||
"description": "The components groups to add or remove",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"component_groups": {
|
||||
"title": "The component groups schema",
|
||||
"description": "The components groups to add or remove",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"description": "TODO description: component groups",
|
||||
"title": "Component Groups"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"event_base": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"add": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: add",
|
||||
"title": "Add"
|
||||
},
|
||||
"remove": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: remove",
|
||||
"title": "Remove"
|
||||
},
|
||||
"randomize": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"required": ["weight"],
|
||||
"properties": {
|
||||
"add": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: add",
|
||||
"title": "Add"
|
||||
},
|
||||
"remove": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: remove",
|
||||
"title": "Remove"
|
||||
},
|
||||
"trigger": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
},
|
||||
"weight": {
|
||||
"type": "number",
|
||||
"description": "TODO description: weight",
|
||||
"title": "Weight"
|
||||
}
|
||||
},
|
||||
"description": "TODO description: randomize",
|
||||
"title": "Randomize"
|
||||
},
|
||||
"description": "TODO description: randomize",
|
||||
"title": "Randomize"
|
||||
},
|
||||
"sequence": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "TODO description: sequence",
|
||||
"title": "Sequence",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"add": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: add",
|
||||
"title": "Add"
|
||||
},
|
||||
"remove": {
|
||||
"$ref": "#/definitions/addremove",
|
||||
"description": "TODO description: remove",
|
||||
"title": "Remove"
|
||||
},
|
||||
"filters": {
|
||||
"$ref": "./filters.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"description": "A series of filters and components to be added",
|
||||
"title": "Sequences"
|
||||
},
|
||||
"filters": {
|
||||
"$ref": "./filters.json"
|
||||
},
|
||||
"trigger": {
|
||||
"type": "string",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"minecraft:entity_transformed": {
|
||||
"description": "Event called on an entity that transforms into another entity.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "Entity Transformed"
|
||||
},
|
||||
"minecraft:minecraft:entity_born": {
|
||||
"description": "Event called on an entity that is spawned through two entities breeding.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "Minecraft:entity Born"
|
||||
},
|
||||
"minecraft:entity_spawned": {
|
||||
"description": "Event called on an entity that is placed in the level.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "Entity Spawned"
|
||||
},
|
||||
"minecraft:on_prime": {
|
||||
"description": "Event called on an entity whose fuse is lit and is ready to explode.",
|
||||
"$ref": "#/definitions/event_base",
|
||||
"title": "On Prime"
|
||||
}
|
||||
},
|
||||
"additionalProperties": {
|
||||
"$ref": "#/definitions/event_base"
|
||||
},
|
||||
"description": "TODO description: "
|
||||
}
|
||||
290
behaviour/entities/1.14.0/filters.json
Normal file
290
behaviour/entities/1.14.0/filters.json
Normal file
@@ -0,0 +1,290 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.14.0.minecraft.filters",
|
||||
"title": "Filters 1.14.0",
|
||||
"definitions": {
|
||||
"filters_spec": {
|
||||
"oneOf": [
|
||||
{
|
||||
"propertyNames": {
|
||||
"enum": ["all_of", "any_of", "none_of"]
|
||||
},
|
||||
"properties": {
|
||||
"all_of": {
|
||||
"title": "All of",
|
||||
"description": "All tests in an 'all_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"any_of": {
|
||||
"title": "Any of",
|
||||
"description": "One or more tests in an 'any_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"none_of": {
|
||||
"title": "None of",
|
||||
"description": "All tests in a 'none_of' group must fail in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"required": ["test"],
|
||||
"properties": {
|
||||
"all_of": {
|
||||
"title": "All of",
|
||||
"description": "All tests in an 'all_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"any_of": {
|
||||
"title": "Any of",
|
||||
"description": "One or more tests in an 'any_of' group must pass in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
},
|
||||
"none_of": {
|
||||
"title": "None of",
|
||||
"description": "All tests in a 'none_of' group must fail in order for the group to pass.",
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
}
|
||||
},
|
||||
"allOf": [
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "clock_time" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/clock_time.json" }
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": { "test": { "const": "distance_to_nearest_player" } }
|
||||
},
|
||||
"then": { "$ref": "../1.8.0/filters/distance_to_nearest_player.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_ability" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_ability.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_biome_tag" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_biome_tag.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_component" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_component.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_damage" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_damage.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_equipment" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_equipment.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_mob_effect" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_mob_effect.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_tag" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_tag.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_trade_supply" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/has_trade_supply.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "hourly_clock_time" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/hourly_clock_time.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_caravan" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_caravan.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_clouds" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_clouds.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_lava" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_lava.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_water" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_water.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "in_water_or_rain" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/in_water_or_rain.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_altitude" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_altitude.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_avoiding_mobs" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_avoiding_mobs.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_biome" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_biome.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_brightness" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_brightness.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_climbing" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_climbing.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_color" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_color.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_daytime" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_daytime.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_difficulty" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_difficulty.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_family" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_family.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_game_rule" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_game_rule.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_humid" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_humid.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_immobile" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_immobile.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_in_village" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_in_village.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_leashed" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_leashed.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_mark_variant" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_mark_variant.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_moving" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_moving.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_owner" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_owner.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_riding" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_riding.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_skin_id" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_skin_id.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_sneaking" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_sneaking.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_snow_covered" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_snow_covered.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_target" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_target.json" }
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": { "test": { "const": "is_temperature_type" } }
|
||||
},
|
||||
"then": { "$ref": "../1.8.0/filters/is_temperature_type.json" }
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": { "test": { "const": "is_temperature_value" } }
|
||||
},
|
||||
"then": { "$ref": "../1.8.0/filters/is_temperature_value.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_underground" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_underground.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_underwater" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_underwater.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_variant" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_variant.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_visible" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/is_visible.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "moon_intensity" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/moon_intensity.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "moon_phase" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/moon_phase.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "on_ground" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/on_ground.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "on_ladder" } } },
|
||||
"then": { "$ref": "../1.8.0/filters/on_ladder.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "has_target" } } },
|
||||
"then": { "$ref": "../1.13.0/filters/has_target.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_block" } } },
|
||||
"then": { "$ref": "../1.13.0/filters/is_block.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_leashed_to" } } },
|
||||
"then": { "$ref": "../1.13.0/filters/is_leashed_to.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "is_sleeping" } } },
|
||||
"then": { "$ref": "../1.13.0/filters/is_sleeping.json" }
|
||||
},
|
||||
{
|
||||
"not": {
|
||||
"properties": { "test": { "const": "is_weather" } },
|
||||
"$comment": "DEPRECATED"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "rider_count" } } },
|
||||
"then": { "$ref": "../1.13.0/filters/rider_count.json" }
|
||||
},
|
||||
{
|
||||
"if": { "properties": { "test": { "const": "trusts" } } },
|
||||
"then": { "$ref": "../1.13.0/filters/trusts.json" }
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"groups_spec": {
|
||||
"oneOf": [
|
||||
{ "type": "array", "items": { "$ref": "#/definitions/groups_spec" } },
|
||||
{ "type": "object", "$ref": "#/definitions/filters_spec" }
|
||||
]
|
||||
}
|
||||
},
|
||||
"$ref": "#/definitions/groups_spec"
|
||||
}
|
||||
104
behaviour/entities/1.14.0/minecraft.entity.json
Normal file
104
behaviour/entities/1.14.0/minecraft.entity.json
Normal file
@@ -0,0 +1,104 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.minecraft:entity",
|
||||
"title": "Entity 1.14.0",
|
||||
"required": ["description"],
|
||||
"properties": {
|
||||
"description": {
|
||||
"required": ["identifier"],
|
||||
"title": "Description",
|
||||
"description": "The description of the this entity",
|
||||
"properties": {
|
||||
"animations": {
|
||||
"title": "Animations",
|
||||
"description": "Sets the mapping of internal animation / animation controllers references to actual animations. This is a JSON Object of name/animation pairs",
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"title": "Animation (controller)",
|
||||
"description": "The name of the animation controller / animation",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"identifier": {
|
||||
"$ref": "../../../general/entity/identifier.json",
|
||||
"description": "Sets the identifier for this entity's description.",
|
||||
"title": "Identifier"
|
||||
},
|
||||
"is_spawnable": {
|
||||
"type": "boolean",
|
||||
"title": "Is spawnable",
|
||||
"description": "Sets whether or not this entity has a spawn egg in the creative ui."
|
||||
},
|
||||
"is_summonable": {
|
||||
"type": "boolean",
|
||||
"title": "The is summonable property",
|
||||
"description": "Sets whether or not we can summon this entity using commands such as /summon."
|
||||
},
|
||||
"is_experimental": {
|
||||
"type": "boolean",
|
||||
"title": "Is experimental",
|
||||
"description": "Sets whether or not this entity is experimental. Experimental entities are only enabled when the experimental toggle is enabled."
|
||||
},
|
||||
"runtime_identifier": {
|
||||
"type": "string",
|
||||
"title": "Runtime identifier",
|
||||
"description": "Sets the name for the Vanilla Minecraft identifier this entity will use to build itself from."
|
||||
},
|
||||
"scripts": {
|
||||
"type": "object",
|
||||
"title": "Scripts",
|
||||
"description": "Sets the mapping of internal animation controller references to actual animation controller. This is a JSON Array of name/animation-controller pairs",
|
||||
"properties": {
|
||||
"animate": {
|
||||
"type": "array",
|
||||
"title": "Animate",
|
||||
"description": "Tells minecraft to run which animation / animation controllers and under what conditions",
|
||||
"items": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"title": "Animation",
|
||||
"description": "The name of an animation controller referenced in animations"
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"title": "Conditional Animation",
|
||||
"description": "TODO",
|
||||
"additionalProperties": {
|
||||
"type": "string",
|
||||
"title": "Animation"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"component_groups": {
|
||||
"title": "Component groups",
|
||||
"description": "Each group when add / remove the default components",
|
||||
"uniqueItems": true,
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"$ref": "components.json",
|
||||
"uniqueItems": true,
|
||||
"description": "The components that are added as the foundation of the entity",
|
||||
"title": "The component schema"
|
||||
}
|
||||
},
|
||||
"components": {
|
||||
"$ref": "components.json",
|
||||
"uniqueItems": true,
|
||||
"description": "The components that are added as the foundation of the entity",
|
||||
"title": "The component schema"
|
||||
},
|
||||
"events": {
|
||||
"$ref": "events.json",
|
||||
"uniqueItems": true,
|
||||
"description": "The events that the entity can run, these add or remove components_groups",
|
||||
"title": "The events schema"
|
||||
}
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user