auto: Formatted json files

This commit is contained in:
Blockception Bot
2021-06-06 10:07:19 +00:00
parent 65dc629711
commit 77b8b88cc1
1017 changed files with 36952 additions and 36952 deletions

View File

@@ -1,158 +1,158 @@
{
"$id": "blockception.minecraft.behavior.animation_controller.1.10.0",
"type": "object",
"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/string.json"
}
}
]
},
"particle_effect_spec": {
"additionalProperties": false,
"type": "object",
"required": ["effect"],
"properties": {
"bind_to_actor": {
"type": "boolean",
"title": "Bind To Actor",
"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).",
"const": false
},
"effect": {
"type": "string",
"title": "Effect",
"description": "The name of a particle effect that should be played"
},
"locator": {
"type": "string",
"title": "Locator",
"description": "The name of a locator on the actor where the effect should be located"
},
"pre_effect_script": {
"type": "string",
"title": "Pre Effect Script",
"description": "A molang script that will be run when the particle emitter is initialized"
}
}
},
"commands": {
"type": "string",
"title": "Commands",
"description": "The event or commands to execute",
"examples": ["@s example:event"],
"oneOf": [
{ "pattern": "^@s .+$", "title": "Event" },
{ "pattern": "^/.+$", "title": "Command" },
{ "pattern": "^.+;$", "title": "Molang" }
]
}
},
"required": ["format_version", "animation_controllers"],
"additionalProperties": false,
"title": "Animation Controller 1.10.0",
"description": "Animation controller for minecraft behavior 1.10.0",
"properties": {
"format_version": {
"title": "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": "Animation Controllers",
"description": "The animation controllers schema for 1.10.0",
"propertyNames": {
"pattern": "^controller\\.animation\\.[a-z\\.]+",
"examples": ["controller.animation.example", "controller.animation.example.foo"]
},
"additionalProperties": {
"additionalProperties": false,
"type": "object",
"title": "Animation Controller",
"description": "A single animation controller 1.10.0",
"required": ["states"],
"minProperties": 1,
"properties": {
"states": {
"title": "States",
"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",
"description": "The animations definition for 1.10.0",
"type": "array",
"items": {
"$ref": "#/definitions/animationspec",
"description": "The key definition of an animation to play, defined in the entity",
"title": "Animations"
}
},
"on_entry": {
"type": "array",
"description": "Events, commands or transitions to preform on entry of this state",
"title": "On Entry",
"items": {
"$ref": "#/definitions/commands"
}
},
"on_exit": {
"type": "array",
"description": "Events, commands or transitions to preform on exit of this state",
"title": "On Exit",
"items": {
"$ref": "#/definitions/commands"
}
},
"transitions": {
"title": "Transition",
"description": "The transition definition for 1.10.0",
"minProperties": 1,
"type": "array",
"items": {
"title": "Transitions",
"description": "A object specification on how to transition",
"type": "object",
"maxProperties": 1,
"minProperties": 1,
"additionalProperties": {
"$ref": "../../../molang/string.json"
}
}
}
}
}
},
"initial_state": {
"type": "string",
"description": "The state to start with, if not specified state at position 0 in the array is used",
"title": "Initial State"
}
}
}
}
}
}
{
"$id": "blockception.minecraft.behavior.animation_controller.1.10.0",
"type": "object",
"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/string.json"
}
}
]
},
"particle_effect_spec": {
"additionalProperties": false,
"type": "object",
"required": ["effect"],
"properties": {
"bind_to_actor": {
"type": "boolean",
"title": "Bind To Actor",
"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).",
"const": false
},
"effect": {
"type": "string",
"title": "Effect",
"description": "The name of a particle effect that should be played"
},
"locator": {
"type": "string",
"title": "Locator",
"description": "The name of a locator on the actor where the effect should be located"
},
"pre_effect_script": {
"type": "string",
"title": "Pre Effect Script",
"description": "A molang script that will be run when the particle emitter is initialized"
}
}
},
"commands": {
"type": "string",
"title": "Commands",
"description": "The event or commands to execute",
"examples": ["@s example:event"],
"oneOf": [
{ "pattern": "^@s .+$", "title": "Event" },
{ "pattern": "^/.+$", "title": "Command" },
{ "pattern": "^.+;$", "title": "Molang" }
]
}
},
"required": ["format_version", "animation_controllers"],
"additionalProperties": false,
"title": "Animation Controller 1.10.0",
"description": "Animation controller for minecraft behavior 1.10.0",
"properties": {
"format_version": {
"title": "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": "Animation Controllers",
"description": "The animation controllers schema for 1.10.0",
"propertyNames": {
"pattern": "^controller\\.animation\\.[a-z\\.]+",
"examples": ["controller.animation.example", "controller.animation.example.foo"]
},
"additionalProperties": {
"additionalProperties": false,
"type": "object",
"title": "Animation Controller",
"description": "A single animation controller 1.10.0",
"required": ["states"],
"minProperties": 1,
"properties": {
"states": {
"title": "States",
"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",
"description": "The animations definition for 1.10.0",
"type": "array",
"items": {
"$ref": "#/definitions/animationspec",
"description": "The key definition of an animation to play, defined in the entity",
"title": "Animations"
}
},
"on_entry": {
"type": "array",
"description": "Events, commands or transitions to preform on entry of this state",
"title": "On Entry",
"items": {
"$ref": "#/definitions/commands"
}
},
"on_exit": {
"type": "array",
"description": "Events, commands or transitions to preform on exit of this state",
"title": "On Exit",
"items": {
"$ref": "#/definitions/commands"
}
},
"transitions": {
"title": "Transition",
"description": "The transition definition for 1.10.0",
"minProperties": 1,
"type": "array",
"items": {
"title": "Transitions",
"description": "A object specification on how to transition",
"type": "object",
"maxProperties": 1,
"minProperties": 1,
"additionalProperties": {
"$ref": "../../../molang/string.json"
}
}
}
}
}
},
"initial_state": {
"type": "string",
"description": "The state to start with, if not specified state at position 0 in the array is used",
"title": "Initial State"
}
}
}
}
}
}

View File

@@ -1,157 +1,157 @@
{
"$id": "blockception.minecraft.behavior.animation_controller.1.8.0",
"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 when to animate",
"maxProperties": 1,
"minProperties": 1,
"additionalProperties": {
"$ref": "../../../molang/string.json"
}
}
]
},
"particle_effect_spec": {
"additionalProperties": false,
"type": "object",
"required": ["effect"],
"properties": {
"bind_to_actor": {
"type": "boolean",
"title": "Bind To Actor",
"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).",
"const": false
},
"effect": {
"type": "string",
"title": "Effect",
"description": "The name of a particle effect that should be played"
},
"locator": {
"type": "string",
"title": "Locator",
"description": "The name of a locator on the actor where the effect should be located"
},
"pre_effect_script": {
"type": "string",
"title": "Pre Effect Script",
"description": "A molang script that will be run when the particle emitter is initialized"
}
}
},
"commands": {
"type": "string",
"description": "The event or commands to execute",
"title": "Commands",
"oneOf": [
{ "pattern": "^@s .+$", "title": "Event" },
{ "pattern": "^/.+$", "title": "Command" },
{ "pattern": "^.+;$", "title": "Molang" }
]
}
},
"type": "object",
"title": "Animation Controller 1.8.0",
"description": "Animation controller for behaviors 1.8.0",
"required": ["format_version", "animation_controllers"],
"additionalProperties": false,
"properties": {
"format_version": {
"title": "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": "Animation Controllers Schema",
"description": "The animation controllers schema for 1.8.0",
"propertyNames": {
"pattern": "^controller\\.animation\\.[a-z\\.]+",
"examples": ["controller.animation.example", "controller.animation.example.foo"]
},
"additionalProperties": {
"additionalProperties": false,
"type": "object",
"title": "A Animation Controller",
"description": "A single animation controller 1.8.0",
"required": ["states"],
"minProperties": 1,
"properties": {
"states": {
"title": "States",
"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",
"description": "The animations definition for 1.8.0",
"type": "array",
"items": {
"$ref": "#/definitions/animationspec",
"description": "The animation key to play, defined in the entity",
"title": "Animation"
}
},
"on_entry": {
"type": "array",
"description": "Events, commands or transitions to preform",
"title": "On Entry",
"items": {
"$ref": "#/definitions/commands"
}
},
"on_exit": {
"type": "array",
"description": "Events, commands or transitions to preform",
"title": "On Exit",
"items": {
"$ref": "#/definitions/commands"
}
},
"transitions": {
"title": "Transition",
"description": "The transition definition for 1.8.0",
"minProperties": 1,
"type": "array",
"items": {
"title": "Transition",
"description": "A transition to another state",
"type": "object",
"examples": [{ "default": "query.is_chested" }],
"additionalProperties": {
"$ref": "../../../molang/string.json"
},
"minProperties": 1,
"maxProperties": 1
}
}
}
}
},
"initial_state": {
"title": "Initial State",
"description": "The state to start with, if not specified state at position 0 in the array is used",
"type": "string",
"examples": ["default"]
}
}
}
}
}
}
{
"$id": "blockception.minecraft.behavior.animation_controller.1.8.0",
"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 when to animate",
"maxProperties": 1,
"minProperties": 1,
"additionalProperties": {
"$ref": "../../../molang/string.json"
}
}
]
},
"particle_effect_spec": {
"additionalProperties": false,
"type": "object",
"required": ["effect"],
"properties": {
"bind_to_actor": {
"type": "boolean",
"title": "Bind To Actor",
"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).",
"const": false
},
"effect": {
"type": "string",
"title": "Effect",
"description": "The name of a particle effect that should be played"
},
"locator": {
"type": "string",
"title": "Locator",
"description": "The name of a locator on the actor where the effect should be located"
},
"pre_effect_script": {
"type": "string",
"title": "Pre Effect Script",
"description": "A molang script that will be run when the particle emitter is initialized"
}
}
},
"commands": {
"type": "string",
"description": "The event or commands to execute",
"title": "Commands",
"oneOf": [
{ "pattern": "^@s .+$", "title": "Event" },
{ "pattern": "^/.+$", "title": "Command" },
{ "pattern": "^.+;$", "title": "Molang" }
]
}
},
"type": "object",
"title": "Animation Controller 1.8.0",
"description": "Animation controller for behaviors 1.8.0",
"required": ["format_version", "animation_controllers"],
"additionalProperties": false,
"properties": {
"format_version": {
"title": "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": "Animation Controllers Schema",
"description": "The animation controllers schema for 1.8.0",
"propertyNames": {
"pattern": "^controller\\.animation\\.[a-z\\.]+",
"examples": ["controller.animation.example", "controller.animation.example.foo"]
},
"additionalProperties": {
"additionalProperties": false,
"type": "object",
"title": "A Animation Controller",
"description": "A single animation controller 1.8.0",
"required": ["states"],
"minProperties": 1,
"properties": {
"states": {
"title": "States",
"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",
"description": "The animations definition for 1.8.0",
"type": "array",
"items": {
"$ref": "#/definitions/animationspec",
"description": "The animation key to play, defined in the entity",
"title": "Animation"
}
},
"on_entry": {
"type": "array",
"description": "Events, commands or transitions to preform",
"title": "On Entry",
"items": {
"$ref": "#/definitions/commands"
}
},
"on_exit": {
"type": "array",
"description": "Events, commands or transitions to preform",
"title": "On Exit",
"items": {
"$ref": "#/definitions/commands"
}
},
"transitions": {
"title": "Transition",
"description": "The transition definition for 1.8.0",
"minProperties": 1,
"type": "array",
"items": {
"title": "Transition",
"description": "A transition to another state",
"type": "object",
"examples": [{ "default": "query.is_chested" }],
"additionalProperties": {
"$ref": "../../../molang/string.json"
},
"minProperties": 1,
"maxProperties": 1
}
}
}
}
},
"initial_state": {
"title": "Initial State",
"description": "The state to start with, if not specified state at position 0 in the array is used",
"type": "string",
"examples": ["default"]
}
}
}
}
}
}

View File

@@ -1,25 +1,25 @@
{
"$id": "blockception.minecraft.behavior.animation_controller",
"examples": [
{
"format_version": "1.10.0",
"animation_controllers": {
"controller.animation.example": {
"initial_state": "default",
"states": { "default": { "transitions": [{ "state_1": "query.is_baby" }] }, "state_1": {} }
}
}
}
],
"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" }
},
{ "properties": { "format_version": { "$ref": "../../general/format_version.json" } } }
]
}
{
"$id": "blockception.minecraft.behavior.animation_controller",
"examples": [
{
"format_version": "1.10.0",
"animation_controllers": {
"controller.animation.example": {
"initial_state": "default",
"states": { "default": { "transitions": [{ "state_1": "query.is_baby" }] }, "state_1": {} }
}
}
}
],
"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" }
},
{ "properties": { "format_version": { "$ref": "../../general/format_version.json" } } }
]
}

View File

@@ -1,95 +1,95 @@
{
"$id": "blockception.minecraft.behavior.1.10.0.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/string.json" }
}
]
},
"particle_effect_spec": {
"additionalProperties": false,
"type": "object",
"required": ["effect"],
"properties": {
"bind_to_actor": {
"title": "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).",
"const": false
},
"effect": { "type": "string", "description": "The name of a particle effect that should be played", "title": "Effect" },
"locator": { "type": "string", "description": "The name of a locator on the actor where the effect should be located", "title": "Locator" },
"pre_effect_script": {
"type": "string",
"description": "A molang script that will be run when the particle emitter is initialized",
"title": "Pre Effect Script"
}
}
},
"commands": {
"type": "string",
"description": "The event or commands to execute",
"title": "Commands",
"anyOf": [
{ "pattern": "^.*=.*;$", "title": "Variable" },
{ "pattern": "^/[a-z].*$", "title": "Minecraft Command" },
{ "pattern": "[A-Za-z][a-z]*\\.[a-z_0-9]*", "title": "Molang" },
{ "pattern": "^@s .*$", "title": "Event" }
]
}
},
"type": "object",
"title": "Animation 1.10.0",
"description": "Animation for behavior for 1.10.0",
"required": ["format_version", "animations"],
"additionalProperties": false,
"properties": {
"format_version": {
"title": "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": {
"title": "Animation",
"type": "object",
"description": "A single animation definition for 1.10.0",
"additionalProperties": false,
"propertyNames": { "examples": ["animation.example.foo"] },
"properties": {
"animation_length": { "type": "number", "description": "The time in seconds this animation will last", "title": "Animation Length" },
"loop": {
"type": "boolean",
"description": "Whenever this animation should loop once it reaches the end, will only happen if the animation is still active",
"title": "Loop"
},
"timeline": {
"title": "Timeline",
"description": "A timeline specification, property names are timestamps",
"type": "object",
"propertyNames": { "pattern": "^(\\d+\\.\\d+|\\d+)$", "examples": ["0.0", "1.0"] },
"additionalProperties": {
"oneOf": [
{ "type": "string", "$ref": "#/definitions/commands" },
{ "type": "array", "title": "Collection Timelime Items", "items": { "$ref": "#/definitions/commands" } }
]
}
}
}
}
}
}
}
{
"$id": "blockception.minecraft.behavior.1.10.0.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/string.json" }
}
]
},
"particle_effect_spec": {
"additionalProperties": false,
"type": "object",
"required": ["effect"],
"properties": {
"bind_to_actor": {
"title": "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).",
"const": false
},
"effect": { "type": "string", "description": "The name of a particle effect that should be played", "title": "Effect" },
"locator": { "type": "string", "description": "The name of a locator on the actor where the effect should be located", "title": "Locator" },
"pre_effect_script": {
"type": "string",
"description": "A molang script that will be run when the particle emitter is initialized",
"title": "Pre Effect Script"
}
}
},
"commands": {
"type": "string",
"description": "The event or commands to execute",
"title": "Commands",
"anyOf": [
{ "pattern": "^.*=.*;$", "title": "Variable" },
{ "pattern": "^/[a-z].*$", "title": "Minecraft Command" },
{ "pattern": "[A-Za-z][a-z]*\\.[a-z_0-9]*", "title": "Molang" },
{ "pattern": "^@s .*$", "title": "Event" }
]
}
},
"type": "object",
"title": "Animation 1.10.0",
"description": "Animation for behavior for 1.10.0",
"required": ["format_version", "animations"],
"additionalProperties": false,
"properties": {
"format_version": {
"title": "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": {
"title": "Animation",
"type": "object",
"description": "A single animation definition for 1.10.0",
"additionalProperties": false,
"propertyNames": { "examples": ["animation.example.foo"] },
"properties": {
"animation_length": { "type": "number", "description": "The time in seconds this animation will last", "title": "Animation Length" },
"loop": {
"type": "boolean",
"description": "Whenever this animation should loop once it reaches the end, will only happen if the animation is still active",
"title": "Loop"
},
"timeline": {
"title": "Timeline",
"description": "A timeline specification, property names are timestamps",
"type": "object",
"propertyNames": { "pattern": "^(\\d+\\.\\d+|\\d+)$", "examples": ["0.0", "1.0"] },
"additionalProperties": {
"oneOf": [
{ "type": "string", "$ref": "#/definitions/commands" },
{ "type": "array", "title": "Collection Timelime Items", "items": { "$ref": "#/definitions/commands" } }
]
}
}
}
}
}
}
}

View File

@@ -1,95 +1,95 @@
{
"$id": "blockception.minecraft.behavior.1.8.0.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/string.json" }
}
]
},
"particle_effect_spec": {
"additionalProperties": false,
"type": "object",
"required": ["effect"],
"properties": {
"bind_to_actor": {
"title": "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).",
"const": false
},
"effect": { "type": "string", "description": "The name of a particle effect that should be played", "title": "Effect" },
"locator": { "type": "string", "description": "The name of a locator on the actor where the effect should be located", "title": "Locator" },
"pre_effect_script": {
"type": "string",
"description": "A molang script that will be run when the particle emitter is initialized",
"title": "Pre Effect Script"
}
}
},
"commands": {
"type": "string",
"description": "The event or commands to execute",
"title": "Commands",
"anyOf": [
{ "pattern": "^.*=.*;$", "title": "Variable" },
{ "pattern": "^/[a-z].*$", "title": "Minecraft Command" },
{ "pattern": "[A-Za-z][a-z]*\\.[a-z_0-9]*", "title": "Molang" },
{ "pattern": "^@s .*$", "title": "Event" }
]
}
},
"type": "object",
"title": "Animation 1.8.0",
"description": "Animation for behaviors 1.8.0",
"required": ["format_version", "animations"],
"additionalProperties": false,
"properties": {
"format_version": {
"title": "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",
"description": "The animation 1.8.0 specification",
"type": "object",
"propertyNames": { "pattern": "^animation\\.[a-z\\.]+" },
"additionalProperties": {
"title": "Animation",
"type": "object",
"description": "A single animation definition for 1.8.0",
"additionalProperties": false,
"propertyNames": { "examples": ["animation.example.foo"] },
"properties": {
"animation_length": { "type": "number", "description": "The time in seconds this animation will last", "title": "Animation Length" },
"loop": {
"type": "boolean",
"description": "Wheter or not to loop this animation",
"title": "Loop"
},
"timeline": {
"title": "Timeline",
"description": "A timeline specification, property names are timestamps",
"type": "object",
"propertyNames": { "pattern": "^(\\d+\\.\\d+|\\d+)$", "examples": ["0.0", "1.0"] },
"additionalProperties": {
"oneOf": [
{ "$ref": "#/definitions/commands" },
{ "type": "array", "title": "Collection Timelime Items", "items": { "$ref": "#/definitions/commands" } }
]
}
}
}
}
}
}
}
{
"$id": "blockception.minecraft.behavior.1.8.0.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/string.json" }
}
]
},
"particle_effect_spec": {
"additionalProperties": false,
"type": "object",
"required": ["effect"],
"properties": {
"bind_to_actor": {
"title": "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).",
"const": false
},
"effect": { "type": "string", "description": "The name of a particle effect that should be played", "title": "Effect" },
"locator": { "type": "string", "description": "The name of a locator on the actor where the effect should be located", "title": "Locator" },
"pre_effect_script": {
"type": "string",
"description": "A molang script that will be run when the particle emitter is initialized",
"title": "Pre Effect Script"
}
}
},
"commands": {
"type": "string",
"description": "The event or commands to execute",
"title": "Commands",
"anyOf": [
{ "pattern": "^.*=.*;$", "title": "Variable" },
{ "pattern": "^/[a-z].*$", "title": "Minecraft Command" },
{ "pattern": "[A-Za-z][a-z]*\\.[a-z_0-9]*", "title": "Molang" },
{ "pattern": "^@s .*$", "title": "Event" }
]
}
},
"type": "object",
"title": "Animation 1.8.0",
"description": "Animation for behaviors 1.8.0",
"required": ["format_version", "animations"],
"additionalProperties": false,
"properties": {
"format_version": {
"title": "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",
"description": "The animation 1.8.0 specification",
"type": "object",
"propertyNames": { "pattern": "^animation\\.[a-z\\.]+" },
"additionalProperties": {
"title": "Animation",
"type": "object",
"description": "A single animation definition for 1.8.0",
"additionalProperties": false,
"propertyNames": { "examples": ["animation.example.foo"] },
"properties": {
"animation_length": { "type": "number", "description": "The time in seconds this animation will last", "title": "Animation Length" },
"loop": {
"type": "boolean",
"description": "Wheter or not to loop this animation",
"title": "Loop"
},
"timeline": {
"title": "Timeline",
"description": "A timeline specification, property names are timestamps",
"type": "object",
"propertyNames": { "pattern": "^(\\d+\\.\\d+|\\d+)$", "examples": ["0.0", "1.0"] },
"additionalProperties": {
"oneOf": [
{ "$ref": "#/definitions/commands" },
{ "type": "array", "title": "Collection Timelime Items", "items": { "$ref": "#/definitions/commands" } }
]
}
}
}
}
}
}
}

View File

@@ -1,9 +1,9 @@
{
"$id": "blockception.minecraft.behavior.animations",
"examples": [{ "format_version": "1.10.0", "animations": { "animation.example": {} } }],
"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" } },
{ "properties": { "format_version": { "$ref": "../../general/format_version.json" } } }
]
}
{
"$id": "blockception.minecraft.behavior.animations",
"examples": [{ "format_version": "1.10.0", "animations": { "animation.example": {} } }],
"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" } },
{ "properties": { "format_version": { "$ref": "../../general/format_version.json" } } }
]
}

View File

@@ -1,30 +1,30 @@
{
"$id": "minecraft.behavior.biomes.1.12.0",
"type": "object",
"title": "Biomes",
"description": "The definition of a biome",
"additionalProperties": {
"title": "Tag",
"type": "object",
"description": "Components with no namespace are treated as 'tags': any name consisting of alphanumeric characters, '.' and '_' is permitted; the tag is attached to the biome so that either code or data may check for its existence; tag components may not have member fields.",
"additionalProperties": false
},
"properties": {
"minecraft:climate": { "$ref": "./components/minecraft.climate.json" },
"minecraft:forced_features": { "$ref": "./components/minecraft.forced_features.json" },
"minecraft:overworld_height": { "$ref": "./components/minecraft.overworld_height.json" },
"minecraft:ignore_automatic_features": { "$ref": "./components/minecraft.ignore_automatic_features.json" },
"minecraft:surface_parameters": { "$ref": "./components/minecraft.surface_parameters.json" },
"minecraft:surface_material_adjustments": { "$ref": "./components/minecraft.surface_material_adjustments.json" },
"minecraft:swamp_surface": { "$ref": "./components/minecraft.swamp_surface.json" },
"minecraft:frozen_ocean_surface": { "$ref": "./components/minecraft.frozen_ocean_surface.json" },
"minecraft:mesa_surface": { "$ref": "./components/minecraft.mesa_surface.json" },
"minecraft:mountain_parameters": { "$ref": "./components/minecraft.mountain_parameters.json" },
"minecraft:nether_surface": { "$ref": "./components/minecraft.nether_surface.json" },
"minecraft:the_end_surface": { "$ref": "./components/minecraft.the_end_surface.json" },
"minecraft:capped_surface": { "$ref": "./components/minecraft.capped_surface.json" },
"minecraft:overworld_generation_rules": { "$ref": "./components/minecraft.overworld_generation_rules.json" },
"minecraft:nether_generation_rules": { "$ref": "./components/minecraft.nether_generation_rules.json" },
"minecraft:legacy_world_generation_rules": { "$ref": "./components/minecraft.legacy_world_generation_rules.json" }
}
}
{
"$id": "minecraft.behavior.biomes.1.12.0",
"type": "object",
"title": "Biomes",
"description": "The definition of a biome",
"additionalProperties": {
"title": "Tag",
"type": "object",
"description": "Components with no namespace are treated as 'tags': any name consisting of alphanumeric characters, '.' and '_' is permitted; the tag is attached to the biome so that either code or data may check for its existence; tag components may not have member fields.",
"additionalProperties": false
},
"properties": {
"minecraft:climate": { "$ref": "./components/minecraft.climate.json" },
"minecraft:forced_features": { "$ref": "./components/minecraft.forced_features.json" },
"minecraft:overworld_height": { "$ref": "./components/minecraft.overworld_height.json" },
"minecraft:ignore_automatic_features": { "$ref": "./components/minecraft.ignore_automatic_features.json" },
"minecraft:surface_parameters": { "$ref": "./components/minecraft.surface_parameters.json" },
"minecraft:surface_material_adjustments": { "$ref": "./components/minecraft.surface_material_adjustments.json" },
"minecraft:swamp_surface": { "$ref": "./components/minecraft.swamp_surface.json" },
"minecraft:frozen_ocean_surface": { "$ref": "./components/minecraft.frozen_ocean_surface.json" },
"minecraft:mesa_surface": { "$ref": "./components/minecraft.mesa_surface.json" },
"minecraft:mountain_parameters": { "$ref": "./components/minecraft.mountain_parameters.json" },
"minecraft:nether_surface": { "$ref": "./components/minecraft.nether_surface.json" },
"minecraft:the_end_surface": { "$ref": "./components/minecraft.the_end_surface.json" },
"minecraft:capped_surface": { "$ref": "./components/minecraft.capped_surface.json" },
"minecraft:overworld_generation_rules": { "$ref": "./components/minecraft.overworld_generation_rules.json" },
"minecraft:nether_generation_rules": { "$ref": "./components/minecraft.nether_generation_rules.json" },
"minecraft:legacy_world_generation_rules": { "$ref": "./components/minecraft.legacy_world_generation_rules.json" }
}
}

View File

@@ -1,37 +1,37 @@
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.capped_surface",
"title": "Capped Surface",
"description": "Generates surface on blocks with non-solid blocks above or below.",
"type": "object",
"additionalProperties": false,
"required": ["floor_materials", "ceiling_materials", "sea_material", "foundation_material"],
"properties": {
"ceiling_materials": {
"title": "Ceiling Materials",
"description": "Materials used for the surface ceiling.",
"minItems": 1,
"items": {
"title": "Block Reference",
"description": "UNDOCUMENTATED",
"type": "string"
}
},
"floor_materials": {
"title": "Floor Materials",
"description": "Materials used for the surface floor.",
"minItems": 1,
"items": {
"title": "Block Reference",
"description": "UNDOCUMENTATED",
"type": "string"
}
},
"sea_material": { "title": "Sea Material", "description": "Material used to replace air blocks below sea level.", "type": "string" },
"foundation_material": {
"title": "Foundation Material",
"description": "Material used to repalce solid blocks that are not surface blocks.",
"type": "string"
},
"beach_material": { "title": "Beach Material", "description": "Material used to decorate surface near sea level.", "type": "string" }
}
}
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.capped_surface",
"title": "Capped Surface",
"description": "Generates surface on blocks with non-solid blocks above or below.",
"type": "object",
"additionalProperties": false,
"required": ["floor_materials", "ceiling_materials", "sea_material", "foundation_material"],
"properties": {
"ceiling_materials": {
"title": "Ceiling Materials",
"description": "Materials used for the surface ceiling.",
"minItems": 1,
"items": {
"title": "Block Reference",
"description": "UNDOCUMENTATED",
"type": "string"
}
},
"floor_materials": {
"title": "Floor Materials",
"description": "Materials used for the surface floor.",
"minItems": 1,
"items": {
"title": "Block Reference",
"description": "UNDOCUMENTATED",
"type": "string"
}
},
"sea_material": { "title": "Sea Material", "description": "Material used to replace air blocks below sea level.", "type": "string" },
"foundation_material": {
"title": "Foundation Material",
"description": "Material used to repalce solid blocks that are not surface blocks.",
"type": "string"
},
"beach_material": { "title": "Beach Material", "description": "Material used to decorate surface near sea level.", "type": "string" }
}
}

View File

@@ -1,30 +1,30 @@
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.climate",
"title": "Climate",
"description": "Describes temperature, humidity, precipitation, etc. Biomes without this component will have default values.",
"type": "object",
"minProperties": 0,
"maxProperties": 7,
"additionalProperties": false,
"properties": {
"temperature": { "title": "Temperature", "description": "UNDOCUMENATED", "type": "number" },
"downfall": { "title": "Downfall", "description": "UNDOCUMENATED", "type": "number" },
"red_spores": { "title": "Red Spores", "description": "UNDOCUMENATED", "type": "number" },
"blue_spores": { "title": "Blue Spores", "description": "UNDOCUMENATED", "type": "number" },
"ash": { "title": "Ash", "description": "UNDOCUMENATED", "type": "number" },
"white_ash": { "title": "White Ash", "description": "UNDOCUMENATED", "type": "number" },
"snow_accumulation": {
"title": "Snow Accumulation",
"description": "UNDOCUMENATED",
"type": "array",
"items": [
{
"type": "number"
},
{
"type": "number"
}
]
}
}
}
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.climate",
"title": "Climate",
"description": "Describes temperature, humidity, precipitation, etc. Biomes without this component will have default values.",
"type": "object",
"minProperties": 0,
"maxProperties": 7,
"additionalProperties": false,
"properties": {
"temperature": { "title": "Temperature", "description": "UNDOCUMENATED", "type": "number" },
"downfall": { "title": "Downfall", "description": "UNDOCUMENATED", "type": "number" },
"red_spores": { "title": "Red Spores", "description": "UNDOCUMENATED", "type": "number" },
"blue_spores": { "title": "Blue Spores", "description": "UNDOCUMENATED", "type": "number" },
"ash": { "title": "Ash", "description": "UNDOCUMENATED", "type": "number" },
"white_ash": { "title": "White Ash", "description": "UNDOCUMENATED", "type": "number" },
"snow_accumulation": {
"title": "Snow Accumulation",
"description": "UNDOCUMENATED",
"type": "array",
"items": [
{
"type": "number"
},
{
"type": "number"
}
]
}
}
}

View File

@@ -1,231 +1,231 @@
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.forced_features",
"title": "Forced Features",
"description": "Force specific decorative features (trees, plants, etc.) to appear in this Biome, regardless of normal decoration rules.",
"type": "object",
"minProperties": 0,
"maxProperties": 11,
"additionalProperties": false,
"definitions": {
"coordinate": {
"oneOf": [
{
"type": "string",
"$ref": "../../../../molang/number.json",
"description": "Expression for the coordinate (evaluated each iteration). Mutually exclusive with random distribution object below."
},
{
"type": "number",
"description": "Expression for the coordinate (evaluated each iteration). Mutually exclusive with random distribution object below."
},
{
"type": "object",
"description": "Distribution for the coordinate (evaluated each iteration). Mutually exclusive with Molang expression above.",
"additionalProperties": false,
"required": ["distribution", "extent"],
"properties": {
"distribution": {
"title": "Distribution",
"description": "Type of distribution - uniform random, gaussian (centered in the range), or grid (either fixed-step or jittered)",
"type": "string",
"enum": ["uniform", "gaussian", "inverse_gaussian", "fixed_grid", "jittered_grid"]
},
"extent": {
"title": "Extent",
"description": "UNDOCUMENTATED",
"type": "array",
"items": [
{
"title": "Lower Bound",
"description": "Lower bound (inclusive) of the scatter range, as an offset from the input point to scatter around",
"$ref": "../../../../molang/number.json"
},
{
"title": "Upper Bound",
"description": "Upper bound (inclusive) of the scatter range, as an offset from the input point to scatter around",
"$ref": "../../../../molang/number.json"
}
]
},
"grid_offset": {
"title": "Step Size",
"description": "When the distribution type is grid, defines the offset along this axis",
"type": "integer",
"minimum": 0
},
"step_size": {
"title": "Step Size",
"description": "When the distribution type is grid, defines the distance between steps along this axis",
"type": "integer",
"minimum": 1
}
}
}
]
},
"iteration": {
"title": "Iteration",
"description": "UNDOCUMENTED",
"additionalProperties": false,
"required": ["iterations", "places_feature", "identifier"],
"properties": {
"coordinate_eval_order": {
"title": "Coordinate Eval Order",
"description": "The order in which coordinates will be evaluated. Should be used when a coordinate depends on another. If omitted, defaults to 'xzy'.",
"type": "string",
"enum": ["xyz", "xzy", "yxz", "yzx", "zxy", "zyx"]
},
"identifier": {
"title": "Identifier",
"description": "UNDOCUMANTED",
"type": "string"
},
"iterations": {
"title": "Iterations",
"description": "Number of scattered positions to generate",
"$ref": "../../../../molang/number.json"
},
"places_feature": {
"title": "Places Feature",
"description": "UNDOCUMANTED",
"type": "string"
},
"scatter_chance": {
"title": "Scatter Chance",
"oneOf": [
{
"type": "object",
"description": "Probability numerator / denominator that this scatter will occur. Not evaluated each iteration; either no iterations will run, or all will.",
"additionalProperties": false,
"properties": {
"denominator": {
"title": "Denominator",
"description": "",
"type": "integer",
"minimum": 1
},
"numerator": {
"title": "Numerator",
"description": "",
"type": "integer",
"minimum": 1
}
}
},
{
"type": "string",
"description": "Probability (0-100) that this scatter will occur. Not evaluated each iteration; either no iterations will run, or all will.",
"$ref": "../../../../molang/number.json"
},
{
"type": "number",
"description": "Probability (0-100) that this scatter will occur. Not evaluated each iteration; either no iterations will run, or all will."
}
]
},
"x": {
"title": "X",
"$ref": "#/definitions/coordinate"
},
"y": {
"title": "X",
"$ref": "#/definitions/coordinate"
},
"z": {
"title": "X",
"$ref": "#/definitions/coordinate"
}
}
}
},
"properties": {
"after_sky_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"after_surface_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"after_underground_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"before_sky_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"before_surface_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"before_underground_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"final_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"first_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"surface_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"sky_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"underground_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
}
}
}
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.forced_features",
"title": "Forced Features",
"description": "Force specific decorative features (trees, plants, etc.) to appear in this Biome, regardless of normal decoration rules.",
"type": "object",
"minProperties": 0,
"maxProperties": 11,
"additionalProperties": false,
"definitions": {
"coordinate": {
"oneOf": [
{
"type": "string",
"$ref": "../../../../molang/number.json",
"description": "Expression for the coordinate (evaluated each iteration). Mutually exclusive with random distribution object below."
},
{
"type": "number",
"description": "Expression for the coordinate (evaluated each iteration). Mutually exclusive with random distribution object below."
},
{
"type": "object",
"description": "Distribution for the coordinate (evaluated each iteration). Mutually exclusive with Molang expression above.",
"additionalProperties": false,
"required": ["distribution", "extent"],
"properties": {
"distribution": {
"title": "Distribution",
"description": "Type of distribution - uniform random, gaussian (centered in the range), or grid (either fixed-step or jittered)",
"type": "string",
"enum": ["uniform", "gaussian", "inverse_gaussian", "fixed_grid", "jittered_grid"]
},
"extent": {
"title": "Extent",
"description": "UNDOCUMENTATED",
"type": "array",
"items": [
{
"title": "Lower Bound",
"description": "Lower bound (inclusive) of the scatter range, as an offset from the input point to scatter around",
"$ref": "../../../../molang/number.json"
},
{
"title": "Upper Bound",
"description": "Upper bound (inclusive) of the scatter range, as an offset from the input point to scatter around",
"$ref": "../../../../molang/number.json"
}
]
},
"grid_offset": {
"title": "Step Size",
"description": "When the distribution type is grid, defines the offset along this axis",
"type": "integer",
"minimum": 0
},
"step_size": {
"title": "Step Size",
"description": "When the distribution type is grid, defines the distance between steps along this axis",
"type": "integer",
"minimum": 1
}
}
}
]
},
"iteration": {
"title": "Iteration",
"description": "UNDOCUMENTED",
"additionalProperties": false,
"required": ["iterations", "places_feature", "identifier"],
"properties": {
"coordinate_eval_order": {
"title": "Coordinate Eval Order",
"description": "The order in which coordinates will be evaluated. Should be used when a coordinate depends on another. If omitted, defaults to 'xzy'.",
"type": "string",
"enum": ["xyz", "xzy", "yxz", "yzx", "zxy", "zyx"]
},
"identifier": {
"title": "Identifier",
"description": "UNDOCUMANTED",
"type": "string"
},
"iterations": {
"title": "Iterations",
"description": "Number of scattered positions to generate",
"$ref": "../../../../molang/number.json"
},
"places_feature": {
"title": "Places Feature",
"description": "UNDOCUMANTED",
"type": "string"
},
"scatter_chance": {
"title": "Scatter Chance",
"oneOf": [
{
"type": "object",
"description": "Probability numerator / denominator that this scatter will occur. Not evaluated each iteration; either no iterations will run, or all will.",
"additionalProperties": false,
"properties": {
"denominator": {
"title": "Denominator",
"description": "",
"type": "integer",
"minimum": 1
},
"numerator": {
"title": "Numerator",
"description": "",
"type": "integer",
"minimum": 1
}
}
},
{
"type": "string",
"description": "Probability (0-100) that this scatter will occur. Not evaluated each iteration; either no iterations will run, or all will.",
"$ref": "../../../../molang/number.json"
},
{
"type": "number",
"description": "Probability (0-100) that this scatter will occur. Not evaluated each iteration; either no iterations will run, or all will."
}
]
},
"x": {
"title": "X",
"$ref": "#/definitions/coordinate"
},
"y": {
"title": "X",
"$ref": "#/definitions/coordinate"
},
"z": {
"title": "X",
"$ref": "#/definitions/coordinate"
}
}
}
},
"properties": {
"after_sky_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"after_surface_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"after_underground_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"before_sky_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"before_surface_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"before_underground_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"final_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"first_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"surface_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"sky_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
},
"underground_pass": {
"title": "First Pass",
"description": "UNDOCUMENTED",
"type": "array",
"items": {
"$ref": "#/definitions/iteration"
}
}
}
}

View File

@@ -1,37 +1,37 @@
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.frozen_ocean_surface",
"title": "Frozen Ocean Surface",
"description": "Similar to overworld_surface. Adds icebergs.",
"type": "object",
"minProperties": 0,
"maxProperties": 6,
"additionalProperties": false,
"properties": {
"top_material": { "title": "Top Material", "description": "Controls the block type used for the surface of this biome.", "string": "string" },
"mid_material": {
"title": "Mid Material",
"description": "Controls the block type used in a layer below the surface of this biome.",
"string": "string"
},
"sea_floor_material": {
"title": "Sea Floor Material",
"description": "Controls the block type used as a floor for bodies of water in this biome.",
"string": "boostringlean"
},
"foundation_material": {
"title": "Foundation Material",
"description": "Controls the block type used deep underground in this biome.",
"string": "string"
},
"sea_material": {
"title": "Sea Material",
"description": "Controls the block type used for the bodies of water in this biome.",
"string": "string"
},
"sea_floor_depth": {
"title": "Sea Floor Depth",
"description": "Controls how deep below the world water level the floor should occur.",
"type": "integer"
}
}
}
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.frozen_ocean_surface",
"title": "Frozen Ocean Surface",
"description": "Similar to overworld_surface. Adds icebergs.",
"type": "object",
"minProperties": 0,
"maxProperties": 6,
"additionalProperties": false,
"properties": {
"top_material": { "title": "Top Material", "description": "Controls the block type used for the surface of this biome.", "string": "string" },
"mid_material": {
"title": "Mid Material",
"description": "Controls the block type used in a layer below the surface of this biome.",
"string": "string"
},
"sea_floor_material": {
"title": "Sea Floor Material",
"description": "Controls the block type used as a floor for bodies of water in this biome.",
"string": "boostringlean"
},
"foundation_material": {
"title": "Foundation Material",
"description": "Controls the block type used deep underground in this biome.",
"string": "string"
},
"sea_material": {
"title": "Sea Material",
"description": "Controls the block type used for the bodies of water in this biome.",
"string": "string"
},
"sea_floor_depth": {
"title": "Sea Floor Depth",
"description": "Controls how deep below the world water level the floor should occur.",
"type": "integer"
}
}
}

View File

@@ -1,8 +1,8 @@
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.ignore_automatic_features",
"title": "Ignore Automatic Features",
"description": "No features will be automatically attached to this Biome, only features specified in the minecraft:forced_features component will appear.",
"type": "object",
"additionalProperties": false,
"properties": {}
}
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.ignore_automatic_features",
"title": "Ignore Automatic Features",
"description": "No features will be automatically attached to this Biome, only features specified in the minecraft:forced_features component will appear.",
"type": "object",
"additionalProperties": false,
"properties": {}
}

View File

@@ -1,8 +1,8 @@
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.legacy_world_generation_rules",
"title": "Legacy World Generation Rules",
"description": "Additional world generation control applicable only to legacy limited worlds.",
"type": "object",
"additionalProperties": false,
"properties": {}
}
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.legacy_world_generation_rules",
"title": "Legacy World Generation Rules",
"description": "Additional world generation control applicable only to legacy limited worlds.",
"type": "object",
"additionalProperties": false,
"properties": {}
}

View File

@@ -1,41 +1,41 @@
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.mesa_surface",
"title": "Mesa Surface",
"description": "Similar to overworld_surface. Adds colored strata and optional pillars.",
"type": "object",
"minProperties": 0,
"maxProperties": 10,
"additionalProperties": false,
"properties": {
"top_material": { "title": "Top Material", "description": "Controls the block type used for the surface of this biome.", "string": "string" },
"mid_material": {
"title": "Mid Material",
"description": "Controls the block type used in a layer below the surface of this biome.",
"string": "string"
},
"sea_floor_material": {
"title": "Sea Floor Material",
"description": "Controls the block type used as a floor for bodies of water in this biome.",
"string": "boostringlean"
},
"foundation_material": {
"title": "Foundation Material",
"description": "Controls the block type used deep underground in this biome.",
"string": "string"
},
"sea_material": {
"title": "Sea Material",
"description": "Controls the block type used for the bodies of water in this biome.",
"string": "string"
},
"sea_floor_depth": {
"title": "Sea Floor Depth",
"description": "Controls how deep below the world water level the floor should occur.",
"type": "integer"
},
"clay_material": { "title": "Clay Material", "description": "UNDOCUMENTATED", "type": "string" },
"hard_clay_material": { "title": "Hard Clay Material", "description": "UNDOCUMENTATED", "type": "string" },
"bryce_pillars": { "title": "Bryce Pillars", "description": "UNDOCUMENTATED", "type": "boolean" },
"has_forest": { "title": "Has Forest", "description": "UNDOCUMENTATED", "type": "boolean" }
}
}
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.mesa_surface",
"title": "Mesa Surface",
"description": "Similar to overworld_surface. Adds colored strata and optional pillars.",
"type": "object",
"minProperties": 0,
"maxProperties": 10,
"additionalProperties": false,
"properties": {
"top_material": { "title": "Top Material", "description": "Controls the block type used for the surface of this biome.", "string": "string" },
"mid_material": {
"title": "Mid Material",
"description": "Controls the block type used in a layer below the surface of this biome.",
"string": "string"
},
"sea_floor_material": {
"title": "Sea Floor Material",
"description": "Controls the block type used as a floor for bodies of water in this biome.",
"string": "boostringlean"
},
"foundation_material": {
"title": "Foundation Material",
"description": "Controls the block type used deep underground in this biome.",
"string": "string"
},
"sea_material": {
"title": "Sea Material",
"description": "Controls the block type used for the bodies of water in this biome.",
"string": "string"
},
"sea_floor_depth": {
"title": "Sea Floor Depth",
"description": "Controls how deep below the world water level the floor should occur.",
"type": "integer"
},
"clay_material": { "title": "Clay Material", "description": "UNDOCUMENTATED", "type": "string" },
"hard_clay_material": { "title": "Hard Clay Material", "description": "UNDOCUMENTATED", "type": "string" },
"bryce_pillars": { "title": "Bryce Pillars", "description": "UNDOCUMENTATED", "type": "boolean" },
"has_forest": { "title": "Has Forest", "description": "UNDOCUMENTATED", "type": "boolean" }
}
}

View File

@@ -1,61 +1,61 @@
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.mountain_parameters",
"title": "Mountain parameters",
"description": "Noise parameters used to drive mountain terrain generation in Overworld",
"type": "object",
"additionalProperties": false,
"minProperties": 0,
"maxProperties": 3,
"properties": {
"peaks_factor": {
"type": "number",
"title": "Peaks factor",
"description": "UNDOCUMENTATED"
},
"steep_material_adjustment": {
"type": "object",
"title": "Steep material adjustment",
"description": "Defines surface material for steep slopes",
"additionalProperties": false,
"properties": {
"material": {
"type": "string",
"title": "Material",
"description": "Block type use as steep material."
},
"north_slopes": {
"type": "boolean",
"title": "North slopes",
"description": "Enable for north facing slopes"
},
"south_slopes": {
"type": "boolean",
"title": "South slopes",
"description": "Enable for south facing slopes"
},
"west_slopes": {
"type": "boolean",
"title": "West slopes",
"description": "Enable for west facing slopes"
},
"east_slopes": {
"type": "boolean",
"title": "East slopes",
"description": "Enable for east facing slopes"
}
}
},
"top_slide": {
"title": "Top slide",
"description": "Controls the density tapering that happens at the top of the world to prevent terrain from reaching too high",
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"title": "Enabled",
"description": "If false, top slide will be disabled. If true, other parameters will be taken into account"
}
}
}
}
}
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.mountain_parameters",
"title": "Mountain parameters",
"description": "Noise parameters used to drive mountain terrain generation in Overworld",
"type": "object",
"additionalProperties": false,
"minProperties": 0,
"maxProperties": 3,
"properties": {
"peaks_factor": {
"type": "number",
"title": "Peaks factor",
"description": "UNDOCUMENTATED"
},
"steep_material_adjustment": {
"type": "object",
"title": "Steep material adjustment",
"description": "Defines surface material for steep slopes",
"additionalProperties": false,
"properties": {
"material": {
"type": "string",
"title": "Material",
"description": "Block type use as steep material."
},
"north_slopes": {
"type": "boolean",
"title": "North slopes",
"description": "Enable for north facing slopes"
},
"south_slopes": {
"type": "boolean",
"title": "South slopes",
"description": "Enable for south facing slopes"
},
"west_slopes": {
"type": "boolean",
"title": "West slopes",
"description": "Enable for west facing slopes"
},
"east_slopes": {
"type": "boolean",
"title": "East slopes",
"description": "Enable for east facing slopes"
}
}
},
"top_slide": {
"title": "Top slide",
"description": "Controls the density tapering that happens at the top of the world to prevent terrain from reaching too high",
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"title": "Enabled",
"description": "If false, top slide will be disabled. If true, other parameters will be taken into account"
}
}
}
}
}

View File

@@ -1,30 +1,30 @@
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.nether_generation_rules",
"title": "Nether Generation Rules",
"description": "Controls how this biome is instantiated (and then potentially modified) during world generation of the nether.",
"type": "object",
"additionalProperties": false,
"properties": {
"target_temperature": {
"title": "Target Temperature",
"description": "Temperature with which this biome should selected, relative to other biomes.",
"type": "number"
},
"target_humidity": {
"title": "Target Humidity",
"description": "Humidity with which this biome should selected, relative to other biomes.",
"type": "number"
},
"target_altitude": {
"title": "Target Altitude",
"description": "Altitude with which this biome should selected, relative to other biomes.",
"type": "number"
},
"target_weirdness": {
"title": "Target Weirdness",
"description": "Weirdness with which this biome should selected, relative to other biomes.",
"type": "number"
},
"weight": { "title": "Weight", "description": "Weight with which this biome should selected, relative to other biomes.", "type": "number" }
}
}
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.nether_generation_rules",
"title": "Nether Generation Rules",
"description": "Controls how this biome is instantiated (and then potentially modified) during world generation of the nether.",
"type": "object",
"additionalProperties": false,
"properties": {
"target_temperature": {
"title": "Target Temperature",
"description": "Temperature with which this biome should selected, relative to other biomes.",
"type": "number"
},
"target_humidity": {
"title": "Target Humidity",
"description": "Humidity with which this biome should selected, relative to other biomes.",
"type": "number"
},
"target_altitude": {
"title": "Target Altitude",
"description": "Altitude with which this biome should selected, relative to other biomes.",
"type": "number"
},
"target_weirdness": {
"title": "Target Weirdness",
"description": "Weirdness with which this biome should selected, relative to other biomes.",
"type": "number"
},
"weight": { "title": "Weight", "description": "Weight with which this biome should selected, relative to other biomes.", "type": "number" }
}
}

View File

@@ -1,8 +1,8 @@
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.nether_surface",
"title": "Nether Surface",
"description": "Use default Minecraft Nether terrain generation.",
"type": "object",
"additionalProperties": false,
"properties": {}
}
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.nether_surface",
"title": "Nether Surface",
"description": "Use default Minecraft Nether terrain generation.",
"type": "object",
"additionalProperties": false,
"properties": {}
}

View File

@@ -1,77 +1,77 @@
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.overworld_generation_rules",
"title": "Overworld Generation Rules",
"description": "Control how this biome is instantiated (and then potentially modified) during world generation of the overworld.",
"type": "object",
"additionalProperties": false,
"definitions": {
"transformation": {
"oneOf": [
{
"type": "string",
"title": "Block Reference",
"description": "UNDOCUMENTATED"
},
{
"type": "array",
"description": "UNDOCUMENTATED",
"minItems": 1,
"items": {
"oneOf": [
{
"type": "string",
"description": "UNDOCUMENTATED",
"title": "Block Reference"
},
{
"type": "array",
"description": "UNDOCUMENTATED",
"items": [
{
"title": "Biome Reference",
"description": "UNDOCUMENTATED",
"type": "string"
},
{
"title": "_",
"description": "UNDOCUMENTATED",
"type": "integer"
}
]
}
]
}
}
]
}
},
"properties": {
"hills_transformation": { "title": "Hills Transformation", "description": "UNDOCUMENTATED", "$ref": "#/definitions/transformation" },
"mutate_transformation": { "title": "Mutate Transformation", "description": "UNDOCUMENTATED", "$ref": "#/definitions/transformation" },
"river_transformation": { "title": "River Transformation", "description": "UNDOCUMENTATED", "$ref": "#/definitions/transformation" },
"shore_transformation": { "title": "Shore Transformation", "description": "UNDOCUMENTATED", "$ref": "#/definitions/transformation" },
"generate_for_climates": {
"title": "Generate For Climates",
"description": "Controls the world generation climate categories that this biome can spawn for. A single biome can be associated with multiple categories with different weightings.",
"type": "array",
"items": {
"title": "_",
"description": "UNDOCUMENTATED",
"type": "array",
"items": [
{
"title": "UNDOCUMENTATED",
"description": "Name of a climate category",
"type": "string",
"enum": ["medium", "warm", "lukewarm", "cold", "frozen"]
},
{
"title": "UNDOCUMENTATED",
"description": "Weight with which this biome should be selected, relative to other biomes in the same category",
"type": "integer"
}
]
}
}
}
}
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.overworld_generation_rules",
"title": "Overworld Generation Rules",
"description": "Control how this biome is instantiated (and then potentially modified) during world generation of the overworld.",
"type": "object",
"additionalProperties": false,
"definitions": {
"transformation": {
"oneOf": [
{
"type": "string",
"title": "Block Reference",
"description": "UNDOCUMENTATED"
},
{
"type": "array",
"description": "UNDOCUMENTATED",
"minItems": 1,
"items": {
"oneOf": [
{
"type": "string",
"description": "UNDOCUMENTATED",
"title": "Block Reference"
},
{
"type": "array",
"description": "UNDOCUMENTATED",
"items": [
{
"title": "Biome Reference",
"description": "UNDOCUMENTATED",
"type": "string"
},
{
"title": "_",
"description": "UNDOCUMENTATED",
"type": "integer"
}
]
}
]
}
}
]
}
},
"properties": {
"hills_transformation": { "title": "Hills Transformation", "description": "UNDOCUMENTATED", "$ref": "#/definitions/transformation" },
"mutate_transformation": { "title": "Mutate Transformation", "description": "UNDOCUMENTATED", "$ref": "#/definitions/transformation" },
"river_transformation": { "title": "River Transformation", "description": "UNDOCUMENTATED", "$ref": "#/definitions/transformation" },
"shore_transformation": { "title": "Shore Transformation", "description": "UNDOCUMENTATED", "$ref": "#/definitions/transformation" },
"generate_for_climates": {
"title": "Generate For Climates",
"description": "Controls the world generation climate categories that this biome can spawn for. A single biome can be associated with multiple categories with different weightings.",
"type": "array",
"items": {
"title": "_",
"description": "UNDOCUMENTATED",
"type": "array",
"items": [
{
"title": "UNDOCUMENTATED",
"description": "Name of a climate category",
"type": "string",
"enum": ["medium", "warm", "lukewarm", "cold", "frozen"]
},
{
"title": "UNDOCUMENTATED",
"description": "Weight with which this biome should be selected, relative to other biomes in the same category",
"type": "integer"
}
]
}
}
}
}

View File

@@ -1,46 +1,46 @@
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.overworld_height",
"title": "Overworld Height",
"description": "Noise parameters used to drive terrain height in the Overworld.",
"type": "object",
"minProperties": 0,
"maxProperties": 2,
"additionalProperties": false,
"properties": {
"noise_params": {
"title": "Noise Params",
"description": "UNDOCUMENATED",
"type": "array",
"items": [
{
"type": "number"
},
{
"type": "number"
}
]
},
"noise_type": {
"title": "Noise Type",
"description": "UNDOCUMENATED",
"type": "string",
"enum": [
"stone_beach",
"deep_ocean",
"default",
"default_mutated",
"lowlands",
"river",
"ocean",
"taiga",
"mountains",
"highlands",
"mushroom",
"less_extreme",
"extreme",
"beach",
"swamp"
]
}
}
}
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.overworld_height",
"title": "Overworld Height",
"description": "Noise parameters used to drive terrain height in the Overworld.",
"type": "object",
"minProperties": 0,
"maxProperties": 2,
"additionalProperties": false,
"properties": {
"noise_params": {
"title": "Noise Params",
"description": "UNDOCUMENATED",
"type": "array",
"items": [
{
"type": "number"
},
{
"type": "number"
}
]
},
"noise_type": {
"title": "Noise Type",
"description": "UNDOCUMENATED",
"type": "string",
"enum": [
"stone_beach",
"deep_ocean",
"default",
"default_mutated",
"lowlands",
"river",
"ocean",
"taiga",
"mountains",
"highlands",
"mushroom",
"less_extreme",
"extreme",
"beach",
"swamp"
]
}
}
}

View File

@@ -1,86 +1,86 @@
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.surface_material_adjustments",
"title": "Surface Material Adjustments",
"description": "Specify fine-detail changes to blocks used in terrain generation (based on a noise function)",
"type": "object",
"additionalProperties": false,
"properties": {
"adjustments": {
"title": "Adjustments",
"description": "All adjustments that match the column's noise values will be applied in the order listed.",
"items": {
"title": "Adjustment",
"description": "UNDOCUMENTATED",
"type": "object",
"additionalProperties": false,
"properties": {
"height_range": {
"title": "Height Range",
"description": "Defines a range of noise values [min, max] for which this adjustment should be applied.",
"type": "array",
"items": [
{
"$ref": "../../../../molang/number.json",
"title": "Min"
},
{
"$ref": "../../../../molang/number.json",
"title": "Max"
}
]
},
"materials": {
"title": "Materials",
"description": "UNDOCUMENTATED",
"type": "object",
"additionalProperties": false,
"properties": {
"top_material": {
"title": "Top Material",
"description": "Controls the block type used for the surface of this biome when this adjustment is active.",
"type": "string"
},
"mid_material": {
"title": "Mid Material",
"description": "Controls the block type used in a layer below the surface of this biome when this adjustment is active.",
"type": "string"
},
"sea_floor_material": {
"title": "Sea Floor Material",
"description": "Controls the block type used as a floor for bodies of water in this biome when this adjustment is active.",
"type": "string"
},
"foundation_material": {
"title": "Top Materials",
"description": "Controls the block type used deep underground in this biome when this adjustment is active.",
"type": "string"
},
"sea_material": {
"title": "Top Materials",
"description": "Controls the block type used in the bodies of water in this biome when this adjustment is active.",
"type": "string"
}
}
},
"noise_range": {
"title": "Noise Range",
"description": "Defines a range of noise values [min, max] for which this adjustment should be applied.",
"type": "array",
"items": [
{
"minimum": -1,
"maximum": 1,
"title": "Min"
},
{
"minimum": -1,
"maximum": 1,
"title": "Max"
}
]
}
}
}
}
}
}
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.surface_material_adjustments",
"title": "Surface Material Adjustments",
"description": "Specify fine-detail changes to blocks used in terrain generation (based on a noise function)",
"type": "object",
"additionalProperties": false,
"properties": {
"adjustments": {
"title": "Adjustments",
"description": "All adjustments that match the column's noise values will be applied in the order listed.",
"items": {
"title": "Adjustment",
"description": "UNDOCUMENTATED",
"type": "object",
"additionalProperties": false,
"properties": {
"height_range": {
"title": "Height Range",
"description": "Defines a range of noise values [min, max] for which this adjustment should be applied.",
"type": "array",
"items": [
{
"$ref": "../../../../molang/number.json",
"title": "Min"
},
{
"$ref": "../../../../molang/number.json",
"title": "Max"
}
]
},
"materials": {
"title": "Materials",
"description": "UNDOCUMENTATED",
"type": "object",
"additionalProperties": false,
"properties": {
"top_material": {
"title": "Top Material",
"description": "Controls the block type used for the surface of this biome when this adjustment is active.",
"type": "string"
},
"mid_material": {
"title": "Mid Material",
"description": "Controls the block type used in a layer below the surface of this biome when this adjustment is active.",
"type": "string"
},
"sea_floor_material": {
"title": "Sea Floor Material",
"description": "Controls the block type used as a floor for bodies of water in this biome when this adjustment is active.",
"type": "string"
},
"foundation_material": {
"title": "Top Materials",
"description": "Controls the block type used deep underground in this biome when this adjustment is active.",
"type": "string"
},
"sea_material": {
"title": "Top Materials",
"description": "Controls the block type used in the bodies of water in this biome when this adjustment is active.",
"type": "string"
}
}
},
"noise_range": {
"title": "Noise Range",
"description": "Defines a range of noise values [min, max] for which this adjustment should be applied.",
"type": "array",
"items": [
{
"minimum": -1,
"maximum": 1,
"title": "Min"
},
{
"minimum": -1,
"maximum": 1,
"title": "Max"
}
]
}
}
}
}
}
}

View File

@@ -1,37 +1,37 @@
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.surface_parameters",
"title": "Surface Parameters",
"description": "Control the blocks used for the default Minecraft Overworld terrain generation.",
"type": "object",
"minProperties": 0,
"maxProperties": 6,
"additionalProperties": false,
"properties": {
"top_material": { "title": "Top Material", "description": "Controls the block type used for the surface of this biome.", "string": "string" },
"mid_material": {
"title": "Mid Material",
"description": "Controls the block type used in a layer below the surface of this biome.",
"string": "string"
},
"sea_floor_material": {
"title": "Sea Floor Material",
"description": "Controls the block type used as a floor for bodies of water in this biome.",
"string": "boostringlean"
},
"foundation_material": {
"title": "Foundation Material",
"description": "Controls the block type used deep underground in this biome.",
"string": "string"
},
"sea_material": {
"title": "Sea Material",
"description": "Controls the block type used for the bodies of water in this biome.",
"string": "string"
},
"sea_floor_depth": {
"title": "Sea Floor Depth",
"description": "Controls how deep below the world water level the floor should occur.",
"type": "integer"
}
}
}
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.surface_parameters",
"title": "Surface Parameters",
"description": "Control the blocks used for the default Minecraft Overworld terrain generation.",
"type": "object",
"minProperties": 0,
"maxProperties": 6,
"additionalProperties": false,
"properties": {
"top_material": { "title": "Top Material", "description": "Controls the block type used for the surface of this biome.", "string": "string" },
"mid_material": {
"title": "Mid Material",
"description": "Controls the block type used in a layer below the surface of this biome.",
"string": "string"
},
"sea_floor_material": {
"title": "Sea Floor Material",
"description": "Controls the block type used as a floor for bodies of water in this biome.",
"string": "boostringlean"
},
"foundation_material": {
"title": "Foundation Material",
"description": "Controls the block type used deep underground in this biome.",
"string": "string"
},
"sea_material": {
"title": "Sea Material",
"description": "Controls the block type used for the bodies of water in this biome.",
"string": "string"
},
"sea_floor_depth": {
"title": "Sea Floor Depth",
"description": "Controls how deep below the world water level the floor should occur.",
"type": "integer"
}
}
}

View File

@@ -1,37 +1,37 @@
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.swamp_surface",
"title": "Swamp Surface",
"description": "Similar to overworld_surface. Adds swamp surface details.",
"type": "object",
"minProperties": 0,
"maxProperties": 6,
"additionalProperties": false,
"properties": {
"top_material": { "title": "Top Material", "description": "Controls the block type used for the surface of this biome.", "string": "string" },
"mid_material": {
"title": "Mid Material",
"description": "Controls the block type used in a layer below the surface of this biome.",
"string": "string"
},
"sea_floor_material": {
"title": "Sea Floor Material",
"description": "Controls the block type used as a floor for bodies of water in this biome.",
"string": "boostringlean"
},
"foundation_material": {
"title": "Foundation Material",
"description": "Controls the block type used deep underground in this biome.",
"string": "string"
},
"sea_material": {
"title": "Sea Material",
"description": "Controls the block type used for the bodies of water in this biome.",
"string": "string"
},
"sea_floor_depth": {
"title": "Sea Floor Depth",
"description": "Controls how deep below the world water level the floor should occur.",
"type": "integer"
}
}
}
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.swamp_surface",
"title": "Swamp Surface",
"description": "Similar to overworld_surface. Adds swamp surface details.",
"type": "object",
"minProperties": 0,
"maxProperties": 6,
"additionalProperties": false,
"properties": {
"top_material": { "title": "Top Material", "description": "Controls the block type used for the surface of this biome.", "string": "string" },
"mid_material": {
"title": "Mid Material",
"description": "Controls the block type used in a layer below the surface of this biome.",
"string": "string"
},
"sea_floor_material": {
"title": "Sea Floor Material",
"description": "Controls the block type used as a floor for bodies of water in this biome.",
"string": "boostringlean"
},
"foundation_material": {
"title": "Foundation Material",
"description": "Controls the block type used deep underground in this biome.",
"string": "string"
},
"sea_material": {
"title": "Sea Material",
"description": "Controls the block type used for the bodies of water in this biome.",
"string": "string"
},
"sea_floor_depth": {
"title": "Sea Floor Depth",
"description": "Controls how deep below the world water level the floor should occur.",
"type": "integer"
}
}
}

View File

@@ -1,8 +1,8 @@
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.the_end_surface",
"title": "End Surface",
"description": "Use default Minecraft End terrain generation.",
"type": "object",
"additionalProperties": false,
"properties": {}
}
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.the_end_surface",
"title": "End Surface",
"description": "Use default Minecraft End terrain generation.",
"type": "object",
"additionalProperties": false,
"properties": {}
}

View File

@@ -1,14 +1,14 @@
{
"$id": "minecraft.behavior.biomes",
"type": "object",
"examples": [{ "plains": { "format_version": "1.12.0" } }],
"additionalProperties": {
"type": "object",
"title": "Biome",
"description": "A biome definition",
"allOf": [
{ "if": { "properties": { "format_version": { "type": "string", "const": "1.12.0" } } }, "then": { "$ref": "./1.12.0/biomes.json" } },
{ "properties": { "format_version": { "$ref": "../../general/format_version.json" } } }
]
}
}
{
"$id": "minecraft.behavior.biomes",
"type": "object",
"examples": [{ "plains": { "format_version": "1.12.0" } }],
"additionalProperties": {
"type": "object",
"title": "Biome",
"description": "A biome definition",
"allOf": [
{ "if": { "properties": { "format_version": { "type": "string", "const": "1.12.0" } } }, "then": { "$ref": "./1.12.0/biomes.json" } },
{ "properties": { "format_version": { "$ref": "../../general/format_version.json" } } }
]
}
}

View File

@@ -1,53 +1,53 @@
{
"$id": "blockception.minecraft.behavior.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": "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": "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" }
}
}
}
}
{
"$id": "blockception.minecraft.behavior.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": "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": "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" }
}
}
}
}

View File

@@ -1,34 +1,34 @@
{
"$id": "blockception.minecraft.behavior.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:breakonpush": { "$ref": "./components/minecraft.breakonpush.json" },
"minecraft:breathability": { "$ref": "./components/minecraft.breathability.json" },
"minecraft:destroy_time": { "$ref": "./components/minecraft.destroy_time.json" },
"minecraft:display_name": { "$ref": "./components/minecraft.display_name.json" },
"minecraft:entity_collision": { "$ref": "./components/minecraft.entity_collision.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:geometry": { "$ref": "./components/minecraft.geometry.json" },
"minecraft:immovable": { "$ref": "./components/minecraft.immovable.json" },
"minecraft:loot": { "$ref": "./components/minecraft.loot.json" },
"minecraft:map_color": { "$ref": "./components/minecraft.map_color.json" },
"minecraft:material_instances": { "$ref": "./components/minecraft.material_instances.json" },
"minecraft:onlypistonpush": { "$ref": "./components/minecraft.onlypistonpush.json" },
"minecraft:pick_collision": { "$ref": "./components/minecraft.pick_collision.json" },
"minecraft:placement_filter": { "$ref": "./components/minecraft.placement_filter.json" },
"minecraft:preventsjumping": { "$ref": "./components/minecraft.preventsjumping.json" },
"minecraft:random_ticking": { "$ref": "./components/minecraft.random_ticking.json" },
"minecraft:rotation": { "$ref": "./components/minecraft.rotation.json" },
"minecraft:ticking": { "$ref": "./components/minecraft.ticking.json" },
"minecraft:unit_cube": { "$ref": "./components/minecraft.unit_cube.json" },
"minecraft:unwalkable": { "$ref": "./components/minecraft.unwalkable.json" }
}
}
{
"$id": "blockception.minecraft.behavior.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:breakonpush": { "$ref": "./components/minecraft.breakonpush.json" },
"minecraft:breathability": { "$ref": "./components/minecraft.breathability.json" },
"minecraft:destroy_time": { "$ref": "./components/minecraft.destroy_time.json" },
"minecraft:display_name": { "$ref": "./components/minecraft.display_name.json" },
"minecraft:entity_collision": { "$ref": "./components/minecraft.entity_collision.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:geometry": { "$ref": "./components/minecraft.geometry.json" },
"minecraft:immovable": { "$ref": "./components/minecraft.immovable.json" },
"minecraft:loot": { "$ref": "./components/minecraft.loot.json" },
"minecraft:map_color": { "$ref": "./components/minecraft.map_color.json" },
"minecraft:material_instances": { "$ref": "./components/minecraft.material_instances.json" },
"minecraft:onlypistonpush": { "$ref": "./components/minecraft.onlypistonpush.json" },
"minecraft:pick_collision": { "$ref": "./components/minecraft.pick_collision.json" },
"minecraft:placement_filter": { "$ref": "./components/minecraft.placement_filter.json" },
"minecraft:preventsjumping": { "$ref": "./components/minecraft.preventsjumping.json" },
"minecraft:random_ticking": { "$ref": "./components/minecraft.random_ticking.json" },
"minecraft:rotation": { "$ref": "./components/minecraft.rotation.json" },
"minecraft:ticking": { "$ref": "./components/minecraft.ticking.json" },
"minecraft:unit_cube": { "$ref": "./components/minecraft.unit_cube.json" },
"minecraft:unwalkable": { "$ref": "./components/minecraft.unwalkable.json" }
}
}

View File

@@ -1,8 +1,8 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.block_light_absorption",
"additionalProperties": false,
"type": "integer",
"title": "Block Light Absorption 1.10.0",
"description": "The amount of light this block will absorb.",
"default": 0
}
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.block_light_absorption",
"additionalProperties": false,
"type": "integer",
"title": "Block Light Absorption 1.10.0",
"description": "The amount of light this block will absorb.",
"default": 0
}

View File

@@ -1,10 +1,10 @@
{
"$id": "blockception.minecraft.behavior.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,
"default": 0.0
}
{
"$id": "blockception.minecraft.behavior.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,
"default": 0.0
}

View File

@@ -1,7 +1,7 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.breakonpush",
"additionalProperties": false,
"type": "boolean",
"title": "Break On Push 1.10.0",
"description": "When pushed by a piston the block breaks."
}
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.breakonpush",
"additionalProperties": false,
"type": "boolean",
"title": "Break On Push 1.10.0",
"description": "When pushed by a piston the block breaks."
}

View File

@@ -1,9 +1,9 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.breathability",
"additionalProperties": false,
"type": "string",
"title": "Breathability 1.10.0",
"description": "Property describing the breathability of this block and whether it is treated as a solid or as air.",
"enum": ["solid", "air"],
"default": "solid"
}
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.breathability",
"additionalProperties": false,
"type": "string",
"title": "Breathability 1.10.0",
"description": "Property describing the breathability of this block and whether it is treated as a solid or as air.",
"enum": ["solid", "air"],
"default": "solid"
}

View File

@@ -1,7 +1,7 @@
{
"$id": "blockception.minecraft.behavior.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."
}
{
"$id": "blockception.minecraft.behavior.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."
}

View File

@@ -1,7 +1,7 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.display_name",
"additionalProperties": false,
"type": "string",
"title": "Display Name 1.10.0",
"description": "Specifies the display name id for the block."
}
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.display_name",
"additionalProperties": false,
"type": "string",
"title": "Display Name 1.10.0",
"description": "Specifies the display name id for the block."
}

View File

@@ -1,37 +1,37 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.entity_collision",
"additionalProperties": false,
"title": "Entity Collision 1.10.0",
"description": "Can only be set to false, it disables the collision of the block with entities.",
"oneOf": [
{ "type": "boolean", "const": false },
{
"type": "object",
"additionalProperties": false,
"properties": {
"origin": {
"type": "array",
"title": "Origin",
"description": "Minimal position Bounds of the collision box",
"default": [-8.0, 0.0, -8.0],
"items": [
{ "type": "number", "title": "X", "description": "The x offset" },
{ "type": "number", "title": "Y", "description": "The y offset" },
{ "type": "number", "title": "Z", "description": "The z offset" }
]
},
"size": {
"type": "array",
"title": "Size",
"description": "Size of each side of the box of the component",
"default": [16.0, 16.0, 16.0],
"items": [
{ "type": "number", "title": "X", "description": "The x size" },
{ "type": "number", "title": "Y", "description": "The y size" },
{ "type": "number", "title": "Z", "description": "The z size" }
]
}
}
}
]
}
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.entity_collision",
"additionalProperties": false,
"title": "Entity Collision 1.10.0",
"description": "Can only be set to false, it disables the collision of the block with entities.",
"oneOf": [
{ "type": "boolean", "const": false },
{
"type": "object",
"additionalProperties": false,
"properties": {
"origin": {
"type": "array",
"title": "Origin",
"description": "Minimal position Bounds of the collision box",
"default": [-8.0, 0.0, -8.0],
"items": [
{ "type": "number", "title": "X", "description": "The x offset" },
{ "type": "number", "title": "Y", "description": "The y offset" },
{ "type": "number", "title": "Z", "description": "The z offset" }
]
},
"size": {
"type": "array",
"title": "Size",
"description": "Size of each side of the box of the component",
"default": [16.0, 16.0, 16.0],
"items": [
{ "type": "number", "title": "X", "description": "The x size" },
{ "type": "number", "title": "Y", "description": "The y size" },
{ "type": "number", "title": "Z", "description": "The z size" }
]
}
}
}
]
}

View File

@@ -1,8 +1,8 @@
{
"$id": "blockception.minecraft.behavior.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.",
"default": 0.0
}
{
"$id": "blockception.minecraft.behavior.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.",
"default": 0.0
}

View File

@@ -1,22 +1,22 @@
{
"$id": "blockception.minecraft.behavior.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"
}
}
}
{
"$id": "blockception.minecraft.behavior.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"
}
}
}

View File

@@ -1,8 +1,8 @@
{
"$id": "blockception.minecraft.behavior.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.",
"default": 0.1
}
{
"$id": "blockception.minecraft.behavior.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.",
"default": 0.1
}

View File

@@ -1,8 +1,8 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.geometry",
"additionalProperties": false,
"type": "string",
"title": "Geometry 1.10.0",
"description": "The geometry definition name to use.",
"pattern": "^geometry\\.[a-zA-Z0-9_\\-\\.]+$"
}
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.geometry",
"additionalProperties": false,
"type": "string",
"title": "Geometry 1.10.0",
"description": "The geometry definition name to use.",
"pattern": "^geometry\\.[a-zA-Z0-9_\\-\\.]+$"
}

View File

@@ -1,7 +1,7 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.immovable",
"additionalProperties": false,
"type": "boolean",
"title": "Immovable 1.10.0",
"description": "An Immovable block cannot be pushed by pistons"
}
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.immovable",
"additionalProperties": false,
"type": "boolean",
"title": "Immovable 1.10.0",
"description": "An Immovable block cannot be pushed by pistons"
}

View File

@@ -1,8 +1,8 @@
{
"$id": "blockception.minecraft.behavior.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$"
}
{
"$id": "blockception.minecraft.behavior.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$"
}

View File

@@ -1,8 +1,8 @@
{
"$id": "blockception.minecraft.behavior.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"
}
{
"$id": "blockception.minecraft.behavior.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"
}

View File

@@ -1,21 +1,21 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.material_instances",
"type": "object",
"title": "Material Instances 1.10.0",
"description": "Maps face or material_instance names in a geometry file to an actual material instance. Material instance can either be a full material instance or a name to another already defined instance",
"definitions": {
"material_instance": {
"title": "Material Instance",
"description": "A single material instance",
"additionalProperties": false,
"properties": {
"ambient_occlusion": { "title": "Ambient Occlusion", "type": "boolean", "description": "UNDOCUMENTATED" },
"face_dimming": { "title": "Face Dimming", "type": "boolean", "description": "UNDOCUMENTATED" },
"render_method": { "type": "string", "title": "Render Method", "description": "TODO description", "enum": ["blend", "opaque", "alpha_test"] },
"texture": { "type": "string", "title": "Texture", "description": "TODO description" }
}
}
},
"properties": { "*": { "$ref": "#/definitions/material_instance" } },
"additionalProperties": { "$ref": "#/definitions/material_instance" }
}
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.material_instances",
"type": "object",
"title": "Material Instances 1.10.0",
"description": "Maps face or material_instance names in a geometry file to an actual material instance. Material instance can either be a full material instance or a name to another already defined instance",
"definitions": {
"material_instance": {
"title": "Material Instance",
"description": "A single material instance",
"additionalProperties": false,
"properties": {
"ambient_occlusion": { "title": "Ambient Occlusion", "type": "boolean", "description": "UNDOCUMENTATED" },
"face_dimming": { "title": "Face Dimming", "type": "boolean", "description": "UNDOCUMENTATED" },
"render_method": { "type": "string", "title": "Render Method", "description": "TODO description", "enum": ["blend", "opaque", "alpha_test"] },
"texture": { "type": "string", "title": "Texture", "description": "TODO description" }
}
}
},
"properties": { "*": { "$ref": "#/definitions/material_instance" } },
"additionalProperties": { "$ref": "#/definitions/material_instance" }
}

View File

@@ -1,6 +1,6 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.onlypistonpush",
"type": "boolean",
"title": "Only Piston Push 1.10.0",
"description": "Blocks with those components won't stick to stickyPistons"
}
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.onlypistonpush",
"type": "boolean",
"title": "Only Piston Push 1.10.0",
"description": "Blocks with those components won't stick to stickyPistons"
}

View File

@@ -1,36 +1,36 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.pick_collision",
"title": "Pick Collision 1.10.0",
"description": "Can only be set to false, it disables the collision of the block with entities",
"oneOf": [
{ "type": "boolean", "const": false },
{
"type": "object",
"additionalProperties": false,
"properties": {
"origin": {
"type": "array",
"title": "Origin",
"description": "Minimal position Bounds of the collision box",
"default": [-8.0, 0.0, -8.0],
"items": [
{ "type": "number", "title": "X", "description": "The x offset" },
{ "type": "number", "title": "Y", "description": "The y offset" },
{ "type": "number", "title": "Z", "description": "The z offset" }
]
},
"size": {
"type": "array",
"title": "Size",
"description": "Size of each side of the box of the component",
"default": [16.0, 16.0, 16.0],
"items": [
{ "type": "number", "title": "X", "description": "The x size" },
{ "type": "number", "title": "Y", "description": "The y size" },
{ "type": "number", "title": "Z", "description": "The z size" }
]
}
}
}
]
}
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.pick_collision",
"title": "Pick Collision 1.10.0",
"description": "Can only be set to false, it disables the collision of the block with entities",
"oneOf": [
{ "type": "boolean", "const": false },
{
"type": "object",
"additionalProperties": false,
"properties": {
"origin": {
"type": "array",
"title": "Origin",
"description": "Minimal position Bounds of the collision box",
"default": [-8.0, 0.0, -8.0],
"items": [
{ "type": "number", "title": "X", "description": "The x offset" },
{ "type": "number", "title": "Y", "description": "The y offset" },
{ "type": "number", "title": "Z", "description": "The z offset" }
]
},
"size": {
"type": "array",
"title": "Size",
"description": "Size of each side of the box of the component",
"default": [16.0, 16.0, 16.0],
"items": [
{ "type": "number", "title": "X", "description": "The x size" },
{ "type": "number", "title": "Y", "description": "The y size" },
{ "type": "number", "title": "Z", "description": "The z size" }
]
}
}
}
]
}

View File

@@ -1,32 +1,32 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.placement_filter",
"title": "Placement Filter 1.10.0",
"description": "Sets rules for under what conditions the block can be placed/survive",
"type": "object",
"properties": {
"conditions": {
"title": "Conditions",
"description": "List of conditions where the block can be placed/survive",
"type": "array",
"items": {
"type": "object",
"title": "Condition",
"description": "TODO",
"properties": {
"allowed_faces": {
"title": "Allowed Faces",
"description": "List of any of the following strings: up, down, north, south, east, west, side, all",
"type": "array",
"items": { "type": "string", "enum": ["up", "down", "north", "south", "east", "west", "side", "all"] }
},
"block_filter": {
"title": "Block Filter",
"description": "List of blocks (can use tags to specify them) that this block can be placed against in the allowed_faces direction",
"type": "array",
"items": { "type": "string", "title": "Block Identifier", "description": "TODO" }
}
}
}
}
}
}
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.placement_filter",
"title": "Placement Filter 1.10.0",
"description": "Sets rules for under what conditions the block can be placed/survive",
"type": "object",
"properties": {
"conditions": {
"title": "Conditions",
"description": "List of conditions where the block can be placed/survive",
"type": "array",
"items": {
"type": "object",
"title": "Condition",
"description": "TODO",
"properties": {
"allowed_faces": {
"title": "Allowed Faces",
"description": "List of any of the following strings: up, down, north, south, east, west, side, all",
"type": "array",
"items": { "type": "string", "enum": ["up", "down", "north", "south", "east", "west", "side", "all"] }
},
"block_filter": {
"title": "Block Filter",
"description": "List of blocks (can use tags to specify them) that this block can be placed against in the allowed_faces direction",
"type": "array",
"items": { "type": "string", "title": "Block Identifier", "description": "TODO" }
}
}
}
}
}
}

View File

@@ -1,6 +1,6 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.preventsjumping",
"title": "Prevents Jumping 1.10.0",
"description": "This component makes it so actors can't jump when walking on this block",
"type": "boolean"
}
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.preventsjumping",
"title": "Prevents Jumping 1.10.0",
"description": "This component makes it so actors can't jump when walking on this block",
"type": "boolean"
}

View File

@@ -1,26 +1,26 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.random_ticking",
"title": "Random Ticking 1.10.0",
"description": "Describes the component that will trigger an even at a regular interval between two values",
"type": "object",
"additionalProperties": false,
"properties": {
"on_tick": {
"title": "On Tick",
"description": "Describes the component that will trigger an even at a regular interval between two values",
"type": "string",
"additionalProperties": false,
"properties": {
"condition": { "title": "Condition", "type": "string", "description": "The condition of event to be executed on the block. Molang" },
"event": { "title": "Event", "type": "string", "description": "The type of event executed on the block." },
"range": { "title": "Range", "type": "array", "items": [{ "type": "integer" }, { "type": "integer" }] },
"target": {
"title": "Target",
"description": "The target of event executed on the block.",
"type": "string",
"enum": ["block", "damager", "other", "parent", "player", "self", "target"]
}
}
}
}
}
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.random_ticking",
"title": "Random Ticking 1.10.0",
"description": "Describes the component that will trigger an even at a regular interval between two values",
"type": "object",
"additionalProperties": false,
"properties": {
"on_tick": {
"title": "On Tick",
"description": "Describes the component that will trigger an even at a regular interval between two values",
"type": "string",
"additionalProperties": false,
"properties": {
"condition": { "title": "Condition", "type": "string", "description": "The condition of event to be executed on the block. Molang" },
"event": { "title": "Event", "type": "string", "description": "The type of event executed on the block." },
"range": { "title": "Range", "type": "array", "items": [{ "type": "integer" }, { "type": "integer" }] },
"target": {
"title": "Target",
"description": "The target of event executed on the block.",
"type": "string",
"enum": ["block", "damager", "other", "parent", "player", "self", "target"]
}
}
}
}
}

View File

@@ -1,12 +1,12 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.rotation",
"title": "Rotation 1.10.0",
"description": "This is the block's rotation around the center of the cube in degrees. The rotation order is x-y-z.",
"type": "array",
"additionalProperties": false,
"items": [
{ "type": "number", "title": "X" },
{ "type": "number", "title": "Y" },
{ "type": "number", "title": "Z" }
]
}
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.rotation",
"title": "Rotation 1.10.0",
"description": "This is the block's rotation around the center of the cube in degrees. The rotation order is x-y-z.",
"type": "array",
"additionalProperties": false,
"items": [
{ "type": "number", "title": "X" },
{ "type": "number", "title": "Y" },
{ "type": "number", "title": "Z" }
]
}

View File

@@ -1,29 +1,29 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.ticking",
"title": "Ticking 1.10.0",
"description": "Describes the component that will trigger an even at a regular interval between two values",
"type": "object",
"additionalProperties": false,
"properties": {
"looping": { "type": "boolean", "title": "Looping", "description": "Does the event loop" },
"range": {
"title": "Range",
"description": "The Range between which the component will trigger his event.",
"type": "array",
"items": [{ "type": "integer" }, { "type": "integer" }]
},
"on_tick": {
"type": "object",
"title": "On Tick",
"description": "Describes the component that will trigger an even at a regular interval between two values",
"condition": { "title": "Condition", "type": "string", "description": "The condition of event to be executed on the block. Molang" },
"event": { "title": "Event", "type": "string", "description": "The type of event executed on the block." },
"target": {
"title": "Target",
"description": "The target of event executed on the block.",
"type": "string",
"enum": ["block", "damager", "other", "parent", "player", "self", "target"]
}
}
}
}
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.ticking",
"title": "Ticking 1.10.0",
"description": "Describes the component that will trigger an even at a regular interval between two values",
"type": "object",
"additionalProperties": false,
"properties": {
"looping": { "type": "boolean", "title": "Looping", "description": "Does the event loop" },
"range": {
"title": "Range",
"description": "The Range between which the component will trigger his event.",
"type": "array",
"items": [{ "type": "integer" }, { "type": "integer" }]
},
"on_tick": {
"type": "object",
"title": "On Tick",
"description": "Describes the component that will trigger an even at a regular interval between two values",
"condition": { "title": "Condition", "type": "string", "description": "The condition of event to be executed on the block. Molang" },
"event": { "title": "Event", "type": "string", "description": "The type of event executed on the block." },
"target": {
"title": "Target",
"description": "The target of event executed on the block.",
"type": "string",
"enum": ["block", "damager", "other", "parent", "player", "self", "target"]
}
}
}
}

View File

@@ -1,6 +1,6 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.unit_cube",
"title": "Unit Cube 1.10.0",
"description": "Specifies that a unit cube is to be used with tessellation.",
"type": "string"
}
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.unit_cube",
"title": "Unit Cube 1.10.0",
"description": "Specifies that a unit cube is to be used with tessellation.",
"type": "string"
}

View File

@@ -1,6 +1,6 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.unwalkable",
"title": "Unwalkable 1.10.0",
"description": "this component sets a block as unwalkable. Most mobs will not try to jump over it if the value is set to true",
"type": "boolean"
}
{
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.unwalkable",
"title": "Unwalkable 1.10.0",
"description": "this component sets a block as unwalkable. Most mobs will not try to jump over it if the value is set to true",
"type": "boolean"
}

View File

@@ -1,53 +1,53 @@
{
"$id": "blockception.minecraft.behavior.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": "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": "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" }
}
}
}
}
{
"$id": "blockception.minecraft.behavior.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": "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": "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" }
}
}
}
}

View File

@@ -1,73 +1,73 @@
{
"$id": "blockception.minecraft.behavior.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": "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": "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"
},
"properties": {
"title": "Properties",
"description": "UNDOCUMENATED",
"propertyNames": { "pattern": "^([a-zA-Z0-9_]+:[a-zA-Z0-9_\\-]+)$" },
"additionalProperties": {
"title": "Property",
"description": "A block property",
"oneOf": [
{
"type": "array",
"items": {
"title": "Property Value",
"description": "The value of this property",
"anyOf": [{ "type": "boolean" }, { "type": "number" }, { "type": "integer" }, { "type": "string" }]
}
},
{ "type": "object" }
]
}
}
}
},
"components": { "$ref": "../1.10.0/components.json" }
}
}
}
}
{
"$id": "blockception.minecraft.behavior.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": "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": "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"
},
"properties": {
"title": "Properties",
"description": "UNDOCUMENATED",
"propertyNames": { "pattern": "^([a-zA-Z0-9_]+:[a-zA-Z0-9_\\-]+)$" },
"additionalProperties": {
"title": "Property",
"description": "A block property",
"oneOf": [
{
"type": "array",
"items": {
"title": "Property Value",
"description": "The value of this property",
"anyOf": [{ "type": "boolean" }, { "type": "number" }, { "type": "integer" }, { "type": "string" }]
}
},
{ "type": "object" }
]
}
}
}
},
"components": { "$ref": "../1.10.0/components.json" }
}
}
}
}

View File

@@ -1,141 +1,141 @@
{
"$id": "blockception.minecraft.behavior.1.16.100.blocks",
"description": "Minecraft blocks 1.16.100",
"required": ["format_version", "minecraft:block"],
"title": "Block",
"type": "object",
"additionalProperties": false,
"properties": {
"format_version": {
"title": "1.16.100 Format Version",
"type": "string",
"const": "1.16.100",
"description": "A version that tells minecraft what type of data format can be expected when reading this file."
},
"minecraft:block": {
"title": "Block Definitions",
"description": "A custom block definition",
"type": "object",
"additionalProperties": false,
"required": ["description", "components"],
"definitions": {
"components_ref": {
"type": "object",
"title": "Component",
"description": "UNDOCUMENTATED",
"additionalProperties": false,
"properties": {
"minecraft:on_fall_on": { "$ref": "./components/minecraft.on_fall_on.json" },
"minecraft:on_interact": { "$ref": "./components/minecraft.on_interact.json" },
"minecraft:on_placed": { "$ref": "./components/minecraft.on_placed.json" },
"minecraft:on_player_destroyed": { "$ref": "./components/minecraft.on_player_destroyed.json" },
"minecraft:on_player_placing": { "$ref": "./components/minecraft.on_player_placing.json" },
"minecraft:on_step_off": { "$ref": "./components/minecraft.on_step_off.json" },
"minecraft:on_step_on": { "$ref": "./components/minecraft.on_step_on.json" },
"minecraft:block_light_absorption": { "$ref": "./components/minecraft.block_light_absorption.json" },
"minecraft:block_light_emission": { "$ref": "./components/minecraft.block_light_emission.json" },
"minecraft:breakonpush": { "$ref": "./components/minecraft.breakonpush.json" },
"minecraft:breathability": { "$ref": "./components/minecraft.breathability.json" },
"minecraft:destroy_time": { "$ref": "./components/minecraft.destroy_time.json" },
"minecraft:display_name": { "$ref": "./components/minecraft.display_name.json" },
"minecraft:entity_collision": { "$ref": "./components/minecraft.entity_collision.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:geometry": { "$ref": "./components/minecraft.geometry.json" },
"minecraft:immovable": { "$ref": "./components/minecraft.immovable.json" },
"minecraft:map_color": { "$ref": "./components/minecraft.map_color.json" },
"minecraft:material_instances": { "$ref": "./components/minecraft.material_instances.json" },
"minecraft:onlypistonpush": { "$ref": "./components/minecraft.onlypistonpush.json" },
"minecraft:pick_collision": { "$ref": "./components/minecraft.pick_collision.json" },
"minecraft:placement_filter": { "$ref": "./components/minecraft.placement_filter.json" },
"minecraft:preventsjumping": { "$ref": "./components/minecraft.preventsjumping.json" },
"minecraft:random_ticking": { "$ref": "./components/minecraft.random_ticking.json" },
"minecraft:rotation": { "$ref": "./components/minecraft.rotation.json" },
"minecraft:ticking": { "$ref": "./components/minecraft.ticking.json" },
"minecraft:unit_cube": { "$ref": "./components/minecraft.unit_cube.json" },
"minecraft:unwalkable": { "$ref": "./components/minecraft.unwalkable.json" }
}
}
},
"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"
},
"properties": {
"title": "Properties",
"description": "UNDOCUMENATED",
"propertyNames": { "pattern": "^([a-zA-Z0-9_]+:[a-zA-Z0-9_\\-]+)$" },
"additionalProperties": {
"title": "Property",
"description": "A block property",
"oneOf": [
{
"type": "array",
"items": {
"title": "Property Value",
"description": "The value of this property",
"anyOf": [{ "type": "boolean" }, { "type": "number" }, { "type": "integer" }, { "type": "string" }]
}
},
{ "type": "object" }
]
}
}
}
},
"events": { "$ref": "./events.json" },
"components": {
"type": "object",
"title": "Component",
"$ref": "#/definitions/components_ref"
},
"permutations": {
"type": "array",
"title": "Permutations",
"description": "UNDOCUMENATED",
"items": {
"title": "Permutation",
"description": "UNDOCUMENATED",
"type": "object",
"additionalProperties": false,
"properties": {
"condition": {
"title": "Condition",
"description": "UNDOCUMENATED",
"$ref": "../../../molang/string.json"
},
"components": {
"type": "object",
"title": "Component",
"$ref": "#/definitions/components_ref"
}
}
}
}
}
}
}
}
{
"$id": "blockception.minecraft.behavior.1.16.100.blocks",
"description": "Minecraft blocks 1.16.100",
"required": ["format_version", "minecraft:block"],
"title": "Block",
"type": "object",
"additionalProperties": false,
"properties": {
"format_version": {
"title": "1.16.100 Format Version",
"type": "string",
"const": "1.16.100",
"description": "A version that tells minecraft what type of data format can be expected when reading this file."
},
"minecraft:block": {
"title": "Block Definitions",
"description": "A custom block definition",
"type": "object",
"additionalProperties": false,
"required": ["description", "components"],
"definitions": {
"components_ref": {
"type": "object",
"title": "Component",
"description": "UNDOCUMENTATED",
"additionalProperties": false,
"properties": {
"minecraft:on_fall_on": { "$ref": "./components/minecraft.on_fall_on.json" },
"minecraft:on_interact": { "$ref": "./components/minecraft.on_interact.json" },
"minecraft:on_placed": { "$ref": "./components/minecraft.on_placed.json" },
"minecraft:on_player_destroyed": { "$ref": "./components/minecraft.on_player_destroyed.json" },
"minecraft:on_player_placing": { "$ref": "./components/minecraft.on_player_placing.json" },
"minecraft:on_step_off": { "$ref": "./components/minecraft.on_step_off.json" },
"minecraft:on_step_on": { "$ref": "./components/minecraft.on_step_on.json" },
"minecraft:block_light_absorption": { "$ref": "./components/minecraft.block_light_absorption.json" },
"minecraft:block_light_emission": { "$ref": "./components/minecraft.block_light_emission.json" },
"minecraft:breakonpush": { "$ref": "./components/minecraft.breakonpush.json" },
"minecraft:breathability": { "$ref": "./components/minecraft.breathability.json" },
"minecraft:destroy_time": { "$ref": "./components/minecraft.destroy_time.json" },
"minecraft:display_name": { "$ref": "./components/minecraft.display_name.json" },
"minecraft:entity_collision": { "$ref": "./components/minecraft.entity_collision.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:geometry": { "$ref": "./components/minecraft.geometry.json" },
"minecraft:immovable": { "$ref": "./components/minecraft.immovable.json" },
"minecraft:map_color": { "$ref": "./components/minecraft.map_color.json" },
"minecraft:material_instances": { "$ref": "./components/minecraft.material_instances.json" },
"minecraft:onlypistonpush": { "$ref": "./components/minecraft.onlypistonpush.json" },
"minecraft:pick_collision": { "$ref": "./components/minecraft.pick_collision.json" },
"minecraft:placement_filter": { "$ref": "./components/minecraft.placement_filter.json" },
"minecraft:preventsjumping": { "$ref": "./components/minecraft.preventsjumping.json" },
"minecraft:random_ticking": { "$ref": "./components/minecraft.random_ticking.json" },
"minecraft:rotation": { "$ref": "./components/minecraft.rotation.json" },
"minecraft:ticking": { "$ref": "./components/minecraft.ticking.json" },
"minecraft:unit_cube": { "$ref": "./components/minecraft.unit_cube.json" },
"minecraft:unwalkable": { "$ref": "./components/minecraft.unwalkable.json" }
}
}
},
"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"
},
"properties": {
"title": "Properties",
"description": "UNDOCUMENATED",
"propertyNames": { "pattern": "^([a-zA-Z0-9_]+:[a-zA-Z0-9_\\-]+)$" },
"additionalProperties": {
"title": "Property",
"description": "A block property",
"oneOf": [
{
"type": "array",
"items": {
"title": "Property Value",
"description": "The value of this property",
"anyOf": [{ "type": "boolean" }, { "type": "number" }, { "type": "integer" }, { "type": "string" }]
}
},
{ "type": "object" }
]
}
}
}
},
"events": { "$ref": "./events.json" },
"components": {
"type": "object",
"title": "Component",
"$ref": "#/definitions/components_ref"
},
"permutations": {
"type": "array",
"title": "Permutations",
"description": "UNDOCUMENATED",
"items": {
"title": "Permutation",
"description": "UNDOCUMENATED",
"type": "object",
"additionalProperties": false,
"properties": {
"condition": {
"title": "Condition",
"description": "UNDOCUMENATED",
"$ref": "../../../molang/string.json"
},
"components": {
"type": "object",
"title": "Component",
"$ref": "#/definitions/components_ref"
}
}
}
}
}
}
}
}

View File

@@ -1,8 +1,8 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.block_light_absorption",
"additionalProperties": false,
"type": "integer",
"title": "Block Light Absorption 1.16.100",
"description": "The amount of light this block will absorb.",
"default": 0
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.block_light_absorption",
"additionalProperties": false,
"type": "integer",
"title": "Block Light Absorption 1.16.100",
"description": "The amount of light this block will absorb.",
"default": 0
}

View File

@@ -1,10 +1,10 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.block_light_emission",
"additionalProperties": false,
"type": "number",
"title": "Block Light Emission 1.16.100",
"description": "The amount of light this block will emit in a range [0.0, 1.0].",
"minimum": 0,
"maximum": 1,
"default": 0.0
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.block_light_emission",
"additionalProperties": false,
"type": "number",
"title": "Block Light Emission 1.16.100",
"description": "The amount of light this block will emit in a range [0.0, 1.0].",
"minimum": 0,
"maximum": 1,
"default": 0.0
}

View File

@@ -1,7 +1,7 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.breakonpush",
"additionalProperties": false,
"type": "boolean",
"title": "Break On Push 1.16.100",
"description": "When pushed by a piston the block breaks."
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.breakonpush",
"additionalProperties": false,
"type": "boolean",
"title": "Break On Push 1.16.100",
"description": "When pushed by a piston the block breaks."
}

View File

@@ -1,9 +1,9 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.breathability",
"additionalProperties": false,
"type": "string",
"title": "Breathability 1.16.100",
"description": "Property describing the breathability of this block and whether it is treated as a solid or as air.",
"enum": ["solid", "air"],
"default": "solid"
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.breathability",
"additionalProperties": false,
"type": "string",
"title": "Breathability 1.16.100",
"description": "Property describing the breathability of this block and whether it is treated as a solid or as air.",
"enum": ["solid", "air"],
"default": "solid"
}

View File

@@ -1,7 +1,7 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.destroy_time",
"additionalProperties": false,
"type": "number",
"title": "Destroy Time 1.16.100",
"description": "Sets the destroy time property for the block. Greater numbers result in greater mining times."
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.destroy_time",
"additionalProperties": false,
"type": "number",
"title": "Destroy Time 1.16.100",
"description": "Sets the destroy time property for the block. Greater numbers result in greater mining times."
}

View File

@@ -1,7 +1,7 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.display_name",
"additionalProperties": false,
"type": "string",
"title": "Display Name 1.16.100",
"description": "Specifies the display name id for the block."
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.display_name",
"additionalProperties": false,
"type": "string",
"title": "Display Name 1.16.100",
"description": "Specifies the display name id for the block."
}

View File

@@ -1,36 +1,36 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.entity_collision",
"title": "Entity Collision 1.16.100",
"description": "Can only be set to false, it disables the collision of the block with entities.",
"oneOf": [
{ "type": "boolean", "const": false },
{
"type": "object",
"additionalProperties": false,
"properties": {
"origin": {
"type": "array",
"title": "Origin",
"description": "Minimal position Bounds of the collision box",
"default": [-8.0, 0.0, -8.0],
"items": [
{ "type": "number", "title": "X", "description": "The x offset" },
{ "type": "number", "title": "Y", "description": "The y offset" },
{ "type": "number", "title": "Z", "description": "The z offset" }
]
},
"size": {
"type": "array",
"title": "Size",
"description": "Size of each side of the box of the component",
"default": [16.0, 16.0, 16.0],
"items": [
{ "type": "number", "title": "X", "description": "The x size" },
{ "type": "number", "title": "Y", "description": "The y size" },
{ "type": "number", "title": "Z", "description": "The z size" }
]
}
}
}
]
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.entity_collision",
"title": "Entity Collision 1.16.100",
"description": "Can only be set to false, it disables the collision of the block with entities.",
"oneOf": [
{ "type": "boolean", "const": false },
{
"type": "object",
"additionalProperties": false,
"properties": {
"origin": {
"type": "array",
"title": "Origin",
"description": "Minimal position Bounds of the collision box",
"default": [-8.0, 0.0, -8.0],
"items": [
{ "type": "number", "title": "X", "description": "The x offset" },
{ "type": "number", "title": "Y", "description": "The y offset" },
{ "type": "number", "title": "Z", "description": "The z offset" }
]
},
"size": {
"type": "array",
"title": "Size",
"description": "Size of each side of the box of the component",
"default": [16.0, 16.0, 16.0],
"items": [
{ "type": "number", "title": "X", "description": "The x size" },
{ "type": "number", "title": "Y", "description": "The y size" },
{ "type": "number", "title": "Z", "description": "The z size" }
]
}
}
}
]
}

View File

@@ -1,8 +1,8 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.explosion_resistance",
"additionalProperties": false,
"type": "number",
"title": "Explosion Resistance 1.16.100",
"description": "Sets the explosion resistance for this block.",
"default": 0.0
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.explosion_resistance",
"additionalProperties": false,
"type": "number",
"title": "Explosion Resistance 1.16.100",
"description": "Sets the explosion resistance for this block.",
"default": 0.0
}

View File

@@ -1,22 +1,22 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.flammable",
"additionalProperties": false,
"type": "object",
"title": "Flammable 1.16.100",
"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"
}
}
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.flammable",
"additionalProperties": false,
"type": "object",
"title": "Flammable 1.16.100",
"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"
}
}
}

View File

@@ -1,8 +1,8 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.friction",
"additionalProperties": false,
"type": "number",
"title": "Friction 1.16.100",
"description": "Property describing the friction for this block. Friction effects an entities movements when it walks on the block.",
"default": 0.1
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.friction",
"additionalProperties": false,
"type": "number",
"title": "Friction 1.16.100",
"description": "Property describing the friction for this block. Friction effects an entities movements when it walks on the block.",
"default": 0.1
}

View File

@@ -1,8 +1,8 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.geometry",
"additionalProperties": false,
"type": "string",
"title": "Geometry 1.16.100",
"description": "The geometry definition name to use.",
"pattern": "^geometry\\.[a-zA-Z0-9_\\-\\.]+$"
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.geometry",
"additionalProperties": false,
"type": "string",
"title": "Geometry 1.16.100",
"description": "The geometry definition name to use.",
"pattern": "^geometry\\.[a-zA-Z0-9_\\-\\.]+$"
}

View File

@@ -1,7 +1,7 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.immovable",
"additionalProperties": false,
"type": "boolean",
"title": "Immovable 1.16.100",
"description": "An Immovable block cannot be pushed by pistons"
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.immovable",
"additionalProperties": false,
"type": "boolean",
"title": "Immovable 1.16.100",
"description": "An Immovable block cannot be pushed by pistons"
}

View File

@@ -1,8 +1,8 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.loot",
"additionalProperties": false,
"type": "string",
"title": "Loot 1.16.100",
"description": "The path of the loot table that this component will use when the block is destroyed.",
"pattern": "loot_tables/.*\\.json$"
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.loot",
"additionalProperties": false,
"type": "string",
"title": "Loot 1.16.100",
"description": "The path of the loot table that this component will use when the block is destroyed.",
"pattern": "loot_tables/.*\\.json$"
}

View File

@@ -1,8 +1,8 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.map_color",
"additionalProperties": false,
"type": "string",
"title": "Map Color 1.16.100",
"description": "A color represented as a hex value. This will be the color rendered to a map.",
"format": "color-hex"
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.map_color",
"additionalProperties": false,
"type": "string",
"title": "Map Color 1.16.100",
"description": "A color represented as a hex value. This will be the color rendered to a map.",
"format": "color-hex"
}

View File

@@ -1,21 +1,21 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.material_instances",
"type": "object",
"title": "Material Instances 1.16.100",
"description": "Maps face or material_instance names in a geometry file to an actual material instance. Material instance can either be a full material instance or a name to another already defined instance",
"definitions": {
"material_instance": {
"title": "Material Instance",
"description": "A single material instance",
"additionalProperties": false,
"properties": {
"ambient_occlusion": { "title": "Ambient Occlusion", "type": "boolean", "description": "UNDOCUMENTATED" },
"face_dimming": { "title": "Face Dimming", "type": "boolean", "description": "UNDOCUMENTATED" },
"render_method": { "type": "string", "title": "Render Method", "description": "TODO description", "enum": ["blend", "opaque", "alpha_test"] },
"texture": { "type": "string", "title": "Texture", "description": "TODO description" }
}
}
},
"properties": { "*": { "$ref": "#/definitions/material_instance" } },
"additionalProperties": { "$ref": "#/definitions/material_instance" }
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.material_instances",
"type": "object",
"title": "Material Instances 1.16.100",
"description": "Maps face or material_instance names in a geometry file to an actual material instance. Material instance can either be a full material instance or a name to another already defined instance",
"definitions": {
"material_instance": {
"title": "Material Instance",
"description": "A single material instance",
"additionalProperties": false,
"properties": {
"ambient_occlusion": { "title": "Ambient Occlusion", "type": "boolean", "description": "UNDOCUMENTATED" },
"face_dimming": { "title": "Face Dimming", "type": "boolean", "description": "UNDOCUMENTATED" },
"render_method": { "type": "string", "title": "Render Method", "description": "TODO description", "enum": ["blend", "opaque", "alpha_test"] },
"texture": { "type": "string", "title": "Texture", "description": "TODO description" }
}
}
},
"properties": { "*": { "$ref": "#/definitions/material_instance" } },
"additionalProperties": { "$ref": "#/definitions/material_instance" }
}

View File

@@ -1,17 +1,17 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_fall_on",
"type": "object",
"title": "On Fall On",
"description": "Describes event for this block.",
"properties": {
"condition": { "type": "string", "default": "", "description": "The condition of event to be executed on the block.", "title": "Condition" },
"event": { "type": "string", "default": "", "description": "The event executed on the block.", "title": "Event" },
"min_fall_distance": {
"type": "number",
"default": 0,
"description": "The minimum distance in blocks that an actor needs to fall to trigger this event.",
"title": "Min Fall Distance"
},
"target": { "type": "string", "default": "self", "description": "The target of event executed on the block.", "title": "Target" }
}
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_fall_on",
"type": "object",
"title": "On Fall On",
"description": "Describes event for this block.",
"properties": {
"condition": { "type": "string", "default": "", "description": "The condition of event to be executed on the block.", "title": "Condition" },
"event": { "type": "string", "default": "", "description": "The event executed on the block.", "title": "Event" },
"min_fall_distance": {
"type": "number",
"default": 0,
"description": "The minimum distance in blocks that an actor needs to fall to trigger this event.",
"title": "Min Fall Distance"
},
"target": { "type": "string", "default": "self", "description": "The target of event executed on the block.", "title": "Target" }
}
}

View File

@@ -1,11 +1,11 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_interact",
"type": "object",
"title": "On Fall On",
"description": "Describes event for this block.",
"properties": {
"condition": { "type": "string", "default": "", "description": "The condition of event to be executed on the block.", "title": "Condition" },
"event": { "type": "string", "default": "", "description": "The event executed on the block.", "title": "Event" },
"target": { "type": "string", "default": "self", "description": "The target of event executed on the block.", "title": "Target" }
}
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_interact",
"type": "object",
"title": "On Fall On",
"description": "Describes event for this block.",
"properties": {
"condition": { "type": "string", "default": "", "description": "The condition of event to be executed on the block.", "title": "Condition" },
"event": { "type": "string", "default": "", "description": "The event executed on the block.", "title": "Event" },
"target": { "type": "string", "default": "self", "description": "The target of event executed on the block.", "title": "Target" }
}
}

View File

@@ -1,11 +1,11 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_placed",
"type": "object",
"title": "On Placed 1.16.100",
"description": "Describes event for this block.",
"properties": {
"condition": { "type": "string", "default": "", "description": "The condition of event to be executed on the block.", "title": "Condition" },
"event": { "type": "string", "default": "", "description": "The event executed on the block.", "title": "Event" },
"target": { "type": "string", "default": "self", "description": "The target of event executed on the block.", "title": "Target" }
}
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_placed",
"type": "object",
"title": "On Placed 1.16.100",
"description": "Describes event for this block.",
"properties": {
"condition": { "type": "string", "default": "", "description": "The condition of event to be executed on the block.", "title": "Condition" },
"event": { "type": "string", "default": "", "description": "The event executed on the block.", "title": "Event" },
"target": { "type": "string", "default": "self", "description": "The target of event executed on the block.", "title": "Target" }
}
}

View File

@@ -1,11 +1,11 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_player_destroyed",
"type": "object",
"title": "On Player Destroyed 1.16.100",
"description": "Describes event for this block.",
"properties": {
"condition": { "type": "string", "default": "", "description": "The condition of event to be executed on the block.", "title": "Condition" },
"event": { "type": "string", "default": "", "description": "The event executed on the block.", "title": "Event" },
"target": { "type": "string", "default": "self", "description": "The target of event executed on the block.", "title": "Target" }
}
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_player_destroyed",
"type": "object",
"title": "On Player Destroyed 1.16.100",
"description": "Describes event for this block.",
"properties": {
"condition": { "type": "string", "default": "", "description": "The condition of event to be executed on the block.", "title": "Condition" },
"event": { "type": "string", "default": "", "description": "The event executed on the block.", "title": "Event" },
"target": { "type": "string", "default": "self", "description": "The target of event executed on the block.", "title": "Target" }
}
}

View File

@@ -1,11 +1,11 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_player_placing",
"type": "object",
"title": "On Player Placing 1.16.100",
"description": "Describes event for this block.",
"properties": {
"condition": { "type": "string", "default": "", "description": "The condition of event to be executed on the block.", "title": "Condition" },
"event": { "type": "string", "default": "", "description": "The event executed on the block.", "title": "Event" },
"target": { "type": "string", "default": "self", "description": "The target of event executed on the block.", "title": "Target" }
}
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_player_placing",
"type": "object",
"title": "On Player Placing 1.16.100",
"description": "Describes event for this block.",
"properties": {
"condition": { "type": "string", "default": "", "description": "The condition of event to be executed on the block.", "title": "Condition" },
"event": { "type": "string", "default": "", "description": "The event executed on the block.", "title": "Event" },
"target": { "type": "string", "default": "self", "description": "The target of event executed on the block.", "title": "Target" }
}
}

View File

@@ -1,11 +1,11 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_step_off",
"type": "object",
"title": "On Step Off 1.16.100",
"description": "Describes event for this block.",
"properties": {
"condition": { "type": "string", "default": "", "description": "The condition of event to be executed on the block.", "title": "Condition" },
"event": { "type": "string", "default": "", "description": "The event executed on the block.", "title": "Event" },
"target": { "type": "string", "default": "self", "description": "The target of event executed on the block.", "title": "Target" }
}
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_step_off",
"type": "object",
"title": "On Step Off 1.16.100",
"description": "Describes event for this block.",
"properties": {
"condition": { "type": "string", "default": "", "description": "The condition of event to be executed on the block.", "title": "Condition" },
"event": { "type": "string", "default": "", "description": "The event executed on the block.", "title": "Event" },
"target": { "type": "string", "default": "self", "description": "The target of event executed on the block.", "title": "Target" }
}
}

View File

@@ -1,11 +1,11 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_step_on",
"type": "object",
"title": "On Step On 1.16.100",
"description": "Describes event for this block.",
"properties": {
"condition": { "type": "string", "default": "", "description": "The condition of event to be executed on the block.", "title": "Condition" },
"event": { "type": "string", "default": "", "description": "The event executed on the block.", "title": "Event" },
"target": { "type": "string", "default": "self", "description": "The target of event executed on the block.", "title": "Target" }
}
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_step_on",
"type": "object",
"title": "On Step On 1.16.100",
"description": "Describes event for this block.",
"properties": {
"condition": { "type": "string", "default": "", "description": "The condition of event to be executed on the block.", "title": "Condition" },
"event": { "type": "string", "default": "", "description": "The event executed on the block.", "title": "Event" },
"target": { "type": "string", "default": "self", "description": "The target of event executed on the block.", "title": "Target" }
}
}

View File

@@ -1,6 +1,6 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.onlypistonpush",
"type": "boolean",
"title": "Only Piston Push 1.16.100",
"description": "Blocks with those components won't stick to stickyPistons"
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.onlypistonpush",
"type": "boolean",
"title": "Only Piston Push 1.16.100",
"description": "Blocks with those components won't stick to stickyPistons"
}

View File

@@ -1,36 +1,36 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.pick_collision",
"title": "Pick Collision 1.16.100",
"description": "Can only be set to false, it disables the collision of the block with entities",
"oneOf": [
{ "type": "boolean", "const": false },
{
"type": "object",
"additionalProperties": false,
"properties": {
"origin": {
"type": "array",
"title": "Origin",
"description": "Minimal position Bounds of the collision box",
"default": [-8.0, 0.0, -8.0],
"items": [
{ "type": "number", "title": "X", "description": "The x offset" },
{ "type": "number", "title": "Y", "description": "The y offset" },
{ "type": "number", "title": "Z", "description": "The z offset" }
]
},
"size": {
"type": "array",
"title": "Size",
"description": "Size of each side of the box of the component",
"default": [16.0, 16.0, 16.0],
"items": [
{ "type": "number", "title": "X", "description": "The x size" },
{ "type": "number", "title": "Y", "description": "The y size" },
{ "type": "number", "title": "Z", "description": "The z size" }
]
}
}
}
]
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.pick_collision",
"title": "Pick Collision 1.16.100",
"description": "Can only be set to false, it disables the collision of the block with entities",
"oneOf": [
{ "type": "boolean", "const": false },
{
"type": "object",
"additionalProperties": false,
"properties": {
"origin": {
"type": "array",
"title": "Origin",
"description": "Minimal position Bounds of the collision box",
"default": [-8.0, 0.0, -8.0],
"items": [
{ "type": "number", "title": "X", "description": "The x offset" },
{ "type": "number", "title": "Y", "description": "The y offset" },
{ "type": "number", "title": "Z", "description": "The z offset" }
]
},
"size": {
"type": "array",
"title": "Size",
"description": "Size of each side of the box of the component",
"default": [16.0, 16.0, 16.0],
"items": [
{ "type": "number", "title": "X", "description": "The x size" },
{ "type": "number", "title": "Y", "description": "The y size" },
{ "type": "number", "title": "Z", "description": "The z size" }
]
}
}
}
]
}

View File

@@ -1,32 +1,32 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.placement_filter",
"title": "Placement Filter 1.16.100",
"description": "Sets rules for under what conditions the block can be placed/survive",
"type": "object",
"properties": {
"conditions": {
"title": "Conditions",
"description": "List of conditions where the block can be placed/survive",
"type": "array",
"items": {
"type": "object",
"title": "Condition",
"description": "TODO",
"properties": {
"allowed_faces": {
"title": "Allowed Faces",
"description": "List of any of the following strings: up, down, north, south, east, west, side, all",
"type": "array",
"items": { "type": "string", "enum": ["up", "down", "north", "south", "east", "west", "side", "all"] }
},
"block_filter": {
"title": "Block Filter",
"description": "List of blocks (can use tags to specify them) that this block can be placed against in the allowed_faces direction",
"type": "array",
"items": { "type": "string", "title": "Block Identifier", "description": "TODO" }
}
}
}
}
}
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.placement_filter",
"title": "Placement Filter 1.16.100",
"description": "Sets rules for under what conditions the block can be placed/survive",
"type": "object",
"properties": {
"conditions": {
"title": "Conditions",
"description": "List of conditions where the block can be placed/survive",
"type": "array",
"items": {
"type": "object",
"title": "Condition",
"description": "TODO",
"properties": {
"allowed_faces": {
"title": "Allowed Faces",
"description": "List of any of the following strings: up, down, north, south, east, west, side, all",
"type": "array",
"items": { "type": "string", "enum": ["up", "down", "north", "south", "east", "west", "side", "all"] }
},
"block_filter": {
"title": "Block Filter",
"description": "List of blocks (can use tags to specify them) that this block can be placed against in the allowed_faces direction",
"type": "array",
"items": { "type": "string", "title": "Block Identifier", "description": "TODO" }
}
}
}
}
}
}

View File

@@ -1,6 +1,6 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.preventsjumping",
"title": "Prevents Jumping 1.16.100",
"description": "This component makes it so actors can't jump when walking on this block",
"type": "boolean"
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.preventsjumping",
"title": "Prevents Jumping 1.16.100",
"description": "This component makes it so actors can't jump when walking on this block",
"type": "boolean"
}

View File

@@ -1,38 +1,38 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.random_ticking",
"title": "Random Ticking 1.16.100",
"description": "Describes the component that will trigger an even at a regular interval between two values",
"type": "object",
"additionalProperties": false,
"properties": {
"on_tick": {
"title": "On Tick",
"description": "Describes the component that will trigger an even at a regular interval between two values",
"type": "string",
"additionalProperties": false,
"properties": {
"condition": {
"title": "Condition",
"type": "string",
"default": "1",
"description": "The condition of event to be executed on the block. Molang"
},
"event": { "title": "Event", "type": "string", "default": "set_block_property", "description": "The type of event executed on the block." },
"range": { "title": "Range", "type": "array", "items": [{ "type": "integer" }, { "type": "integer" }] },
"target": {
"title": "Target",
"description": "The target of event executed on the block.",
"type": "string",
"enum": ["block", "damager", "other", "parent", "player", "self", "target"]
}
}
},
"looping": { "type": "boolean", "default": true, "description": "Does the event loop", "title": "Looping" },
"range": {
"type": "array",
"default": [10, 10],
"description": "The Range between which the component will trigger his event.",
"title": "Range"
}
}
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.random_ticking",
"title": "Random Ticking 1.16.100",
"description": "Describes the component that will trigger an even at a regular interval between two values",
"type": "object",
"additionalProperties": false,
"properties": {
"on_tick": {
"title": "On Tick",
"description": "Describes the component that will trigger an even at a regular interval between two values",
"type": "string",
"additionalProperties": false,
"properties": {
"condition": {
"title": "Condition",
"type": "string",
"default": "1",
"description": "The condition of event to be executed on the block. Molang"
},
"event": { "title": "Event", "type": "string", "default": "set_block_property", "description": "The type of event executed on the block." },
"range": { "title": "Range", "type": "array", "items": [{ "type": "integer" }, { "type": "integer" }] },
"target": {
"title": "Target",
"description": "The target of event executed on the block.",
"type": "string",
"enum": ["block", "damager", "other", "parent", "player", "self", "target"]
}
}
},
"looping": { "type": "boolean", "default": true, "description": "Does the event loop", "title": "Looping" },
"range": {
"type": "array",
"default": [10, 10],
"description": "The Range between which the component will trigger his event.",
"title": "Range"
}
}
}

View File

@@ -1,12 +1,12 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.rotation",
"title": "Rotation 1.16.100",
"description": "This is the block's rotation around the center of the cube in degrees. The rotation order is x-y-z.",
"type": "array",
"additionalProperties": false,
"items": [
{ "type": "number", "title": "X" },
{ "type": "number", "title": "Y" },
{ "type": "number", "title": "Z" }
]
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.rotation",
"title": "Rotation 1.16.100",
"description": "This is the block's rotation around the center of the cube in degrees. The rotation order is x-y-z.",
"type": "array",
"additionalProperties": false,
"items": [
{ "type": "number", "title": "X" },
{ "type": "number", "title": "Y" },
{ "type": "number", "title": "Z" }
]
}

View File

@@ -1,29 +1,29 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.ticking",
"title": "Ticking 1.16.100",
"description": "Describes the component that will trigger an even at a regular interval between two values",
"type": "object",
"additionalProperties": false,
"properties": {
"looping": { "type": "boolean", "title": "Looping", "description": "Does the event loop" },
"range": {
"title": "Range",
"description": "The Range between which the component will trigger his event.",
"type": "array",
"items": [{ "type": "integer" }, { "type": "integer" }]
},
"on_tick": {
"type": "object",
"title": "On Tick",
"description": "Describes the component that will trigger an even at a regular interval between two values",
"condition": { "title": "Condition", "type": "string", "description": "The condition of event to be executed on the block. Molang" },
"event": { "title": "Event", "type": "string", "description": "The type of event executed on the block." },
"target": {
"title": "Target",
"description": "The target of event executed on the block.",
"type": "string",
"enum": ["block", "damager", "other", "parent", "player", "self", "target"]
}
}
}
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.ticking",
"title": "Ticking 1.16.100",
"description": "Describes the component that will trigger an even at a regular interval between two values",
"type": "object",
"additionalProperties": false,
"properties": {
"looping": { "type": "boolean", "title": "Looping", "description": "Does the event loop" },
"range": {
"title": "Range",
"description": "The Range between which the component will trigger his event.",
"type": "array",
"items": [{ "type": "integer" }, { "type": "integer" }]
},
"on_tick": {
"type": "object",
"title": "On Tick",
"description": "Describes the component that will trigger an even at a regular interval between two values",
"condition": { "title": "Condition", "type": "string", "description": "The condition of event to be executed on the block. Molang" },
"event": { "title": "Event", "type": "string", "description": "The type of event executed on the block." },
"target": {
"title": "Target",
"description": "The target of event executed on the block.",
"type": "string",
"enum": ["block", "damager", "other", "parent", "player", "self", "target"]
}
}
}
}

View File

@@ -1,6 +1,6 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.unit_cube",
"title": "Unit Cube 1.16.100",
"description": "Specifies that a unit cube is to be used with tessellation.",
"type": "string"
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.unit_cube",
"title": "Unit Cube 1.16.100",
"description": "Specifies that a unit cube is to be used with tessellation.",
"type": "string"
}

View File

@@ -1,6 +1,6 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.unwalkable",
"title": "Unwalkable 1.16.100",
"description": "this component sets a block as unwalkable. Most mobs will not try to jump over it if the value is set to true",
"type": "boolean"
}
{
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.unwalkable",
"title": "Unwalkable 1.16.100",
"description": "this component sets a block as unwalkable. Most mobs will not try to jump over it if the value is set to true",
"type": "boolean"
}

View File

@@ -1,86 +1,86 @@
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events",
"title": "Events",
"description": "UNDOCUMENTATED",
"type": "object",
"properties": {
"minecraft:on_interact": { "$ref": "#/definitions/event_base" },
"minecraft:on_step_on": { "$ref": "#/definitions/event_base" },
"minecraft:on_step_off": { "$ref": "#/definitions/event_base" },
"minecraft:on_fall_on": { "$ref": "#/definitions/event_base" },
"minecraft:on_placed": { "$ref": "#/definitions/event_base" },
"minecraft:on_player_placing": { "$ref": "#/definitions/event_base" },
"minecraft:on_player_destroyed": { "$ref": "#/definitions/event_base" },
"minecraft:ticking": { "$ref": "#/definitions/event_base" },
"minecraft:random_ticking": { "$ref": "#/definitions/event_base" }
},
"additionalProperties": { "$ref": "#/definitions/event_base" },
"definitions": {
"event_base": {
"title": "Event",
"description": "UNDOCUMENTATED",
"type": "object",
"additionalProperties": false,
"$ref": "#/definitions/event_functions",
"properties": {
"sequence": {
"title": "Sequence",
"description": "UNDOCUMENTATED",
"type": "array",
"items": { "title": "Sequence", "description": "UNDOCUMENTATED", "type": "object", "$ref": "#/definitions/event_functions" }
},
"randomize": {
"title": "Randomize",
"description": "UNDOCUMENTATED",
"type": "array",
"items": {
"title": "Randomize",
"description": "UNDOCUMENTATED",
"type": "object",
"$ref": "#/definitions/event_functions",
"required": ["weight"],
"properties": { "weight": { "title": "Weight", "description": "UNDOCUMENTATED", "type": "integer", "minimum": 0 } }
}
},
"add_mob_effect": { "$ref": "./events/add_mob_effect.json" },
"damage": { "$ref": "./events/damage.json" },
"decrement_stack": { "$ref": "./events/decrement_stack.json" },
"die": { "$ref": "./events/die.json" },
"play_effect": { "$ref": "./events/play_effect.json" },
"play_sound": { "$ref": "./events/play_sound.json" },
"remove_mob_effect": { "$ref": "./events/remove_mob_effect.json" },
"run_command": { "$ref": "./events/run_command.json" },
"set_block": { "$ref": "./events/set_block.json" },
"set_block_at_pos": { "$ref": "./events/set_block_at_pos.json" },
"set_block_property": { "$ref": "./events/set_block_property.json" },
"spawn_loot": { "$ref": "./events/spawn_loot.json" },
"swing": { "$ref": "./events/swing.json" },
"teleport": { "$ref": "./events/teleport.json" },
"transform_item": { "$ref": "./events/transform_item.json" }
}
},
"event_functions": {
"title": "Event",
"description": "UNDOCUMENTATED",
"type": "object",
"additionalProperties": true,
"properties": {
"add_mob_effect": { "$ref": "./events/add_mob_effect.json" },
"damage": { "$ref": "./events/damage.json" },
"decrement_stack": { "$ref": "./events/decrement_stack.json" },
"die": { "$ref": "./events/die.json" },
"play_effect": { "$ref": "./events/play_effect.json" },
"play_sound": { "$ref": "./events/play_sound.json" },
"remove_mob_effect": { "$ref": "./events/remove_mob_effect.json" },
"run_command": { "$ref": "./events/run_command.json" },
"set_block": { "$ref": "./events/set_block.json" },
"set_block_at_pos": { "$ref": "./events/set_block_at_pos.json" },
"set_block_property": { "$ref": "./events/set_block_property.json" },
"spawn_loot": { "$ref": "./events/spawn_loot.json" },
"swing": { "$ref": "./events/swing.json" },
"teleport": { "$ref": "./events/teleport.json" },
"transform_item": { "$ref": "./events/transform_item.json" }
}
}
}
}
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events",
"title": "Events",
"description": "UNDOCUMENTATED",
"type": "object",
"properties": {
"minecraft:on_interact": { "$ref": "#/definitions/event_base" },
"minecraft:on_step_on": { "$ref": "#/definitions/event_base" },
"minecraft:on_step_off": { "$ref": "#/definitions/event_base" },
"minecraft:on_fall_on": { "$ref": "#/definitions/event_base" },
"minecraft:on_placed": { "$ref": "#/definitions/event_base" },
"minecraft:on_player_placing": { "$ref": "#/definitions/event_base" },
"minecraft:on_player_destroyed": { "$ref": "#/definitions/event_base" },
"minecraft:ticking": { "$ref": "#/definitions/event_base" },
"minecraft:random_ticking": { "$ref": "#/definitions/event_base" }
},
"additionalProperties": { "$ref": "#/definitions/event_base" },
"definitions": {
"event_base": {
"title": "Event",
"description": "UNDOCUMENTATED",
"type": "object",
"additionalProperties": false,
"$ref": "#/definitions/event_functions",
"properties": {
"sequence": {
"title": "Sequence",
"description": "UNDOCUMENTATED",
"type": "array",
"items": { "title": "Sequence", "description": "UNDOCUMENTATED", "type": "object", "$ref": "#/definitions/event_functions" }
},
"randomize": {
"title": "Randomize",
"description": "UNDOCUMENTATED",
"type": "array",
"items": {
"title": "Randomize",
"description": "UNDOCUMENTATED",
"type": "object",
"$ref": "#/definitions/event_functions",
"required": ["weight"],
"properties": { "weight": { "title": "Weight", "description": "UNDOCUMENTATED", "type": "integer", "minimum": 0 } }
}
},
"add_mob_effect": { "$ref": "./events/add_mob_effect.json" },
"damage": { "$ref": "./events/damage.json" },
"decrement_stack": { "$ref": "./events/decrement_stack.json" },
"die": { "$ref": "./events/die.json" },
"play_effect": { "$ref": "./events/play_effect.json" },
"play_sound": { "$ref": "./events/play_sound.json" },
"remove_mob_effect": { "$ref": "./events/remove_mob_effect.json" },
"run_command": { "$ref": "./events/run_command.json" },
"set_block": { "$ref": "./events/set_block.json" },
"set_block_at_pos": { "$ref": "./events/set_block_at_pos.json" },
"set_block_property": { "$ref": "./events/set_block_property.json" },
"spawn_loot": { "$ref": "./events/spawn_loot.json" },
"swing": { "$ref": "./events/swing.json" },
"teleport": { "$ref": "./events/teleport.json" },
"transform_item": { "$ref": "./events/transform_item.json" }
}
},
"event_functions": {
"title": "Event",
"description": "UNDOCUMENTATED",
"type": "object",
"additionalProperties": true,
"properties": {
"add_mob_effect": { "$ref": "./events/add_mob_effect.json" },
"damage": { "$ref": "./events/damage.json" },
"decrement_stack": { "$ref": "./events/decrement_stack.json" },
"die": { "$ref": "./events/die.json" },
"play_effect": { "$ref": "./events/play_effect.json" },
"play_sound": { "$ref": "./events/play_sound.json" },
"remove_mob_effect": { "$ref": "./events/remove_mob_effect.json" },
"run_command": { "$ref": "./events/run_command.json" },
"set_block": { "$ref": "./events/set_block.json" },
"set_block_at_pos": { "$ref": "./events/set_block_at_pos.json" },
"set_block_property": { "$ref": "./events/set_block_property.json" },
"spawn_loot": { "$ref": "./events/spawn_loot.json" },
"swing": { "$ref": "./events/swing.json" },
"teleport": { "$ref": "./events/teleport.json" },
"transform_item": { "$ref": "./events/transform_item.json" }
}
}
}
}

View File

@@ -1,13 +1,13 @@
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.add_mob_effect",
"type": "object",
"description": "Apply mob effect to target.",
"title": "Add Mob Effect",
"additionalProperties": false,
"properties": {
"amplifier": { "type": "integer", "default": 0, "description": "The amplifier for the mob effect.", "title": "Amplifier" },
"duration": { "type": "number", "default": 0, "description": "The duration of the mob effect.", "title": "Duration" },
"effect": { "type": "string", "default": "", "description": "The mob effect to apply.", "title": "Effect" },
"target": { "type": "object", "default": "self", "description": "The target context to execute against.", "title": "Target" }
}
}
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.add_mob_effect",
"type": "object",
"description": "Apply mob effect to target.",
"title": "Add Mob Effect",
"additionalProperties": false,
"properties": {
"amplifier": { "type": "integer", "default": 0, "description": "The amplifier for the mob effect.", "title": "Amplifier" },
"duration": { "type": "number", "default": 0, "description": "The duration of the mob effect.", "title": "Duration" },
"effect": { "type": "string", "default": "", "description": "The mob effect to apply.", "title": "Effect" },
"target": { "type": "object", "default": "self", "description": "The target context to execute against.", "title": "Target" }
}
}

View File

@@ -1,12 +1,12 @@
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.damage",
"type": "object",
"description": "Deals damage to the target.",
"title": "Damage",
"additionalProperties": false,
"properties": {
"amount": { "type": "integer", "default": 0, "description": "The amount of damage to deal.", "title": "Amount" },
"target": { "type": "object", "default": "self", "description": "The target context to execute against.", "title": "Target" },
"type": { "type": "string", "default": "", "description": "The type of damage to deal.", "title": "Type" }
}
}
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.damage",
"type": "object",
"description": "Deals damage to the target.",
"title": "Damage",
"additionalProperties": false,
"properties": {
"amount": { "type": "integer", "default": 0, "description": "The amount of damage to deal.", "title": "Amount" },
"target": { "type": "object", "default": "self", "description": "The target context to execute against.", "title": "Target" },
"type": { "type": "string", "default": "", "description": "The type of damage to deal.", "title": "Type" }
}
}

View File

@@ -1,8 +1,8 @@
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.decrement_stack",
"type": "object",
"description": "Decrement item stack.",
"title": "Decrement Stack",
"additionalProperties": false,
"properties": {}
}
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.decrement_stack",
"type": "object",
"description": "Decrement item stack.",
"title": "Decrement Stack",
"additionalProperties": false,
"properties": {}
}

View File

@@ -1,8 +1,8 @@
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.die",
"type": "object",
"description": "Kill target. If target is self and this is run from a block then destroy the block.",
"title": "Die",
"additionalProperties": false,
"properties": { "target": { "type": "object", "default": "self", "description": "The target context to execute against.", "title": "Target" } }
}
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.die",
"type": "object",
"description": "Kill target. If target is self and this is run from a block then destroy the block.",
"title": "Die",
"additionalProperties": false,
"properties": { "target": { "type": "object", "default": "self", "description": "The target context to execute against.", "title": "Target" } }
}

View File

@@ -1,12 +1,12 @@
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.play_effect",
"type": "object",
"description": "Spawns a particle effect relative to target position.",
"title": "Play Effect",
"additionalProperties": false,
"properties": {
"data": { "type": "integer", "default": 0, "description": "Particle data value.", "title": "Data" },
"effect": { "type": "string", "default": "", "description": "The name of the particle effect to create.", "title": "Effect" },
"target": { "type": "object", "default": "self", "description": "The target context to execute against.", "title": "Target" }
}
}
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.play_effect",
"type": "object",
"description": "Spawns a particle effect relative to target position.",
"title": "Play Effect",
"additionalProperties": false,
"properties": {
"data": { "type": "integer", "default": 0, "description": "Particle data value.", "title": "Data" },
"effect": { "type": "string", "default": "", "description": "The name of the particle effect to create.", "title": "Effect" },
"target": { "type": "object", "default": "self", "description": "The target context to execute against.", "title": "Target" }
}
}

View File

@@ -1,11 +1,11 @@
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.playsound",
"type": "object",
"description": "Play a sound relative to target position.",
"title": "Playsound",
"additionalProperties": false,
"properties": {
"sound": { "type": "string", "default": "", "description": "The name of the sound to play.", "title": "Sound" },
"target": { "type": "object", "default": "self", "description": "The target context to execute against.", "title": "Target" }
}
}
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.playsound",
"type": "object",
"description": "Play a sound relative to target position.",
"title": "Playsound",
"additionalProperties": false,
"properties": {
"sound": { "type": "string", "default": "", "description": "The name of the sound to play.", "title": "Sound" },
"target": { "type": "object", "default": "self", "description": "The target context to execute against.", "title": "Target" }
}
}

View File

@@ -1,16 +1,16 @@
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.remove_mob_effect",
"type": "object",
"description": "Removes mob effect from target.",
"title": "Remove Mob Effect",
"additionalProperties": false,
"properties": {
"effect": {
"type": "string",
"default": "",
"description": "The mob effect to remove. Use 'all' to remove all mob effects from target.",
"title": "Effect"
},
"target": { "type": "string", "default": "self", "description": "The target context to execute against.", "title": "Target" }
}
}
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.remove_mob_effect",
"type": "object",
"description": "Removes mob effect from target.",
"title": "Remove Mob Effect",
"additionalProperties": false,
"properties": {
"effect": {
"type": "string",
"default": "",
"description": "The mob effect to remove. Use 'all' to remove all mob effects from target.",
"title": "Effect"
},
"target": { "type": "string", "default": "self", "description": "The target context to execute against.", "title": "Target" }
}
}

View File

@@ -1,16 +1,16 @@
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.run_command",
"type": "object",
"description": "Triggers a slash command or a list of slash commands.",
"title": "Run Command",
"additionalProperties": false,
"properties": {
"command": {
"default": "",
"description": "Slash command to run.",
"title": "Command",
"oneof": [{ "type": "string" }, { "type": "array", "items": { "type": "string", "title": "Command", "description": "Slash command to run." } }]
},
"target": { "type": "string", "default": "self", "description": "The target context to execute against.", "title": "Target" }
}
}
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.run_command",
"type": "object",
"description": "Triggers a slash command or a list of slash commands.",
"title": "Run Command",
"additionalProperties": false,
"properties": {
"command": {
"default": "",
"description": "Slash command to run.",
"title": "Command",
"oneof": [{ "type": "string" }, { "type": "array", "items": { "type": "string", "title": "Command", "description": "Slash command to run." } }]
},
"target": { "type": "string", "default": "self", "description": "The target context to execute against.", "title": "Target" }
}
}

View File

@@ -1,8 +1,8 @@
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.set_block",
"type": "object",
"description": "Sets this block to another block type.",
"title": "Set Block",
"additionalProperties": false,
"properties": { "block_type": { "type": "string", "default": "", "description": "The type of block to set.", "title": "Block Type" } }
}
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.set_block",
"type": "object",
"description": "Sets this block to another block type.",
"title": "Set Block",
"additionalProperties": false,
"properties": { "block_type": { "type": "string", "default": "", "description": "The type of block to set.", "title": "Block Type" } }
}

View File

@@ -1,21 +1,21 @@
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.set_block_at_pos",
"type": "object",
"description": "Sets a block relative to this block to another block type.",
"title": "Set Block At Pos",
"additionalProperties": false,
"properties": {
"block_offset": {
"type": "array",
"default": [0.0, 0.0, 0.0],
"description": "The offset from the block's center.",
"title": "Block Offset",
"items": [
{ "type": "number", "title": "X", "description": "The x offset from the block's center." },
{ "type": "number", "title": "Y", "description": "The y offset from the block's center." },
{ "type": "number", "title": "Z", "description": "The z offset from the block's center." }
]
},
"block_type": { "type": "string", "default": "", "description": "The type of block to set.", "title": "Block Type" }
}
}
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.set_block_at_pos",
"type": "object",
"description": "Sets a block relative to this block to another block type.",
"title": "Set Block At Pos",
"additionalProperties": false,
"properties": {
"block_offset": {
"type": "array",
"default": [0.0, 0.0, 0.0],
"description": "The offset from the block's center.",
"title": "Block Offset",
"items": [
{ "type": "number", "title": "X", "description": "The x offset from the block's center." },
{ "type": "number", "title": "Y", "description": "The y offset from the block's center." },
{ "type": "number", "title": "Z", "description": "The z offset from the block's center." }
]
},
"block_type": { "type": "string", "default": "", "description": "The type of block to set.", "title": "Block Type" }
}
}

View File

@@ -1,8 +1,8 @@
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.set_block_property",
"type": "object",
"description": "Sets a block property on this block",
"title": "Set Block Property",
"additionalProperties": false,
"properties": { "property": { "type": "string", "description": "Block property to set on the block.", "title": "Property" } }
}
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.set_block_property",
"type": "object",
"description": "Sets a block property on this block",
"title": "Set Block Property",
"additionalProperties": false,
"properties": { "property": { "type": "string", "description": "Block property to set on the block.", "title": "Property" } }
}

View File

@@ -1,11 +1,11 @@
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.spawn_loot",
"type": "object",
"description": "Spawn loot from block.",
"title": "Spawn Loot",
"required": ["table"],
"additionalProperties": false,
"properties": {
"table": { "type": "string", "description": "File path, relative to the Behavior Pack's path, to the loot table file.", "title": "Table" }
}
}
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.spawn_loot",
"type": "object",
"description": "Spawn loot from block.",
"title": "Spawn Loot",
"required": ["table"],
"additionalProperties": false,
"properties": {
"table": { "type": "string", "description": "File path, relative to the Behavior Pack's path, to the loot table file.", "title": "Table" }
}
}

View File

@@ -1,8 +1,8 @@
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.swing",
"type": "object",
"description": "Event causes the actor to swing.",
"title": "Swing",
"additionalProperties": false,
"properties": {}
}
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.swing",
"type": "object",
"description": "Event causes the actor to swing.",
"title": "Swing",
"additionalProperties": false,
"properties": {}
}

View File

@@ -1,42 +1,42 @@
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.teleport",
"type": "object",
"description": "Teleport target randomly around destination point.",
"title": "Teleport",
"additionalProperties": false,
"properties": {
"avoid_water": {
"type": "boolean",
"default": true,
"description": "Determines if the teleport avoids putting the target in water.",
"title": "Avoid Water"
},
"destination": {
"default": [0.0, 0.0, 0.0],
"description": "Origin destination of the teleport.",
"title": "Destination",
"items": [
{ "type": "number", "title": "X", "description": "The x offset from the block's center." },
{ "type": "number", "title": "Y", "description": "The y offset from the block's center." },
{ "type": "number", "title": "Z", "description": "The z offset from the block's center." }
]
},
"land_on_block": {
"type": "boolean",
"default": true,
"description": "Determines if the teleport places the target on a block.",
"title": "Land On Block"
},
"max_range": {
"default": [8.0, 8.0, 8.0],
"description": "Max range the target can teleport relative to the origin destination.",
"title": "Max Range",
"items": [
{ "type": "number", "title": "X", "description": "The x offset from the block's center." },
{ "type": "number", "title": "Y", "description": "The y offset from the block's center." },
{ "type": "number", "title": "Z", "description": "The z offset from the block's center." }
]
},
"target": { "type": "string", "default": "self", "description": "The target context to execute against.", "title": "Target" }
}
}
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.teleport",
"type": "object",
"description": "Teleport target randomly around destination point.",
"title": "Teleport",
"additionalProperties": false,
"properties": {
"avoid_water": {
"type": "boolean",
"default": true,
"description": "Determines if the teleport avoids putting the target in water.",
"title": "Avoid Water"
},
"destination": {
"default": [0.0, 0.0, 0.0],
"description": "Origin destination of the teleport.",
"title": "Destination",
"items": [
{ "type": "number", "title": "X", "description": "The x offset from the block's center." },
{ "type": "number", "title": "Y", "description": "The y offset from the block's center." },
{ "type": "number", "title": "Z", "description": "The z offset from the block's center." }
]
},
"land_on_block": {
"type": "boolean",
"default": true,
"description": "Determines if the teleport places the target on a block.",
"title": "Land On Block"
},
"max_range": {
"default": [8.0, 8.0, 8.0],
"description": "Max range the target can teleport relative to the origin destination.",
"title": "Max Range",
"items": [
{ "type": "number", "title": "X", "description": "The x offset from the block's center." },
{ "type": "number", "title": "Y", "description": "The y offset from the block's center." },
{ "type": "number", "title": "Z", "description": "The z offset from the block's center." }
]
},
"target": { "type": "string", "default": "self", "description": "The target context to execute against.", "title": "Target" }
}
}

View File

@@ -1,8 +1,8 @@
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.transform_item",
"type": "object",
"description": "Transforms item into another item.",
"title": "Transform Item 1.16.100",
"additionalProperties": false,
"properties": { "transform": { "type": "string", "description": "Name of the item it should transform into", "title": "Transform" } }
}
{
"$id": "blockception.minecraft.behavior.1.16.100.block.events.transform_item",
"type": "object",
"description": "Transforms item into another item.",
"title": "Transform Item 1.16.100",
"additionalProperties": false,
"properties": { "transform": { "type": "string", "description": "Name of the item it should transform into", "title": "Transform" } }
}

Some files were not shown because too many files have changed in this diff Show More