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:
Xterionix
2025-02-13 18:38:27 +05:00
committed by GitHub
parent 968d0c70d2
commit 40569873a8
38 changed files with 453 additions and 252 deletions

View File

@@ -0,0 +1,60 @@
{
"$id": "blockception.minecraft.behavior.loot_tables.set_armor_trim",
"additionalProperties": false,
"type": "object",
"description": "The function set_armor_trim.",
"title": "Set Armor Trim",
"required": ["function", "material", "pattern"],
"properties": {
"function": {
"type": "string",
"const": "set_armor_trim",
"title": "Function",
"description": "UNDOCUMENTED.",
"$comment": "UNDOCUMENTED"
},
"material": {
"title": "Material",
"description": "Trim's material",
"type": "string",
"enum": [
"amethyst",
"copper",
"diamond",
"emerald",
"gold",
"iron",
"lapis",
"netherite",
"quartz",
"redstone",
"resin"
]
},
"pattern": {
"title": "Pattern",
"description": "Trim pattern",
"type": "string",
"enum": [
"sentry",
"vex",
"wild",
"coast",
"dune",
"wayfinder",
"shaper",
"raiser",
"host",
"ward",
"silence",
"tide",
"snout",
"rib",
"eye",
"spire",
"flow",
"bolt"
]
}
}
}