This commit is contained in:
DaanV2
2021-05-26 01:23:51 +02:00
parent 7ea35ef9dd
commit a98fbfbaa8
1023 changed files with 95 additions and 1050 deletions

View File

@@ -4,14 +4,22 @@
"object_check": { "object_check": {
"type": "object", "type": "object",
"dependencies": { "dependencies": {
"type": ["title"], "description": ["title"]
"properties": ["type"],
"items": ["type"]
}, },
"additionalProperties": { "additionalProperties": {
"anyOf": [ "anyOf": [
{ "type": "object", "$ref": "#/definitions/object_check" }, {
{ "type": "array", "$ref": "#/definitions/array_check" } "type": "object",
"properties": {
"properties": { "additionalProperties": { "$ref": "#/definitions/object_check" } },
"additionalProperties": { "additionalProperties": { "$ref": "#/definitions/object_check" } }
}
},
{ "type": "array", "$ref": "#/definitions/array_check" },
{ "type": "string" },
{ "type": "boolean" },
{ "type": "number" },
{ "type": "integer" }
] ]
} }
}, },
@@ -19,13 +27,21 @@
"items": { "items": {
"anyOf": [ "anyOf": [
{ "type": "object", "$ref": "#/definitions/object_check" }, { "type": "object", "$ref": "#/definitions/object_check" },
{ "type": "array", "$ref": "#/definitions/array_check" } { "type": "array", "$ref": "#/definitions/array_check" },
{ "type": "string" },
{ "type": "boolean" },
{ "type": "number" },
{ "type": "integer" }
] ]
} }
} }
}, },
"anyOf": [ "anyOf": [
{ "type": "object", "$ref": "#/definitions/object_check" }, { "type": "object", "$ref": "#/definitions/object_check" },
{ "type": "array", "$ref": "#/definitions/array_check" } { "type": "array", "$ref": "#/definitions/array_check" },
{ "type": "string" },
{ "type": "boolean" },
{ "type": "number" },
{ "type": "integer" }
] ]
} }

View File

@@ -1,5 +1,8 @@
{ {
"json.schemas": [{ "fileMatch": ["source/**/*.json", "source/*.json"], "url": "./.vscode/schema-validation.json" }], "json.schemas": [
{ "fileMatch": ["source/**/*.json", "source/*.json"], "url": "./.vscode/schema-validation.json" },
{ "fileMatch": ["source/**/*.json", "source/*.json"], "url": "http://json-schema.org/draft-07/schema" }
],
"editor.formatOnSave": true, "editor.formatOnSave": true,
"[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[jsonc]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[jsonc]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.animation_controller.1.10.0", "$id": "blockception.minecraft.behavior.animation_controller.1.10.0",
"type": "object", "type": "object",
"definitions": { "definitions": {
@@ -52,6 +51,7 @@
}, },
"commands": { "commands": {
"type": "string", "type": "string",
"title": "Commands",
"description": "The event or commands to execute", "description": "The event or commands to execute",
"examples": ["@s example:event"], "examples": ["@s example:event"],
"oneOf": [ "oneOf": [

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.animation_controller.1.8.0", "$id": "blockception.minecraft.behavior.animation_controller.1.8.0",
"definitions": { "definitions": {
"animationspec": { "animationspec": {
@@ -52,6 +51,7 @@
"commands": { "commands": {
"type": "string", "type": "string",
"description": "The event or commands to execute", "description": "The event or commands to execute",
"title": "Commands",
"oneOf": [ "oneOf": [
{ "pattern": "^@s .+$", "title": "Event" }, { "pattern": "^@s .+$", "title": "Event" },
{ "pattern": "^/.+$", "title": "Command" }, { "pattern": "^/.+$", "title": "Command" },
@@ -111,6 +111,7 @@
"on_entry": { "on_entry": {
"type": "array", "type": "array",
"description": "Events, commands or transitions to preform", "description": "Events, commands or transitions to preform",
"title": "On entry",
"items": { "items": {
"$ref": "#/definitions/commands" "$ref": "#/definitions/commands"
} }
@@ -118,6 +119,7 @@
"on_exit": { "on_exit": {
"type": "array", "type": "array",
"description": "Events, commands or transitions to preform", "description": "Events, commands or transitions to preform",
"title": "On exit",
"items": { "items": {
"$ref": "#/definitions/commands" "$ref": "#/definitions/commands"
} }

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.animation_controller", "$id": "blockception.minecraft.behavior.animation_controller",
"examples": [ "examples": [
{ {
@@ -13,7 +12,10 @@
} }
], ],
"allOf": [ "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.8.0" } } },
"then": { "$ref": "./1.8.0/animation_controller.json" }
},
{ {
"if": { "properties": { "format_version": { "type": "string", "const": "1.10.0" } } }, "if": { "properties": { "format_version": { "type": "string", "const": "1.10.0" } } },
"then": { "$ref": "./1.10.0/animation_controller.json" } "then": { "$ref": "./1.10.0/animation_controller.json" }

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.10.0.animations", "$id": "blockception.minecraft.behavior.1.10.0.animations",
"definitions": { "definitions": {
"animationspec": { "animationspec": {
@@ -21,18 +20,24 @@
"required": ["effect"], "required": ["effect"],
"properties": { "properties": {
"bind_to_actor": { "bind_to_actor": {
"title": "Bind to actor",
"type": "boolean", "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).", "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 "const": false
}, },
"effect": { "type": "string", "description": "The name of a particle effect that should be played" }, "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" }, "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" } "pre_effect_script": {
"type": "string",
"description": "A molang script that will be run when the particle emitter is initialized",
"title": "Pre effect script"
}
} }
}, },
"commands": { "commands": {
"type": "string", "type": "string",
"description": "The event or commands to execute", "description": "The event or commands to execute",
"title": "Commands",
"anyOf": [ "anyOf": [
{ "pattern": "^.*=.*;$", "title": "Variable" }, { "pattern": "^.*=.*;$", "title": "Variable" },
{ "pattern": "^/[a-z].*$", "title": "Minecraft Command" }, { "pattern": "^/[a-z].*$", "title": "Minecraft Command" },

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.8.0.animations", "$id": "blockception.minecraft.behavior.1.8.0.animations",
"definitions": { "definitions": {
"animationspec": { "animationspec": {
@@ -21,18 +20,24 @@
"required": ["effect"], "required": ["effect"],
"properties": { "properties": {
"bind_to_actor": { "bind_to_actor": {
"title": "Bind to actor",
"type": "boolean", "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).", "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 "const": false
}, },
"effect": { "type": "string", "description": "The name of a particle effect that should be played" }, "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" }, "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" } "pre_effect_script": {
"type": "string",
"description": "A molang script that will be run when the particle emitter is initialized",
"title": "Pre effect script"
}
} }
}, },
"commands": { "commands": {
"type": "string", "type": "string",
"description": "The event or commands to execute", "description": "The event or commands to execute",
"title": "Commands",
"anyOf": [ "anyOf": [
{ "pattern": "^.*=.*;$", "title": "Variable" }, { "pattern": "^.*=.*;$", "title": "Variable" },
{ "pattern": "^/[a-z].*$", "title": "Minecraft Command" }, { "pattern": "^/[a-z].*$", "title": "Minecraft Command" },

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.animations", "$id": "blockception.minecraft.behavior.animations",
"examples": [{ "format_version": "1.10.0", "animations": { "animation.example": {} } }], "examples": [{ "format_version": "1.10.0", "animations": { "animation.example": {} } }],
"allOf": [ "allOf": [

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0", "$id": "minecraft.behavior.biomes.1.12.0",
"type": "object", "type": "object",
"title": "Biomes", "title": "Biomes",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.capped_surface", "$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.capped_surface",
"title": "Capped Surface", "title": "Capped Surface",
"description": "Generates surface on blocks with non-solid blocks above or below.", "description": "Generates surface on blocks with non-solid blocks above or below.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.climate", "$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.climate",
"title": "Climate", "title": "Climate",
"description": "Describes temperature, humidity, precipitation, etc. Biomes without this component will have default values.", "description": "Describes temperature, humidity, precipitation, etc. Biomes without this component will have default values.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.forced_features", "$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.forced_features",
"title": "Forced Features", "title": "Forced Features",
"description": "Force specific decorative features (trees, plants, etc.) to appear in this Biome, regardless of normal decoration rules.", "description": "Force specific decorative features (trees, plants, etc.) to appear in this Biome, regardless of normal decoration rules.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.frozen_ocean_surface", "$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.frozen_ocean_surface",
"title": "Frozen Ocean Surface", "title": "Frozen Ocean Surface",
"description": "Similar to overworld_surface. Adds icebergs.", "description": "Similar to overworld_surface. Adds icebergs.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.ignore_automatic_features", "$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.ignore_automatic_features",
"title": "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.", "description": "No features will be automatically attached to this Biome, only features specified in the minecraft:forced_features component will appear.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.legacy_world_generation_rules", "$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.legacy_world_generation_rules",
"title": "Legacy World Generation Rules", "title": "Legacy World Generation Rules",
"description": "Additional world generation control applicable only to legacy limited worlds.", "description": "Additional world generation control applicable only to legacy limited worlds.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.mesa_surface", "$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.mesa_surface",
"title": "Mesa Surface", "title": "Mesa Surface",
"description": "Similar to overworld_surface. Adds colored strata and optional pillars.", "description": "Similar to overworld_surface. Adds colored strata and optional pillars.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.nether_generation_rules", "$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.nether_generation_rules",
"title": "Nether Generation Rules", "title": "Nether Generation Rules",
"description": "Controls how this biome is instantiated (and then potentially modified) during world generation of the nether.", "description": "Controls how this biome is instantiated (and then potentially modified) during world generation of the nether.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.nether_surface", "$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.nether_surface",
"title": "Nether Surface", "title": "Nether Surface",
"description": "Use default Minecraft Nether terrain generation.", "description": "Use default Minecraft Nether terrain generation.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.overworld_generation_rules", "$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.overworld_generation_rules",
"title": "Overworld Generation Rules", "title": "Overworld Generation Rules",
"description": "Control how this biome is instantiated (and then potentially modified) during world generation of the overworld.", "description": "Control how this biome is instantiated (and then potentially modified) during world generation of the overworld.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.overworld_height", "$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.overworld_height",
"title": "Overworld Height", "title": "Overworld Height",
"description": "Noise parameters used to drive terrain height in the Overworld.", "description": "Noise parameters used to drive terrain height in the Overworld.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.surface_material_adjustments", "$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.surface_material_adjustments",
"title": "Surface Material Adjustments", "title": "Surface Material Adjustments",
"description": "Specify fine-detail changes to blocks used in terrain generation (based on a noise function)", "description": "Specify fine-detail changes to blocks used in terrain generation (based on a noise function)",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.surface_parameters", "$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.surface_parameters",
"title": "Surface Parameters", "title": "Surface Parameters",
"description": "Control the blocks used for the default Minecraft Overworld terrain generation.", "description": "Control the blocks used for the default Minecraft Overworld terrain generation.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.swamp_surface", "$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.swamp_surface",
"title": "Swamp Surface", "title": "Swamp Surface",
"description": "Similar to overworld_surface. Adds swamp surface details.", "description": "Similar to overworld_surface. Adds swamp surface details.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.the_end_surface", "$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.the_end_surface",
"title": "End Surface", "title": "End Surface",
"description": "Use default Minecraft End terrain generation.", "description": "Use default Minecraft End terrain generation.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes", "$id": "minecraft.behavior.biomes",
"type": "object", "type": "object",
"examples": [{ "plains": { "format_version": "1.12.0" } }], "examples": [{ "plains": { "format_version": "1.12.0" } }],

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.10.0.blocks", "$id": "blockception.minecraft.behavior.1.10.0.blocks",
"description": "Minecraft blocks 1.10.0", "description": "Minecraft blocks 1.10.0",
"required": ["format_version", "minecraft:block"], "required": ["format_version", "minecraft:block"],

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.10.0.blocks.components", "$id": "blockception.minecraft.behavior.1.10.0.blocks.components",
"title": "Components", "title": "Components",
"description": "The components of that define this block", "description": "The components of that define this block",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.block_light_absorption", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.block_light_absorption",
"additionalProperties": false, "additionalProperties": false,
"type": "integer", "type": "integer",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.block_light_emission", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.block_light_emission",
"additionalProperties": false, "additionalProperties": false,
"type": "number", "type": "number",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.breakonpush", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.breakonpush",
"additionalProperties": false, "additionalProperties": false,
"type": "boolean", "type": "boolean",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.breathability", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.breathability",
"additionalProperties": false, "additionalProperties": false,
"type": "string", "type": "string",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.destroy_time", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.destroy_time",
"additionalProperties": false, "additionalProperties": false,
"type": "number", "type": "number",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.display_name", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.display_name",
"additionalProperties": false, "additionalProperties": false,
"type": "string", "type": "string",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.entity_collision", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.entity_collision",
"additionalProperties": false, "additionalProperties": false,
"title": "Entity Collision 1.10.0", "title": "Entity Collision 1.10.0",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.explosion_resistance", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.explosion_resistance",
"additionalProperties": false, "additionalProperties": false,
"type": "number", "type": "number",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.flammable", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.flammable",
"additionalProperties": false, "additionalProperties": false,
"type": "object", "type": "object",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.friction", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.friction",
"additionalProperties": false, "additionalProperties": false,
"type": "number", "type": "number",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.geometry", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.geometry",
"additionalProperties": false, "additionalProperties": false,
"type": "string", "type": "string",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.immovable", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.immovable",
"additionalProperties": false, "additionalProperties": false,
"type": "boolean", "type": "boolean",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.loot", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.loot",
"additionalProperties": false, "additionalProperties": false,
"type": "string", "type": "string",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.map_color", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.map_color",
"additionalProperties": false, "additionalProperties": false,
"type": "string", "type": "string",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.material_instances", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.material_instances",
"type": "object", "type": "object",
"title": "Material Instances 1.10.0", "title": "Material Instances 1.10.0",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.onlypistonpush", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.onlypistonpush",
"type": "boolean", "type": "boolean",
"title": "Only Piston Push 1.10.0", "title": "Only Piston Push 1.10.0",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.pick_collision", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.pick_collision",
"title": "Pick Collision 1.10.0", "title": "Pick Collision 1.10.0",
"description": "Can only be set to false, it disables the collision of the block with entities", "description": "Can only be set to false, it disables the collision of the block with entities",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.placement_filter", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.placement_filter",
"title": "Placement Filter 1.10.0", "title": "Placement Filter 1.10.0",
"description": "Sets rules for under what conditions the block can be placed/survive", "description": "Sets rules for under what conditions the block can be placed/survive",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.preventsjumping", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.preventsjumping",
"title": "Prevents Jumping 1.10.0", "title": "Prevents Jumping 1.10.0",
"description": "This component makes it so actors can't jump when walking on this block", "description": "This component makes it so actors can't jump when walking on this block",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.random_ticking", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.random_ticking",
"title": "Random Ticking 1.10.0", "title": "Random Ticking 1.10.0",
"description": "Describes the component that will trigger an even at a regular interval between two values", "description": "Describes the component that will trigger an even at a regular interval between two values",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.rotation", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.rotation",
"title": "Rotation 1.10.0", "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.", "description": "This is the block's rotation around the center of the cube in degrees. The rotation order is x-y-z.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.ticking", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.ticking",
"title": "Ticking 1.10.0", "title": "Ticking 1.10.0",
"description": "Describes the component that will trigger an even at a regular interval between two values", "description": "Describes the component that will trigger an even at a regular interval between two values",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.unit_cube", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.unit_cube",
"title": "Unit Cube 1.10.0", "title": "Unit Cube 1.10.0",
"description": "Specifies that a unit cube is to be used with tessellation.", "description": "Specifies that a unit cube is to be used with tessellation.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.unwalkable", "$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.unwalkable",
"title": "Unwalkable 1.10.0", "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", "description": "this component sets a block as unwalkable. Most mobs will not try to jump over it if the value is set to true",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.12.0.blocks", "$id": "blockception.minecraft.behavior.1.12.0.blocks",
"description": "Minecraft blocks 1.12.0", "description": "Minecraft blocks 1.12.0",
"required": ["format_version", "minecraft:block"], "required": ["format_version", "minecraft:block"],

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.16.0.blocks", "$id": "blockception.minecraft.behavior.1.16.0.blocks",
"description": "Minecraft blocks 1.16.0", "description": "Minecraft blocks 1.16.0",
"required": ["format_version", "minecraft:block"], "required": ["format_version", "minecraft:block"],

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.16.100.blocks", "$id": "blockception.minecraft.behavior.1.16.100.blocks",
"description": "Minecraft blocks 1.16.100", "description": "Minecraft blocks 1.16.100",
"required": ["format_version", "minecraft:block"], "required": ["format_version", "minecraft:block"],

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.block_light_absorption", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.block_light_absorption",
"additionalProperties": false, "additionalProperties": false,
"type": "integer", "type": "integer",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.block_light_emission", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.block_light_emission",
"additionalProperties": false, "additionalProperties": false,
"type": "number", "type": "number",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.breakonpush", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.breakonpush",
"additionalProperties": false, "additionalProperties": false,
"type": "boolean", "type": "boolean",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.breathability", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.breathability",
"additionalProperties": false, "additionalProperties": false,
"type": "string", "type": "string",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.destroy_time", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.destroy_time",
"additionalProperties": false, "additionalProperties": false,
"type": "number", "type": "number",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.display_name", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.display_name",
"additionalProperties": false, "additionalProperties": false,
"type": "string", "type": "string",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.entity_collision", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.entity_collision",
"additionalProperties": false, "additionalProperties": false,
"title": "Entity Collision 1.16.100", "title": "Entity Collision 1.16.100",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.explosion_resistance", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.explosion_resistance",
"additionalProperties": false, "additionalProperties": false,
"type": "number", "type": "number",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.flammable", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.flammable",
"additionalProperties": false, "additionalProperties": false,
"type": "object", "type": "object",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.friction", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.friction",
"additionalProperties": false, "additionalProperties": false,
"type": "number", "type": "number",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.geometry", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.geometry",
"additionalProperties": false, "additionalProperties": false,
"type": "string", "type": "string",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.immovable", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.immovable",
"additionalProperties": false, "additionalProperties": false,
"type": "boolean", "type": "boolean",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.loot", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.loot",
"additionalProperties": false, "additionalProperties": false,
"type": "string", "type": "string",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.map_color", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.map_color",
"additionalProperties": false, "additionalProperties": false,
"type": "string", "type": "string",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.material_instances", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.material_instances",
"type": "object", "type": "object",
"title": "Material Instances 1.16.100", "title": "Material Instances 1.16.100",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_fall_on", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_fall_on",
"type": "object", "type": "object",
"title": "On Fall On", "title": "On Fall On",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_interact", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_interact",
"type": "object", "type": "object",
"title": "On Fall On", "title": "On Fall On",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_placed", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_placed",
"type": "object", "type": "object",
"title": "On Placed 1.16.100", "title": "On Placed 1.16.100",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_player_destroyed", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_player_destroyed",
"type": "object", "type": "object",
"title": "On Player Destroyed 1.16.100", "title": "On Player Destroyed 1.16.100",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_player_placing", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_player_placing",
"type": "object", "type": "object",
"title": "On Player Placing 1.16.100", "title": "On Player Placing 1.16.100",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_step_off", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_step_off",
"type": "object", "type": "object",
"title": "On Step Off 1.16.100", "title": "On Step Off 1.16.100",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_step_on", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_step_on",
"type": "object", "type": "object",
"title": "On Step On 1.16.100", "title": "On Step On 1.16.100",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.onlypistonpush", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.onlypistonpush",
"type": "boolean", "type": "boolean",
"title": "Only Piston Push 1.16.100", "title": "Only Piston Push 1.16.100",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.pick_collision", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.pick_collision",
"title": "Pick Collision 1.16.100", "title": "Pick Collision 1.16.100",
"description": "Can only be set to false, it disables the collision of the block with entities", "description": "Can only be set to false, it disables the collision of the block with entities",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.placement_filter", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.placement_filter",
"title": "Placement Filter 1.16.100", "title": "Placement Filter 1.16.100",
"description": "Sets rules for under what conditions the block can be placed/survive", "description": "Sets rules for under what conditions the block can be placed/survive",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.preventsjumping", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.preventsjumping",
"title": "Prevents Jumping 1.16.100", "title": "Prevents Jumping 1.16.100",
"description": "This component makes it so actors can't jump when walking on this block", "description": "This component makes it so actors can't jump when walking on this block",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.random_ticking", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.random_ticking",
"title": "Random Ticking 1.16.100", "title": "Random Ticking 1.16.100",
"description": "Describes the component that will trigger an even at a regular interval between two values", "description": "Describes the component that will trigger an even at a regular interval between two values",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.rotation", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.rotation",
"title": "Rotation 1.16.100", "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.", "description": "This is the block's rotation around the center of the cube in degrees. The rotation order is x-y-z.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.ticking", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.ticking",
"title": "Ticking 1.16.100", "title": "Ticking 1.16.100",
"description": "Describes the component that will trigger an even at a regular interval between two values", "description": "Describes the component that will trigger an even at a regular interval between two values",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.unit_cube", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.unit_cube",
"title": "Unit Cube 1.16.100", "title": "Unit Cube 1.16.100",
"description": "Specifies that a unit cube is to be used with tessellation.", "description": "Specifies that a unit cube is to be used with tessellation.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.unwalkable", "$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.unwalkable",
"title": "Unwalkable 1.16.100", "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", "description": "this component sets a block as unwalkable. Most mobs will not try to jump over it if the value is set to true",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.16.100.block.events", "$id": "blockception.minecraft.behavior.1.16.100.block.events",
"title": "Events", "title": "Events",
"description": "UNDOCUMENTATED", "description": "UNDOCUMENTATED",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.16.100.block.events.add_mob_effect", "$id": "blockception.minecraft.behavior.1.16.100.block.events.add_mob_effect",
"type": "object", "type": "object",
"description": "Apply mob effect to target.", "description": "Apply mob effect to target.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.16.100.block.events.damage", "$id": "blockception.minecraft.behavior.1.16.100.block.events.damage",
"type": "object", "type": "object",
"description": "Deals damage to the target.", "description": "Deals damage to the target.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.16.100.block.events.decrement_stack", "$id": "blockception.minecraft.behavior.1.16.100.block.events.decrement_stack",
"type": "object", "type": "object",
"description": "Decrement item stack.", "description": "Decrement item stack.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.16.100.block.events.die", "$id": "blockception.minecraft.behavior.1.16.100.block.events.die",
"type": "object", "type": "object",
"description": "Kill target. If target is self and this is run from a block then destroy the block.", "description": "Kill target. If target is self and this is run from a block then destroy the block.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.16.100.block.events.play_effect", "$id": "blockception.minecraft.behavior.1.16.100.block.events.play_effect",
"type": "object", "type": "object",
"description": "Spawns a particle effect relative to target position.", "description": "Spawns a particle effect relative to target position.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.16.100.block.events.playsound", "$id": "blockception.minecraft.behavior.1.16.100.block.events.playsound",
"type": "object", "type": "object",
"description": "Play a sound relative to target position.", "description": "Play a sound relative to target position.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.16.100.block.events.remove_mob_effect", "$id": "blockception.minecraft.behavior.1.16.100.block.events.remove_mob_effect",
"type": "object", "type": "object",
"description": "Removes mob effect from target.", "description": "Removes mob effect from target.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.16.100.block.events.run_command", "$id": "blockception.minecraft.behavior.1.16.100.block.events.run_command",
"type": "object", "type": "object",
"description": "Triggers a slash command or a list of slash commands.", "description": "Triggers a slash command or a list of slash commands.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.16.100.block.events.set_block", "$id": "blockception.minecraft.behavior.1.16.100.block.events.set_block",
"type": "object", "type": "object",
"description": "Sets this block to another block type.", "description": "Sets this block to another block type.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.16.100.block.events.set_block_at_pos", "$id": "blockception.minecraft.behavior.1.16.100.block.events.set_block_at_pos",
"type": "object", "type": "object",
"description": "Sets a block relative to this block to another block type.", "description": "Sets a block relative to this block to another block type.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.16.100.block.events.set_block_property", "$id": "blockception.minecraft.behavior.1.16.100.block.events.set_block_property",
"type": "object", "type": "object",
"description": "Sets a block property on this block", "description": "Sets a block property on this block",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.16.100.block.events.spawn_loot", "$id": "blockception.minecraft.behavior.1.16.100.block.events.spawn_loot",
"type": "object", "type": "object",
"description": "Spawn loot from block.", "description": "Spawn loot from block.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.16.100.block.events.swing", "$id": "blockception.minecraft.behavior.1.16.100.block.events.swing",
"type": "object", "type": "object",
"description": "Event causes the actor to swing.", "description": "Event causes the actor to swing.",

View File

@@ -1,5 +1,4 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.1.16.100.block.events.teleport", "$id": "blockception.minecraft.behavior.1.16.100.block.events.teleport",
"type": "object", "type": "object",
"description": "Teleport target randomly around destination point.", "description": "Teleport target randomly around destination point.",

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