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:
@@ -12,6 +12,13 @@
|
||||
"type": "string",
|
||||
"format": "color-hex",
|
||||
"examples": ["#FFFFFF"]
|
||||
},
|
||||
"surface_opacity": {
|
||||
"title": "Surface Opacity",
|
||||
"description": "Opacity of the water surface (0 for invisible and 1 for opaque)",
|
||||
"type": "number",
|
||||
"minimum": 0,
|
||||
"maximum": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,116 +90,7 @@
|
||||
"sound": {
|
||||
"type": "string",
|
||||
"title": "Sound",
|
||||
"description": "The sound definition of this block.",
|
||||
"enum": [
|
||||
"amethyst_block",
|
||||
"amethyst_cluster",
|
||||
"ancient_debris",
|
||||
"anvil",
|
||||
"azalea",
|
||||
"azalea_leaves",
|
||||
"bamboo",
|
||||
"bamboo_sapling",
|
||||
"bamboo_wood",
|
||||
"bamboo_wood_hanging_sign",
|
||||
"basalt",
|
||||
"big_dripleaf",
|
||||
"bone_block",
|
||||
"calcite",
|
||||
"candle",
|
||||
"cave_vines",
|
||||
"chain",
|
||||
"cherry_leaves",
|
||||
"cherry_wood",
|
||||
"cherry_wood_hanging_sign",
|
||||
"chiseled_bookshelf",
|
||||
"cloth",
|
||||
"comparator",
|
||||
"copper",
|
||||
"copper_bulb",
|
||||
"copper_grate",
|
||||
"coral",
|
||||
"creaking_heart",
|
||||
"decorated_pot",
|
||||
"deepslate",
|
||||
"deepslate_bricks",
|
||||
"dirt_with_roots",
|
||||
"dripstone_block",
|
||||
"eyeblossom",
|
||||
"frog_spawn",
|
||||
"froglight",
|
||||
"fungus",
|
||||
"glass",
|
||||
"glow_lichen",
|
||||
"grass",
|
||||
"gravel",
|
||||
"hanging_roots",
|
||||
"hanging_sign",
|
||||
"heavy_core",
|
||||
"honey_block",
|
||||
"itemframe",
|
||||
"ladder",
|
||||
"lantern",
|
||||
"large_amethyst_bud",
|
||||
"lever",
|
||||
"lodestone",
|
||||
"mangrove_roots",
|
||||
"medium_amethyst_bud",
|
||||
"metal",
|
||||
"mob_spawner",
|
||||
"moss_block",
|
||||
"moss_carpet",
|
||||
"mud",
|
||||
"mud_bricks",
|
||||
"muddy_mangrove_roots",
|
||||
"nether_brick",
|
||||
"nether_gold_ore",
|
||||
"nether_sprouts",
|
||||
"nether_wart",
|
||||
"nether_wood",
|
||||
"nether_wood_hanging_sign",
|
||||
"netherite",
|
||||
"netherrack",
|
||||
"nylium",
|
||||
"packed_mud",
|
||||
"pale_hanging_moss",
|
||||
"pink_petals",
|
||||
"pointed_dripstone",
|
||||
"polished_tuff",
|
||||
"powder_snow",
|
||||
"resin",
|
||||
"resin_brick",
|
||||
"roots",
|
||||
"sand",
|
||||
"scaffolding",
|
||||
"sculk",
|
||||
"sculk_catalyst",
|
||||
"sculk_sensor",
|
||||
"sculk_shrieker",
|
||||
"sculk_vein",
|
||||
"shroomlight",
|
||||
"slime",
|
||||
"small_amethyst_bud",
|
||||
"snow",
|
||||
"soul_sand",
|
||||
"soul_soil",
|
||||
"sponge",
|
||||
"spore_blossom",
|
||||
"stem",
|
||||
"stone",
|
||||
"suspicious_gravel",
|
||||
"suspicious_sand",
|
||||
"sweet_berry_bush",
|
||||
"trial_spawner",
|
||||
"tuff",
|
||||
"tuff_bricks",
|
||||
"turtle_egg",
|
||||
"vault",
|
||||
"vines",
|
||||
"web",
|
||||
"wet_sponge",
|
||||
"wood"
|
||||
]
|
||||
"description": "The sound definition of this block."
|
||||
},
|
||||
"textures": { "$ref": "#/definitions/texture", "title": "Textures", "description": "Textures." }
|
||||
}
|
||||
|
||||
@@ -78,6 +78,11 @@
|
||||
"description": "A single block sound definition.",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"base": {
|
||||
"title": "Base",
|
||||
"description": "Specifying another block sound they should use sounds for if they do not define a sound themselves",
|
||||
"type": "string"
|
||||
},
|
||||
"volume": { "$ref": "#/definitions/volume" },
|
||||
"pitch": { "$ref": "#/definitions/pitch" },
|
||||
"events": {
|
||||
|
||||
Reference in New Issue
Block a user