1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-04-10 22:39:59 +00:00
Files
bedrock-samples/metadata/json_schemas/biome/v1.20.60/Mountain Parameters Biome Component v1.20.60.json
Mike Ammerlaan 8cb28e3b1e v1.21.70.3
2025-03-25 09:13:19 -07:00

98 lines
3.8 KiB
JSON

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