* - Added precipitation client biome component * - Renamed input_air_controlled to free_camera_controlled * - Added vertical_movement_action * - Renamed dash to dash_action * - Updated on_death documentation * - Updated :interact slot list * - Added drop_item event response * - Removed experimental markers for poly_mesh * - Removed experimental markers for texture_meshes * - Added use_pixel_depth option to texture_mesh * - Updated swamp surface builder * - Updated roar behavior * - Standardize control_flags definition * - Updated slime_attack behavior * - Added control_flags to certain goals based on vanilla schemas * - Added direction to dash_action * - Added fire_resistant component * - Added underwater_music field to biome_music * - Added redstone_producer block component * - Added flower_pottable * - Added embedded_visual component * - Added embedded item_display_transform * - Added y_rotation filter * - Added on_take_flower trigger to give_flower behavior * - Added passenger_of_entity loot condition * - Added is_baby loot condition * - Added manifest v3 * - Added stonecutter recipe tag - Remove duplicate description in recipe schema * - Give entity_placer block a type
51 lines
2.3 KiB
JSON
51 lines
2.3 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"$id": "blockception.minecraft.resource.biomes",
|
|
"title": "Client Biome Definitions",
|
|
"description": "A client biome definition.",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["description", "components"],
|
|
"definitions": {
|
|
"components_ref": {
|
|
"type": "object",
|
|
"title": "Components",
|
|
"description": "Any components that this Client Biome uses.",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
// Components
|
|
"minecraft:ambient_sounds": { "$ref": "./components/ambient_sounds.json" },
|
|
"minecraft:atmosphere_identifier": { "$ref": "./components/atmosphere_identifier.json" },
|
|
"minecraft:biome_music": { "$ref": "./components/biome_music.json" },
|
|
"minecraft:color_grading_identifier": { "$ref": "./components/color_grading_identifier.json" },
|
|
"minecraft:dry_foliage_color": { "$ref": "./components/dry_foliage_color.json" },
|
|
"minecraft:fog_appearance": { "$ref": "./components/fog_appearance.json" },
|
|
"minecraft:foliage_appearance": { "$ref": "./components/foliage_appearance.json" },
|
|
"minecraft:grass_appearance": { "$ref": "./components/grass_appearance.json" },
|
|
"minecraft:lighting_identifier": { "$ref": "./components/lighting_identifier.json" },
|
|
"minecraft:sky_color": { "$ref": "./components/sky_color.json" },
|
|
"minecraft:precipitation": { "$ref": "./components/precipitation.json" },
|
|
"minecraft:water_appearance": { "$ref": "./components/water_appearance.json" },
|
|
"minecraft:water_identifier": { "$ref": "./components/water_identifier.json" }
|
|
}
|
|
}
|
|
},
|
|
"properties": {
|
|
"description": {
|
|
"title": "Client Biome Description",
|
|
"description": "Contains non-component settings for a Client Biome.",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["identifier"],
|
|
"properties": {
|
|
"identifier": {
|
|
"title": "Identifier",
|
|
"description": "The name of the Client Biome, used by other features like the '/locate biome' command. Must match the name of a Biome defined by the game or a behavior pack.",
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"components": { "$ref": "#/definitions/components_ref" }
|
|
}
|
|
}
|