Skip to content

Commit

Permalink
Update from 1.21.0 to 1.21.30 (#307)
Browse files Browse the repository at this point in the history
* - Remove deprecated biome components
* - Remove block hcf
* - Add item specific destroy speeds
* - Add owner distance filter
* - Update scatter feature distribution property
* - Add new entity components
- Remove behavior.peek
* - Add new item components
- Remove hcf item stuff
* - Remove volumes
* - Add set_potion loot table function
* - Mark fields as required
* - Add item display transforms
* - Add redstone conductivity block component
* - Add is_navigating filter
* - Fix move around target ref
* - Add pack namespaced loot tables functions
  • Loading branch information
Xterionix committed Sep 22, 2024
1 parent a3e2eaa commit ca1b07b
Show file tree
Hide file tree
Showing 68 changed files with 1,487 additions and 1,236 deletions.
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

0 comments on commit ca1b07b

Please sign in to comment.