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

@@ -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": [

View File

@@ -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"
}

View File

@@ -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" }

View File

@@ -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" },

View File

@@ -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" },

View File

@@ -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": [

View File

@@ -1,5 +1,4 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0",
"type": "object",
"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",
"title": "Capped Surface",
"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",
"title": "Climate",
"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",
"title": "Forced Features",
"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",
"title": "Frozen Ocean Surface",
"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",
"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.",

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",
"title": "Legacy World Generation Rules",
"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",
"title": "Mesa Surface",
"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",
"title": "Nether Generation Rules",
"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",
"title": "Nether Surface",
"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",
"title": "Overworld Generation Rules",
"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",
"title": "Overworld Height",
"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",
"title": "Surface Material Adjustments",
"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",
"title": "Surface Parameters",
"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",
"title": "Swamp Surface",
"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",
"title": "End Surface",
"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",
"type": "object",
"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",
"description": "Minecraft blocks 1.10.0",
"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",
"title": "Components",
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"type": "object",
"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",
"type": "boolean",
"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",
"title": "Pick Collision 1.10.0",
"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",
"title": "Placement Filter 1.10.0",
"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",
"title": "Prevents Jumping 1.10.0",
"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",
"title": "Random Ticking 1.10.0",
"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",
"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.",

View File

@@ -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",

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",
"title": "Unit Cube 1.10.0",
"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",
"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",

View File

@@ -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"],

View File

@@ -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"],

View File

@@ -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"],

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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"additionalProperties": false,
"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",
"type": "object",
"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",
"type": "object",
"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",
"type": "object",
"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",
"type": "object",
"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",
"type": "object",
"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",
"type": "object",
"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",
"type": "object",
"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",
"type": "object",
"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",
"type": "boolean",
"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",
"title": "Pick Collision 1.16.100",
"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",
"title": "Placement Filter 1.16.100",
"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",
"title": "Prevents Jumping 1.16.100",
"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",
"title": "Random Ticking 1.16.100",
"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",
"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.",

View File

@@ -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",

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",
"title": "Unit Cube 1.16.100",
"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",
"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",

View File

@@ -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",

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",
"type": "object",
"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",
"type": "object",
"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",
"type": "object",
"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",
"type": "object",
"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",
"type": "object",
"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",
"type": "object",
"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",
"type": "object",
"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",
"type": "object",
"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",
"type": "object",
"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",
"type": "object",
"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",
"type": "object",
"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",
"type": "object",
"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",
"type": "object",
"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",
"type": "object",
"description": "Teleport target randomly around destination point.",

View File

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

View File

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

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