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/Mesa Surface Biome Component v1.20.60.json
Mike Ammerlaan 8cb28e3b1e v1.21.70.3
2025-03-25 09:13:19 -07:00

101 lines
3.6 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "1174814411",
"definitions": {
"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:mesa_surface",
"description": "Similar to overworld_surface. Adds colored strata and optional pillars.",
"type": "object",
"properties": {
"sea_floor_depth": {
"description": "Controls how deep below the world water level the floor should occur",
"type": "integer"
},
"mid_material": {
"description": "Controls the block type used in a layer below the surface of this biome",
"$ref": "#/definitions/3076687790"
},
"sea_floor_material": {
"description": "Controls the block type used as a floor for bodies of water in this biome",
"$ref": "#/definitions/3076687790"
},
"foundation_material": {
"description": "Controls the block type used deep underground in this biome",
"$ref": "#/definitions/3076687790"
},
"top_material": {
"description": "Controls the block type used for the surface of this biome",
"$ref": "#/definitions/3076687790"
},
"sea_material": {
"description": "Controls the block type used for the bodies of water in this biome",
"$ref": "#/definitions/3076687790"
},
"hard_clay_material": {
"description": "Hardened clay block to use",
"$ref": "#/definitions/3076687790"
},
"clay_material": {
"description": "Base clay block to use",
"$ref": "#/definitions/3076687790"
},
"bryce_pillars": {
"description": "Whether the mesa generates with pillars",
"type": "boolean"
},
"has_forest": {
"description": "Places coarse dirt and grass at high altitudes",
"type": "boolean"
}
},
"required": [
"mid_material",
"sea_floor_depth",
"sea_floor_material",
"hard_clay_material",
"sea_material",
"top_material",
"foundation_material",
"clay_material",
"bryce_pillars",
"has_forest"
]
}