Updated
This commit is contained in:
30
.vscode/schema-validation.json
vendored
30
.vscode/schema-validation.json
vendored
@@ -4,14 +4,22 @@
|
||||
"object_check": {
|
||||
"type": "object",
|
||||
"dependencies": {
|
||||
"type": ["title"],
|
||||
"properties": ["type"],
|
||||
"items": ["type"]
|
||||
"description": ["title"]
|
||||
},
|
||||
"additionalProperties": {
|
||||
"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": {
|
||||
"anyOf": [
|
||||
{ "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": [
|
||||
{ "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" }
|
||||
]
|
||||
}
|
||||
|
||||
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
@@ -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,
|
||||
"[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
|
||||
"[jsonc]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.animation_controller.1.10.0",
|
||||
"type": "object",
|
||||
"definitions": {
|
||||
@@ -52,6 +51,7 @@
|
||||
},
|
||||
"commands": {
|
||||
"type": "string",
|
||||
"title": "Commands",
|
||||
"description": "The event or commands to execute",
|
||||
"examples": ["@s example:event"],
|
||||
"oneOf": [
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.animation_controller.1.8.0",
|
||||
"definitions": {
|
||||
"animationspec": {
|
||||
@@ -52,6 +51,7 @@
|
||||
"commands": {
|
||||
"type": "string",
|
||||
"description": "The event or commands to execute",
|
||||
"title": "Commands",
|
||||
"oneOf": [
|
||||
{ "pattern": "^@s .+$", "title": "Event" },
|
||||
{ "pattern": "^/.+$", "title": "Command" },
|
||||
@@ -111,6 +111,7 @@
|
||||
"on_entry": {
|
||||
"type": "array",
|
||||
"description": "Events, commands or transitions to preform",
|
||||
"title": "On entry",
|
||||
"items": {
|
||||
"$ref": "#/definitions/commands"
|
||||
}
|
||||
@@ -118,6 +119,7 @@
|
||||
"on_exit": {
|
||||
"type": "array",
|
||||
"description": "Events, commands or transitions to preform",
|
||||
"title": "On exit",
|
||||
"items": {
|
||||
"$ref": "#/definitions/commands"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.animation_controller",
|
||||
"examples": [
|
||||
{
|
||||
@@ -13,7 +12,10 @@
|
||||
}
|
||||
],
|
||||
"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" } } },
|
||||
"then": { "$ref": "./1.10.0/animation_controller.json" }
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.10.0.animations",
|
||||
"definitions": {
|
||||
"animationspec": {
|
||||
@@ -21,18 +20,24 @@
|
||||
"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" },
|
||||
"locator": { "type": "string", "description": "The name of a locator on the actor where the effect should be located" },
|
||||
"pre_effect_script": { "type": "string", "description": "A molang script that will be run when the particle emitter is initialized" }
|
||||
"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" },
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.8.0.animations",
|
||||
"definitions": {
|
||||
"animationspec": {
|
||||
@@ -21,18 +20,24 @@
|
||||
"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" },
|
||||
"locator": { "type": "string", "description": "The name of a locator on the actor where the effect should be located" },
|
||||
"pre_effect_script": { "type": "string", "description": "A molang script that will be run when the particle emitter is initialized" }
|
||||
"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" },
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.animations",
|
||||
"examples": [{ "format_version": "1.10.0", "animations": { "animation.example": {} } }],
|
||||
"allOf": [
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "minecraft.behavior.biomes.1.12.0",
|
||||
"type": "object",
|
||||
"title": "Biomes",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.frozen_ocean_surface",
|
||||
"title": "Frozen Ocean Surface",
|
||||
"description": "Similar to overworld_surface. Adds icebergs.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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.",
|
||||
|
||||
@@ -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",
|
||||
"title": "Legacy World Generation Rules",
|
||||
"description": "Additional world generation control applicable only to legacy limited worlds.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.nether_surface",
|
||||
"title": "Nether Surface",
|
||||
"description": "Use default Minecraft Nether terrain generation.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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)",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.swamp_surface",
|
||||
"title": "Swamp Surface",
|
||||
"description": "Similar to overworld_surface. Adds swamp surface details.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.the_end_surface",
|
||||
"title": "End Surface",
|
||||
"description": "Use default Minecraft End terrain generation.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "minecraft.behavior.biomes",
|
||||
"type": "object",
|
||||
"examples": [{ "plains": { "format_version": "1.12.0" } }],
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.10.0.blocks",
|
||||
"description": "Minecraft blocks 1.10.0",
|
||||
"required": ["format_version", "minecraft:block"],
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.10.0.blocks.components",
|
||||
"title": "Components",
|
||||
"description": "The components of that define this block",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.block_light_absorption",
|
||||
"additionalProperties": false,
|
||||
"type": "integer",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.block_light_emission",
|
||||
"additionalProperties": false,
|
||||
"type": "number",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.breakonpush",
|
||||
"additionalProperties": false,
|
||||
"type": "boolean",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.breathability",
|
||||
"additionalProperties": false,
|
||||
"type": "string",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.destroy_time",
|
||||
"additionalProperties": false,
|
||||
"type": "number",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.display_name",
|
||||
"additionalProperties": false,
|
||||
"type": "string",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.entity_collision",
|
||||
"additionalProperties": false,
|
||||
"title": "Entity Collision 1.10.0",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.explosion_resistance",
|
||||
"additionalProperties": false,
|
||||
"type": "number",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.flammable",
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.friction",
|
||||
"additionalProperties": false,
|
||||
"type": "number",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.geometry",
|
||||
"additionalProperties": false,
|
||||
"type": "string",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.immovable",
|
||||
"additionalProperties": false,
|
||||
"type": "boolean",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.loot",
|
||||
"additionalProperties": false,
|
||||
"type": "string",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.map_color",
|
||||
"additionalProperties": false,
|
||||
"type": "string",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.material_instances",
|
||||
"type": "object",
|
||||
"title": "Material Instances 1.10.0",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.10.0.minecraft.onlypistonpush",
|
||||
"type": "boolean",
|
||||
"title": "Only Piston Push 1.10.0",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.12.0.blocks",
|
||||
"description": "Minecraft blocks 1.12.0",
|
||||
"required": ["format_version", "minecraft:block"],
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.0.blocks",
|
||||
"description": "Minecraft blocks 1.16.0",
|
||||
"required": ["format_version", "minecraft:block"],
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.blocks",
|
||||
"description": "Minecraft blocks 1.16.100",
|
||||
"required": ["format_version", "minecraft:block"],
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.block_light_absorption",
|
||||
"additionalProperties": false,
|
||||
"type": "integer",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.block_light_emission",
|
||||
"additionalProperties": false,
|
||||
"type": "number",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.breakonpush",
|
||||
"additionalProperties": false,
|
||||
"type": "boolean",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.breathability",
|
||||
"additionalProperties": false,
|
||||
"type": "string",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.destroy_time",
|
||||
"additionalProperties": false,
|
||||
"type": "number",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.display_name",
|
||||
"additionalProperties": false,
|
||||
"type": "string",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.entity_collision",
|
||||
"additionalProperties": false,
|
||||
"title": "Entity Collision 1.16.100",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.explosion_resistance",
|
||||
"additionalProperties": false,
|
||||
"type": "number",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.flammable",
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.friction",
|
||||
"additionalProperties": false,
|
||||
"type": "number",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.geometry",
|
||||
"additionalProperties": false,
|
||||
"type": "string",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.immovable",
|
||||
"additionalProperties": false,
|
||||
"type": "boolean",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.loot",
|
||||
"additionalProperties": false,
|
||||
"type": "string",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.map_color",
|
||||
"additionalProperties": false,
|
||||
"type": "string",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.material_instances",
|
||||
"type": "object",
|
||||
"title": "Material Instances 1.16.100",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_fall_on",
|
||||
"type": "object",
|
||||
"title": "On Fall On",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_interact",
|
||||
"type": "object",
|
||||
"title": "On Fall On",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_placed",
|
||||
"type": "object",
|
||||
"title": "On Placed 1.16.100",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_player_destroyed",
|
||||
"type": "object",
|
||||
"title": "On Player Destroyed 1.16.100",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_player_placing",
|
||||
"type": "object",
|
||||
"title": "On Player Placing 1.16.100",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_step_off",
|
||||
"type": "object",
|
||||
"title": "On Step Off 1.16.100",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.on_step_on",
|
||||
"type": "object",
|
||||
"title": "On Step On 1.16.100",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.blocks.1.16.100.minecraft.onlypistonpush",
|
||||
"type": "boolean",
|
||||
"title": "Only Piston Push 1.16.100",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.block.events",
|
||||
"title": "Events",
|
||||
"description": "UNDOCUMENTATED",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.block.events.add_mob_effect",
|
||||
"type": "object",
|
||||
"description": "Apply mob effect to target.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.block.events.damage",
|
||||
"type": "object",
|
||||
"description": "Deals damage to the target.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.block.events.decrement_stack",
|
||||
"type": "object",
|
||||
"description": "Decrement item stack.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.block.events.play_effect",
|
||||
"type": "object",
|
||||
"description": "Spawns a particle effect relative to target position.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.block.events.playsound",
|
||||
"type": "object",
|
||||
"description": "Play a sound relative to target position.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.block.events.remove_mob_effect",
|
||||
"type": "object",
|
||||
"description": "Removes mob effect from target.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.block.events.run_command",
|
||||
"type": "object",
|
||||
"description": "Triggers a slash command or a list of slash commands.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.block.events.set_block",
|
||||
"type": "object",
|
||||
"description": "Sets this block to another block type.",
|
||||
|
||||
@@ -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",
|
||||
"type": "object",
|
||||
"description": "Sets a block relative to this block to another block type.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.block.events.set_block_property",
|
||||
"type": "object",
|
||||
"description": "Sets a block property on this block",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.block.events.spawn_loot",
|
||||
"type": "object",
|
||||
"description": "Spawn loot from block.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.block.events.swing",
|
||||
"type": "object",
|
||||
"description": "Event causes the actor to swing.",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.block.events.teleport",
|
||||
"type": "object",
|
||||
"description": "Teleport target randomly around destination point.",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user