Files
minecraft-bedrock-json-schemas/source/behavior/biomes/format/components/mountain_parameters.json

56 lines
1.8 KiB
JSON
Raw Normal View History

2021-11-16 13:26:46 +01:00
{
"$id": "blockception.minecraft.behavior.biomes.minecraft.mountain_parameters",
"title": "Mountain Parameters",
2022-07-22 19:41:04 +02:00
"description": "Noise parameters used to drive mountain terrain generation in Overworld.",
2021-11-16 13:26:46 +01:00
"type": "object",
"additionalProperties": false,
"properties": {
"steep_material_adjustment": {
"type": "object",
"title": "Steep Material Adjustment",
2022-07-22 19:41:04 +02:00
"description": "Defines surface material for steep slopes.",
2021-11-16 13:26:46 +01:00
"additionalProperties": false,
"properties": {
"material": {
"title": "Material",
"description": "Block type use as steep material.",
"$ref": "../../../../general/block/reference.json"
2021-11-16 13:26:46 +01:00
},
"north_slopes": {
"type": "boolean",
"title": "North Slopes",
"description": "Enable for north-facing slopes."
2021-11-16 13:26:46 +01:00
},
"south_slopes": {
"type": "boolean",
"title": "South Slopes",
"description": "Enable for south-facing slopes."
2021-11-16 13:26:46 +01:00
},
"west_slopes": {
"type": "boolean",
"title": "West Slopes",
"description": "Enable for west-facing slopes."
2021-11-16 13:26:46 +01:00
},
"east_slopes": {
"type": "boolean",
"title": "East Slopes",
"description": "Enable for east-facing slopes."
2021-11-16 13:26:46 +01:00
}
}
},
"top_slide": {
"title": "Top Slide",
2022-07-22 19:41:04 +02:00
"description": "Controls the density tapering that happens at the top of the world to prevent terrain from reaching too high.",
2021-11-16 13:26:46 +01:00
"type": "object",
"additionalProperties": false,
"required": ["enabled"],
2021-11-16 13:26:46 +01:00
"properties": {
"enabled": {
"title": "Enabled",
"description": "If false, top slide will be disabled. If true, other parameters will be taken into account"
}
}
}
}
}