1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-10-15 22:55:45 +00:00
Files
bedrock-samples/metadata/json_schemas/server/biome/1.20.60/Mountain Parameters Biome Component.json
2025-09-09 10:02:11 -07:00

103 lines
3.1 KiB
JSON

{
"$id": "4185018795",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"1527037515": {
"title": "Reference",
"type": "string"
},
"2278320139": {
"description": "Defines surface material for steep slopes",
"properties": {
"east_slopes": {
"description": "Enable for east-facing slopes",
"type": "boolean"
},
"material": {
"$ref": "#/definitions/3076687790",
"description": "Block type use as steep material"
},
"north_slopes": {
"description": "Enable for north-facing slopes",
"type": "boolean"
},
"south_slopes": {
"description": "Enable for south-facing slopes",
"type": "boolean"
},
"west_slopes": {
"description": "Enable for west-facing slopes",
"type": "boolean"
}
},
"title": "minecraft:mountain_parameters - steep_material_adjustment settings",
"type": "object"
},
"3076687790": {
"description": "Specifies a particular block. Can be a string block name or a JSON object",
"oneOf": [
{
"$ref": "#/definitions/1527037515"
},
{
"properties": {
"name": {
"$ref": "#/definitions/1527037515",
"description": "Name of the block"
},
"states": {
"additionalProperties": {
"oneOf": [
{
"type": "integer"
},
{
"type": "boolean"
},
{
"type": "string"
}
]
},
"description": "Contains members named after each state, with boolean, integer, or string values.",
"type": "object"
}
},
"required": [
"name"
],
"type": "object"
}
],
"title": "Block Specifier"
},
"3848407258": {
"description": "Controls the density tapering that happens at the top of the world to prevent terrain from reaching too high.",
"properties": {
"enabled": {
"description": "If false, top slide will be disabled. If true, other parameters will be taken into account.",
"type": "boolean"
}
},
"required": [
"enabled"
],
"title": "minecraft:mountain_parameters - top_slide settings",
"type": "object"
}
},
"description": "Noise parameters used to drive mountain terrain generation in Overworld.",
"properties": {
"steep_material_adjustment": {
"$ref": "#/definitions/2278320139",
"description": "Defines surface material for steep slopes"
},
"top_slide": {
"$ref": "#/definitions/3848407258",
"description": "Controls the density tapering that happens at the top of the world to prevent terrain from reaching too high"
}
},
"title": "minecraft:mountain_parameters",
"type": "object",
"x-format-version": "1.20.60"
}