Updated for 1.21.60 (#334)
* - Add crafting item catalogs * - Removed experimental warning for item visual * - Added renders_when_invisible entity component * - Removed experimental warning for liquid detection * - Added property inheritance to breedable * - Added min_looked_at_duration field to look_at component * - Added combine_parent_colors to breedable * - Update catalog file schema * - Split storage item components * - Added new entity filters * - Added surface opacity to water appearance biome component * - Remove actor_id loot table example as it is no longer the standard * - Add set_armor_trim trim loot table function * - Added match_tool loot table condition * - Added creature_spawn_probability component * - Added verticalFlySpeed to has_ability * - Update descriptions and default values * - Add base field to block_sounds * - Removed block sounds enum as creators can specify custom ones too * - Change default format version
This commit is contained in:
@@ -31,20 +31,6 @@
|
||||
"type": "integer",
|
||||
"maximum": 64.0,
|
||||
"default": 64
|
||||
},
|
||||
"max_weight_limit": {
|
||||
"title": "Max Weight Limit",
|
||||
"description": "The maximum allowed weight of the sum of all contained items. Maximum is 64. Default is 64.",
|
||||
"type": "integer",
|
||||
"maximum": 64.0,
|
||||
"default": 64
|
||||
},
|
||||
"weight_in_storage_item": {
|
||||
"title": "Weight In Storage Item",
|
||||
"description": "The weight of this item when inside another Storage Item. Default is 4. 0 means item is not allowed in another Storage Item.",
|
||||
"type": "integer",
|
||||
"minimum": 0.0,
|
||||
"default": 4
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.behavior.items.minecraft:storage_weight_limit",
|
||||
"title": "Storage Weight Limit",
|
||||
"description": "Specifies the maximum weight limit that a storage item can hold",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"max_weight_limit": {
|
||||
"title": "Max Weight Limit",
|
||||
"description": "The maximum allowed weight of the sum of all contained items.",
|
||||
"type": "integer",
|
||||
"maximum": 64.0,
|
||||
"default": 64
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.behavior.items.minecraft:storage_weight_modifier",
|
||||
"title": "Storage Weight Modifier",
|
||||
"description": "Specifies the maximum weight limit that a storage item can hold.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"weight_in_storage_item": {
|
||||
"title": "Weight In Storage Item",
|
||||
"description": "The weight of this item when inside another Storage Item. 0 means item is not allowed in another Storage Item.",
|
||||
"type": "integer",
|
||||
"minimum": 0.0,
|
||||
"default": 4
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -33,7 +33,10 @@
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"group": {
|
||||
"$ref": "../../../general/vanilla/item_group.json"
|
||||
"title": "Group",
|
||||
"description": "A translation string of an existing group in minecraft to group this block/item under",
|
||||
"type": "string",
|
||||
"pattern": "^[0-9a-zA-Z:_\\.\\-]+$"
|
||||
},
|
||||
"category": {
|
||||
"$ref": "../../../general/vanilla/creative_category.json"
|
||||
@@ -83,6 +86,8 @@
|
||||
"minecraft:should_despawn": { "$ref": "./components/should_despawn.json" },
|
||||
"minecraft:stacked_by_data": { "$ref": "./components/stacked_by_data.json" },
|
||||
"minecraft:storage_item": { "$ref": "./components/storage_item.json" },
|
||||
"minecraft:storage_weight_limit": { "$ref": "./components/storage_weight_limit.json" },
|
||||
"minecraft:storage_weight_modifier": { "$ref": "./components/storage_weight_modifier.json" },
|
||||
"minecraft:tags": { "$ref": "./components/tags.json" },
|
||||
"minecraft:throwable": { "$ref": "./components/throwable.json" },
|
||||
"minecraft:use_animation": { "$ref": "./components/use_animation.json" },
|
||||
|
||||
Reference in New Issue
Block a user