diff --git a/behaviour/blocks/1.16.200/blocks.json b/behaviour/blocks/1.16.200/blocks.json index d18cc305..20f98bf9 100644 --- a/behaviour/blocks/1.16.200/blocks.json +++ b/behaviour/blocks/1.16.200/blocks.json @@ -44,6 +44,19 @@ "default": false, "description": "Whether or not to register this block to the creative inventory menu.", "title": "Register to creative menu" + }, + "properties": { + "title": "properties", + "description": "UNDOCUMENATED", + "propertyNames": { + "pattern": "%([a-zA-Z0-9_]+:[a-zA-Z0-9_\\-]+)&" + }, + "additionalProperties": { + "oneOf": [ + { "type": "array", "oneOf": [{ "type": "boolean" }, { "type": "number" }, { "type": "integer" }, { "type": "string" }] }, + { "type": "object" } + ] + } } } }, @@ -52,6 +65,14 @@ "title": "Component", "description": "", "properties": { + "minecraft:on_fall_on": { "$ref": "./components/minecraft.on_fall_on.json" }, + "minecraft:on_interact": { "$ref": "./components/minecraft.on_interact.json" }, + "minecraft:on_placed": { "$ref": "./components/minecraft.on_placed.json" }, + "minecraft:on_player_destroyed": { "$ref": "./components/minecraft.on_player_destroyed.json" }, + "minecraft:on_player_placing": { "$ref": "./components/minecraft.on_player_placing.json" }, + "minecraft:on_step_off": { "$ref": "./components/minecraft.on_step_off.json" }, + "minecraft:on_step_on": { "$ref": "./components/minecraft.on_step_on.json" }, + "minecraft:block_light_absorption": { "$ref": "./components/minecraft.block_light_absorption.json" }, "minecraft:block_light_emission": { "$ref": "./components/minecraft.block_light_emission.json" }, "minecraft:breakonpush": { "$ref": "./components/minecraft.breakonpush.json" }, @@ -78,10 +99,7 @@ } }, "events": { - "type": "object", - "additionalProperties": { - - } + "$ref": "./events.json" } } } diff --git a/behaviour/blocks/1.16.200/components/minecraft.block_light_absorption.json b/behaviour/blocks/1.16.200/components/minecraft.block_light_absorption.json index b3efb569..d7620c70 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.block_light_absorption.json +++ b/behaviour/blocks/1.16.200/components/minecraft.block_light_absorption.json @@ -1,9 +1,9 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.block_light_absorption", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.block_light_absorption", "additionalProperties": false, "type": "integer", - "title": "Block light absorption 1.10.0", + "title": "Block light absorption 1.16.200", "description": "The amount of light this block will absorb.", "default": 0 } diff --git a/behaviour/blocks/1.16.200/components/minecraft.block_light_emission.json b/behaviour/blocks/1.16.200/components/minecraft.block_light_emission.json index bd18dc94..0f1d8101 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.block_light_emission.json +++ b/behaviour/blocks/1.16.200/components/minecraft.block_light_emission.json @@ -1,9 +1,9 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.block_light_emission", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.block_light_emission", "additionalProperties": false, "type": "number", - "title": "Block light emission 1.10.0", + "title": "Block light emission 1.16.200", "description": "The amount of light this block will emit in a range [0.0, 1.0].", "minimum": 0, "maximum": 1, diff --git a/behaviour/blocks/1.16.200/components/minecraft.breakonpush.json b/behaviour/blocks/1.16.200/components/minecraft.breakonpush.json index 64fcad34..93bcd534 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.breakonpush.json +++ b/behaviour/blocks/1.16.200/components/minecraft.breakonpush.json @@ -1,8 +1,8 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.breakonpush", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.breakonpush", "additionalProperties": false, "type": "boolean", - "title": "Break on push 1.10.0", + "title": "Break on push 1.16.200", "description": "When pushed by a piston the block breaks." } diff --git a/behaviour/blocks/1.16.200/components/minecraft.breathability.json b/behaviour/blocks/1.16.200/components/minecraft.breathability.json index e1a91a83..cfae5827 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.breathability.json +++ b/behaviour/blocks/1.16.200/components/minecraft.breathability.json @@ -1,9 +1,9 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.breathability", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.breathability", "additionalProperties": false, "type": "string", - "title": "Breathability 1.10.0", + "title": "Breathability 1.16.200", "description": "Property describing the breathability of this block and whether it is treated as a solid or as air.", "enum": ["solid", "air"], "default": "solid" diff --git a/behaviour/blocks/1.16.200/components/minecraft.destroy_time.json b/behaviour/blocks/1.16.200/components/minecraft.destroy_time.json index a2cb0ca7..9addfcaa 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.destroy_time.json +++ b/behaviour/blocks/1.16.200/components/minecraft.destroy_time.json @@ -1,8 +1,8 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.destroy_time", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.destroy_time", "additionalProperties": false, "type": "number", - "title": "Destroy time 1.10.0", + "title": "Destroy time 1.16.200", "description": "Sets the destroy time property for the block. Greater numbers result in greater mining times." } diff --git a/behaviour/blocks/1.16.200/components/minecraft.display_name.json b/behaviour/blocks/1.16.200/components/minecraft.display_name.json index fab4dc4a..e0a37f18 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.display_name.json +++ b/behaviour/blocks/1.16.200/components/minecraft.display_name.json @@ -1,8 +1,8 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.display_name", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.display_name", "additionalProperties": false, "type": "string", - "title": "Display name 1.10.0", + "title": "Display name 1.16.200", "description": "Specifies the display name id for the block." } diff --git a/behaviour/blocks/1.16.200/components/minecraft.entity_collision.json b/behaviour/blocks/1.16.200/components/minecraft.entity_collision.json index 77acd3a0..8713cf7b 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.entity_collision.json +++ b/behaviour/blocks/1.16.200/components/minecraft.entity_collision.json @@ -1,8 +1,8 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.entity_collision", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.entity_collision", "additionalProperties": false, - "title": "Entity collision 1.10.0", + "title": "Entity collision 1.16.200", "description": "Can only be set to false, it disables the collision of the block with entities.", "oneOf": [ { "type": "boolean", "const": false }, diff --git a/behaviour/blocks/1.16.200/components/minecraft.explosion_resistance.json b/behaviour/blocks/1.16.200/components/minecraft.explosion_resistance.json index 1e81d731..0123917a 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.explosion_resistance.json +++ b/behaviour/blocks/1.16.200/components/minecraft.explosion_resistance.json @@ -1,9 +1,9 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.explosion_resistance", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.explosion_resistance", "additionalProperties": false, "type": "number", - "title": "Explosion resistance 1.10.0", + "title": "Explosion resistance 1.16.200", "description": "Sets the explosion resistance for this block.", "default": 0.0 } diff --git a/behaviour/blocks/1.16.200/components/minecraft.flammable.json b/behaviour/blocks/1.16.200/components/minecraft.flammable.json index 66a80789..d93dcd88 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.flammable.json +++ b/behaviour/blocks/1.16.200/components/minecraft.flammable.json @@ -1,9 +1,9 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.flammable", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.flammable", "additionalProperties": false, "type": "object", - "title": "Flammable 1.10.0", + "title": "Flammable 1.16.200", "description": "Describes the flammable properties for this block.", "additionalItems": false, "properties": { diff --git a/behaviour/blocks/1.16.200/components/minecraft.friction.json b/behaviour/blocks/1.16.200/components/minecraft.friction.json index 2729347d..62cc16f5 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.friction.json +++ b/behaviour/blocks/1.16.200/components/minecraft.friction.json @@ -1,9 +1,9 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.friction", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.friction", "additionalProperties": false, "type": "number", - "title": "Friction 1.10.0", + "title": "Friction 1.16.200", "description": "Property describing the friction for this block. Friction effects an entities movements when it walks on the block.", "default": 0.1 } diff --git a/behaviour/blocks/1.16.200/components/minecraft.geometry.json b/behaviour/blocks/1.16.200/components/minecraft.geometry.json index 3d878d91..9f30d4f2 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.geometry.json +++ b/behaviour/blocks/1.16.200/components/minecraft.geometry.json @@ -1,9 +1,9 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.geometry", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.geometry", "additionalProperties": false, "type": "string", - "title": "Geometry 1.10.0", + "title": "Geometry 1.16.200", "description": "The geometry definition name to use.", "pattern": "^geometry\\.[a-zA-Z0-9_\\-\\.]+$" } diff --git a/behaviour/blocks/1.16.200/components/minecraft.immovable.json b/behaviour/blocks/1.16.200/components/minecraft.immovable.json index 266e40c8..23fccf45 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.immovable.json +++ b/behaviour/blocks/1.16.200/components/minecraft.immovable.json @@ -1,8 +1,8 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.immovable", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.immovable", "additionalProperties": false, "type": "boolean", - "title": "Immovable 1.10.0", + "title": "Immovable 1.16.200", "description": "An Immovable block cannot be pushed by pistons" } diff --git a/behaviour/blocks/1.16.200/components/minecraft.loot.json b/behaviour/blocks/1.16.200/components/minecraft.loot.json index bc060d7c..3b749de5 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.loot.json +++ b/behaviour/blocks/1.16.200/components/minecraft.loot.json @@ -1,9 +1,9 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.loot", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.loot", "additionalProperties": false, "type": "string", - "title": "Loot 1.10.0", + "title": "Loot 1.16.200", "description": "The path of the loot table that this component will use when the block is destroyed.", "pattern": "loot_tables/.*\\.json$" } diff --git a/behaviour/blocks/1.16.200/components/minecraft.map_color.json b/behaviour/blocks/1.16.200/components/minecraft.map_color.json index d530de78..77eb5696 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.map_color.json +++ b/behaviour/blocks/1.16.200/components/minecraft.map_color.json @@ -1,9 +1,9 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.map_color", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.map_color", "additionalProperties": false, "type": "string", - "title": "Map color 1.10.0", + "title": "Map color 1.16.200", "description": "A color represented as a hex value. This will be the color rendered to a map.", "format": "color-hex" } diff --git a/behaviour/blocks/1.16.200/components/minecraft.material_instances.json b/behaviour/blocks/1.16.200/components/minecraft.material_instances.json index a19776e9..b24c320f 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.material_instances.json +++ b/behaviour/blocks/1.16.200/components/minecraft.material_instances.json @@ -1,8 +1,8 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.material_instances", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.material_instances", "type": "object", - "title": "Material instances 1.10.0", + "title": "Material instances 1.16.200", "description": "Maps face or material_instance names in a geometry file to an actual material instance. Material instance can either be a full material instance or a name to another already defined instance", "definitions": { "material_instance": { diff --git a/behaviour/blocks/1.16.200/components/minecraft.on_fall_on.json b/behaviour/blocks/1.16.200/components/minecraft.on_fall_on.json new file mode 100644 index 00000000..d522527c --- /dev/null +++ b/behaviour/blocks/1.16.200/components/minecraft.on_fall_on.json @@ -0,0 +1,33 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.on_fall_on", + "type": "object", + "title": "On fall on", + "description": "Describes event for this block.", + "properties": { + "condition": { + "type": "string", + "default": "", + "description": "The condition of event to be executed on the block.", + "title": "condition" + }, + "event": { + "type": "string", + "default": "", + "description": "The event executed on the block.", + "title": "event" + }, + "min_fall_distance": { + "type": "number", + "default": 0, + "description": "The minimum distance in blocks that an actor needs to fall to trigger this event.", + "title": "min fall distance" + }, + "target": { + "type": "string", + "default": "self", + "description": "The target of event executed on the block.", + "title": "target" + } + } +} diff --git a/behaviour/blocks/1.16.200/components/minecraft.on_interact.json b/behaviour/blocks/1.16.200/components/minecraft.on_interact.json new file mode 100644 index 00000000..fd03e210 --- /dev/null +++ b/behaviour/blocks/1.16.200/components/minecraft.on_interact.json @@ -0,0 +1,27 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.on_interact", + "type": "object", + "title": "On fall on", + "description": "Describes event for this block.", + "properties": { + "condition": { + "type": "string", + "default": "", + "description": "The condition of event to be executed on the block.", + "title": "condition" + }, + "event": { + "type": "string", + "default": "", + "description": "The event executed on the block.", + "title": "event" + }, + "target": { + "type": "string", + "default": "self", + "description": "The target of event executed on the block.", + "title": "target" + } + } +} diff --git a/behaviour/blocks/1.16.200/components/minecraft.on_placed.json b/behaviour/blocks/1.16.200/components/minecraft.on_placed.json new file mode 100644 index 00000000..23a09c31 --- /dev/null +++ b/behaviour/blocks/1.16.200/components/minecraft.on_placed.json @@ -0,0 +1,27 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.on_placed", + "type": "object", + "title": "On placed 1.16.200", + "description": "Describes event for this block.", + "properties": { + "condition": { + "type": "string", + "default": "", + "description": "The condition of event to be executed on the block.", + "title": "condition" + }, + "event": { + "type": "string", + "default": "", + "description": "The event executed on the block.", + "title": "event" + }, + "target": { + "type": "string", + "default": "self", + "description": "The target of event executed on the block.", + "title": "target" + } + } +} diff --git a/behaviour/blocks/1.16.200/components/minecraft.on_player_destroyed.json b/behaviour/blocks/1.16.200/components/minecraft.on_player_destroyed.json new file mode 100644 index 00000000..f744bdcb --- /dev/null +++ b/behaviour/blocks/1.16.200/components/minecraft.on_player_destroyed.json @@ -0,0 +1,27 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.on_player_destroyed", + "type": "object", + "title": "On player destroyed 1.16.200", + "description": "Describes event for this block.", + "properties": { + "condition": { + "type": "string", + "default": "", + "description": "The condition of event to be executed on the block.", + "title": "condition" + }, + "event": { + "type": "string", + "default": "", + "description": "The event executed on the block.", + "title": "event" + }, + "target": { + "type": "string", + "default": "self", + "description": "The target of event executed on the block.", + "title": "target" + } + } +} diff --git a/behaviour/blocks/1.16.200/components/minecraft.on_player_placing.json b/behaviour/blocks/1.16.200/components/minecraft.on_player_placing.json new file mode 100644 index 00000000..9e66c7e1 --- /dev/null +++ b/behaviour/blocks/1.16.200/components/minecraft.on_player_placing.json @@ -0,0 +1,27 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.on_player_placing", + "type": "object", + "title": "On player placing 1.16.200", + "description": "Describes event for this block.", + "properties": { + "condition": { + "type": "string", + "default": "", + "description": "The condition of event to be executed on the block.", + "title": "condition" + }, + "event": { + "type": "string", + "default": "", + "description": "The event executed on the block.", + "title": "event" + }, + "target": { + "type": "string", + "default": "self", + "description": "The target of event executed on the block.", + "title": "target" + } + } +} diff --git a/behaviour/blocks/1.16.200/components/minecraft.on_step_off.json b/behaviour/blocks/1.16.200/components/minecraft.on_step_off.json new file mode 100644 index 00000000..4c398a13 --- /dev/null +++ b/behaviour/blocks/1.16.200/components/minecraft.on_step_off.json @@ -0,0 +1,27 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.on_step_off", + "type": "object", + "title": "On step off 1.16.200", + "description": "Describes event for this block.", + "properties": { + "condition": { + "type": "string", + "default": "", + "description": "The condition of event to be executed on the block.", + "title": "condition" + }, + "event": { + "type": "string", + "default": "", + "description": "The event executed on the block.", + "title": "event" + }, + "target": { + "type": "string", + "default": "self", + "description": "The target of event executed on the block.", + "title": "target" + } + } +} diff --git a/behaviour/blocks/1.16.200/components/minecraft.on_step_on.json b/behaviour/blocks/1.16.200/components/minecraft.on_step_on.json new file mode 100644 index 00000000..dd256f90 --- /dev/null +++ b/behaviour/blocks/1.16.200/components/minecraft.on_step_on.json @@ -0,0 +1,27 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.on_step_on", + "type": "object", + "title": "On step on 1.16.200", + "description": "Describes event for this block.", + "properties": { + "condition": { + "type": "string", + "default": "", + "description": "The condition of event to be executed on the block.", + "title": "condition" + }, + "event": { + "type": "string", + "default": "", + "description": "The event executed on the block.", + "title": "event" + }, + "target": { + "type": "string", + "default": "self", + "description": "The target of event executed on the block.", + "title": "target" + } + } +} diff --git a/behaviour/blocks/1.16.200/components/minecraft.onlypistonpush.json b/behaviour/blocks/1.16.200/components/minecraft.onlypistonpush.json index e9a67494..ef41edab 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.onlypistonpush.json +++ b/behaviour/blocks/1.16.200/components/minecraft.onlypistonpush.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.onlypistonpush", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.onlypistonpush", "type": "boolean", - "title": "Only piston push 1.10.0", + "title": "Only piston push 1.16.200", "description": "Blocks with those components won't stick to stickyPistons" } diff --git a/behaviour/blocks/1.16.200/components/minecraft.pick_collision.json b/behaviour/blocks/1.16.200/components/minecraft.pick_collision.json index 8a597325..14a569ce 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.pick_collision.json +++ b/behaviour/blocks/1.16.200/components/minecraft.pick_collision.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.pick_collision", - "title": "Pick collision 1.10.0", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.pick_collision", + "title": "Pick collision 1.16.200", "description": "Can only be set to false, it disables the collision of the block with entities", "oneOf": [ { "type": "boolean", "const": false }, diff --git a/behaviour/blocks/1.16.200/components/minecraft.placement_filter.json b/behaviour/blocks/1.16.200/components/minecraft.placement_filter.json index 67dd8fcf..aac3436f 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.placement_filter.json +++ b/behaviour/blocks/1.16.200/components/minecraft.placement_filter.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.placement_filter", - "title": "Placement filter 1.10.0", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.placement_filter", + "title": "Placement filter 1.16.200", "description": "Sets rules for under what conditions the block can be placed/survive", "type": "object", "properties": { diff --git a/behaviour/blocks/1.16.200/components/minecraft.preventsjumping.json b/behaviour/blocks/1.16.200/components/minecraft.preventsjumping.json index 9c35f579..91fac69c 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.preventsjumping.json +++ b/behaviour/blocks/1.16.200/components/minecraft.preventsjumping.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.preventsjumping", - "title": "Prevents jumping 1.10.0", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.preventsjumping", + "title": "Prevents jumping 1.16.200", "description": "This component makes it so actors can't jump when walking on this block", "type": "boolean" } diff --git a/behaviour/blocks/1.16.200/components/minecraft.random_ticking.json b/behaviour/blocks/1.16.200/components/minecraft.random_ticking.json index 30dcc886..f116a05d 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.random_ticking.json +++ b/behaviour/blocks/1.16.200/components/minecraft.random_ticking.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.random_ticking", - "title": "Random ticking 1.10.0", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.random_ticking", + "title": "Random ticking 1.16.200", "description": "Describes the component that will trigger an even at a regular interval between two values", "type": "object", "additionalProperties": false, diff --git a/behaviour/blocks/1.16.200/components/minecraft.rotation.json b/behaviour/blocks/1.16.200/components/minecraft.rotation.json index 7eaff984..758ef994 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.rotation.json +++ b/behaviour/blocks/1.16.200/components/minecraft.rotation.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.rotation", - "title": "Rotation 1.10.0", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.rotation", + "title": "Rotation 1.16.200", "description": "This is the block's rotation around the center of the cube in degrees. The rotation order is x-y-z.", "type": "array", "additionalProperties": false, diff --git a/behaviour/blocks/1.16.200/components/minecraft.ticking.json b/behaviour/blocks/1.16.200/components/minecraft.ticking.json index 6d0ebd64..14af82fd 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.ticking.json +++ b/behaviour/blocks/1.16.200/components/minecraft.ticking.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.ticking", - "title": "Ticking 1.10.0", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.ticking", + "title": "Ticking 1.16.200", "description": "Describes the component that will trigger an even at a regular interval between two values", "type": "object", "additionalProperties": false, diff --git a/behaviour/blocks/1.16.200/components/minecraft.unit_cube.json b/behaviour/blocks/1.16.200/components/minecraft.unit_cube.json index 5fe43c5c..04424c32 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.unit_cube.json +++ b/behaviour/blocks/1.16.200/components/minecraft.unit_cube.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.unit_cube", - "title": "Unit cube 1.10.0", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.unit_cube", + "title": "Unit cube 1.16.200", "description": "Specifies that a unit cube is to be used with tessellation.", "type": "string" } diff --git a/behaviour/blocks/1.16.200/components/minecraft.unwalkable.json b/behaviour/blocks/1.16.200/components/minecraft.unwalkable.json index ec835ef6..964b27d5 100644 --- a/behaviour/blocks/1.16.200/components/minecraft.unwalkable.json +++ b/behaviour/blocks/1.16.200/components/minecraft.unwalkable.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "blockception.minecraft.behaviour.blocks.1.10.0.minecraft.unwalkable", - "title": "Unwalkable 1.10.0", + "$id": "blockception.minecraft.behaviour.blocks.1.16.200.minecraft.unwalkable", + "title": "Unwalkable 1.16.200", "description": "this component sets a block as unwalkable. Most mobs will not try to jump over it if the value is set to true", "type": "boolean" } diff --git a/behaviour/blocks/1.16.200/events/add_mob_effect.json b/behaviour/blocks/1.16.200/events/add_mob_effect.json index ba0e9da6..0d328818 100644 Binary files a/behaviour/blocks/1.16.200/events/add_mob_effect.json and b/behaviour/blocks/1.16.200/events/add_mob_effect.json differ diff --git a/behaviour/blocks/1.16.200/events/damage.json b/behaviour/blocks/1.16.200/events/damage.json index 5011aca5..358afb13 100644 Binary files a/behaviour/blocks/1.16.200/events/damage.json and b/behaviour/blocks/1.16.200/events/damage.json differ diff --git a/behaviour/blocks/1.16.200/events/decrement_stack.json b/behaviour/blocks/1.16.200/events/decrement_stack.json index 40e8fc8c..10e3935a 100644 Binary files a/behaviour/blocks/1.16.200/events/decrement_stack.json and b/behaviour/blocks/1.16.200/events/decrement_stack.json differ diff --git a/behaviour/blocks/1.16.200/events/die.json b/behaviour/blocks/1.16.200/events/die.json index bf01677a..87e01302 100644 Binary files a/behaviour/blocks/1.16.200/events/die.json and b/behaviour/blocks/1.16.200/events/die.json differ diff --git a/behaviour/blocks/1.16.200/events/play_effect.json b/behaviour/blocks/1.16.200/events/play_effect.json index 7905acf3..cb552182 100644 Binary files a/behaviour/blocks/1.16.200/events/play_effect.json and b/behaviour/blocks/1.16.200/events/play_effect.json differ diff --git a/behaviour/blocks/1.16.200/events/play_sound.json b/behaviour/blocks/1.16.200/events/play_sound.json index 57044111..bbcc7690 100644 Binary files a/behaviour/blocks/1.16.200/events/play_sound.json and b/behaviour/blocks/1.16.200/events/play_sound.json differ diff --git a/behaviour/blocks/1.16.200/events/remove_mob_effect.json b/behaviour/blocks/1.16.200/events/remove_mob_effect.json index 6dc6c605..874f930c 100644 Binary files a/behaviour/blocks/1.16.200/events/remove_mob_effect.json and b/behaviour/blocks/1.16.200/events/remove_mob_effect.json differ diff --git a/behaviour/blocks/1.16.200/events/run_command.json b/behaviour/blocks/1.16.200/events/run_command.json index 6dc6c605..fc20df47 100644 Binary files a/behaviour/blocks/1.16.200/events/run_command.json and b/behaviour/blocks/1.16.200/events/run_command.json differ diff --git a/behaviour/blocks/1.16.200/events/set_block.json b/behaviour/blocks/1.16.200/events/set_block.json index 6dc6c605..2f9b7f4c 100644 Binary files a/behaviour/blocks/1.16.200/events/set_block.json and b/behaviour/blocks/1.16.200/events/set_block.json differ diff --git a/behaviour/blocks/1.16.200/events/set_block_at_pos.json b/behaviour/blocks/1.16.200/events/set_block_at_pos.json index 6dc6c605..54510440 100644 Binary files a/behaviour/blocks/1.16.200/events/set_block_at_pos.json and b/behaviour/blocks/1.16.200/events/set_block_at_pos.json differ diff --git a/behaviour/blocks/1.16.200/events/set_block_property.json b/behaviour/blocks/1.16.200/events/set_block_property.json index 6dc6c605..b0129834 100644 Binary files a/behaviour/blocks/1.16.200/events/set_block_property.json and b/behaviour/blocks/1.16.200/events/set_block_property.json differ diff --git a/behaviour/blocks/1.16.200/events/spawn_loot.json b/behaviour/blocks/1.16.200/events/spawn_loot.json index 6dc6c605..89ae8b07 100644 Binary files a/behaviour/blocks/1.16.200/events/spawn_loot.json and b/behaviour/blocks/1.16.200/events/spawn_loot.json differ diff --git a/behaviour/blocks/1.16.200/events/swing.json b/behaviour/blocks/1.16.200/events/swing.json index 6dc6c605..87e2f787 100644 Binary files a/behaviour/blocks/1.16.200/events/swing.json and b/behaviour/blocks/1.16.200/events/swing.json differ diff --git a/behaviour/blocks/1.16.200/events/teleport.json b/behaviour/blocks/1.16.200/events/teleport.json index 6dc6c605..30a26695 100644 Binary files a/behaviour/blocks/1.16.200/events/teleport.json and b/behaviour/blocks/1.16.200/events/teleport.json differ diff --git a/behaviour/blocks/1.16.200/events/transform_item.json b/behaviour/blocks/1.16.200/events/transform_item.json index 6dc6c605..5b3cb28a 100644 Binary files a/behaviour/blocks/1.16.200/events/transform_item.json and b/behaviour/blocks/1.16.200/events/transform_item.json differ