Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update from 1.21.0 to 1.21.30 #307

Merged
merged 15 commits into from
Sep 22, 2024
2 changes: 0 additions & 2 deletions source/behavior/biomes/biomes.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@
"minecraft:capped_surface": { "$ref": "./components/capped_surface.json" },
"minecraft:climate": { "$ref": "./components/climate.json" },
"minecraft:consolidated_features": { "$ref": "./components/consolidated_features.json" },
"minecraft:forced_features": { "$ref": "./components/forced_features.json" },
"minecraft:frozen_ocean_surface": { "$ref": "./components/frozen_ocean_surface.json" },
"minecraft:ignore_automatic_features": { "$ref": "./components/ignore_automatic_features.json" },
"minecraft:legacy_world_generation_rules": {
"$ref": "./components/legacy_world_generation_rules.json"
},
Expand Down
249 changes: 0 additions & 249 deletions source/behavior/biomes/components/forced_features.json

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,54 @@
{
"type": "object",
"additionalProperties": false,
"required": [],
"required": [ ],
"properties": {
"seconds_to_destroy": {
"title": "Seconds To Destroy",
"description": "Sets the number of seconds it takes to destroy the block with base equipment. Greater numbers result in greater mining times.",
"type": "number",
"default": 0.0
},
"item_specific_speeds": {
"type": "array",
"title": "Item Specific Destroy Speeds",
"description": "Optional array of objects to describe item-specific block destroy speeds.",
"minItems": 1,
"items": {
"title": "Item Specific Destroy Speed",
"type": "object",
"additionalProperties": false,
"required": [ "item", "destroy_speed" ],
"properties": {
"item": {
"anyOf": [
{
"title": "Item Identifer",
"description": "ItemDescriptor filtering for the item used while mining.",
"type": "string"
},
{
"type": "object",
"description": "ItemDescriptor filtering for the item used while mining.",
"additionalProperties": false,
"properties": {
"tags": {
"title": "Tags",
"description": "Molang or tag",
"type": "string"
}
}
}
]
},
"destroy_speed": {
"title": "Destroy Speed",
"type": "number",
"description": "Sets the number of seconds it takes to destroy the block with base equipment. Greater numbers result in greater mining times.",
"minimum": 0
}
}
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"$id": "blockception.minecraft.behavior.blocks.minecraft.redstone_conductivity",
"title": "Redstone Conductivity",
"description": "The basic redstone properties of a block; if the component is not provided the default values are used. Requires the Upcoming Creator Features experiment.",
"type": "object",
"additionalProperties": false,
"required": [ ],
"properties": {
"allows_wire_to_step_down": {
"title": "Allows Wire To Step Down",
"description": "Specifies if redstone wire can stair-step downward on the block.",
"type": "boolean",
"default": true
},
"redstone_conductor": {
"title": "Redstone Conductor",
"description": "Specifies if the block can be powered by redstone.",
"type": "boolean",
"default": false
}
}
}
43 changes: 0 additions & 43 deletions source/behavior/blocks/format/events.json

This file was deleted.

Loading
Loading