* - 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
40 lines
2.3 KiB
JSON
40 lines
2.3 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"$id": "minecraft.behavior.biomes",
|
|
"type": "object",
|
|
"examples": [{ "plains": { "format_version": "1.20.80" } }],
|
|
"additionalProperties": {
|
|
"type": "object",
|
|
"title": "Biomes",
|
|
"description": "The definition of a biome.",
|
|
"additionalProperties": {
|
|
"title": "Tag",
|
|
"type": "object",
|
|
"description": "Components with no namespace are treated as `tags': any name consisting of alphanumeric characters, `.` and `_` is permitted; the tag is attached to the biome so that either code or data may check for its existence; tag components may not have member fields.",
|
|
"additionalProperties": false
|
|
},
|
|
"properties": {
|
|
"format_version": { "$ref": "../../general/format_version.json" },
|
|
|
|
"minecraft:capped_surface": { "$ref": "./components/capped_surface.json" },
|
|
"minecraft:climate": { "$ref": "./components/climate.json" },
|
|
"minecraft:consolidated_features": { "$ref": "./components/consolidated_features.json" },
|
|
"minecraft:creature_spawn_probability": { "$ref": "./components/creature_spawn_probability.json" },
|
|
"minecraft:frozen_ocean_surface": { "$ref": "./components/frozen_ocean_surface.json" },
|
|
"minecraft:legacy_world_generation_rules": {
|
|
"$ref": "./components/legacy_world_generation_rules.json"
|
|
},
|
|
"minecraft:mesa_surface": { "$ref": "./components/mesa_surface.json" },
|
|
"minecraft:mountain_parameters": { "$ref": "./components/mountain_parameters.json" },
|
|
"minecraft:nether_generation_rules": { "$ref": "./components/nether_generation_rules.json" },
|
|
"minecraft:nether_surface": { "$ref": "./components/nether_surface.json" },
|
|
"minecraft:overworld_generation_rules": { "$ref": "./components/overworld_generation_rules.json" },
|
|
"minecraft:overworld_height": { "$ref": "./components/overworld_height.json" },
|
|
"minecraft:surface_material_adjustments": { "$ref": "./components/surface_material_adjustments.json" },
|
|
"minecraft:surface_parameters": { "$ref": "./components/surface_parameters.json" },
|
|
"minecraft:swamp_surface": { "$ref": "./components/swamp_surface.json" },
|
|
"minecraft:the_end_surface": { "$ref": "./components/the_end_surface.json" }
|
|
}
|
|
}
|
|
}
|