1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-10-14 03:54:59 +00:00
Files
bedrock-samples/metadata/json_schemas/server/biome/1.21.100/Overworld Surface Biome Component.json
2025-09-09 10:02:11 -07:00

103 lines
2.9 KiB
JSON

{
"$id": "72946555",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"1527037515": {
"title": "Reference",
"type": "string"
},
"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"
}
},
"description": "Controls the blocks used for the default Minecraft Overworld terrain generation.",
"properties": {
"foundation_material": {
"$ref": "#/definitions/3076687790",
"description": "Controls the block type used deep underground in this biome"
},
"mid_material": {
"$ref": "#/definitions/3076687790",
"description": "Controls the block type used in a layer below the surface of this biome"
},
"sea_floor_depth": {
"description": "Controls how deep below the world water level the floor should occur",
"maximum": 127,
"minimum": 0,
"type": "integer"
},
"sea_floor_material": {
"$ref": "#/definitions/3076687790",
"description": "Controls the block type used as a floor for bodies of water in this biome"
},
"sea_material": {
"$ref": "#/definitions/3076687790",
"description": "Controls the block type used for the bodies of water in this biome"
},
"top_material": {
"$ref": "#/definitions/3076687790",
"description": "Controls the block type used for the surface of this biome"
},
"type": {
"const": "minecraft:overworld",
"description": "Controls the type of surface builder to use",
"enum": [
"minecraft:overworld",
"minecraft:frozen_ocean",
"minecraft:mesa",
"minecraft:swamp",
"minecraft:capped",
"minecraft:the_end"
],
"title": "SurfaceBuilderType",
"type": "string"
}
},
"required": [
"foundation_material",
"mid_material",
"sea_floor_depth",
"sea_floor_material",
"sea_material",
"top_material",
"type"
],
"title": "minecraft:overworld",
"type": "object",
"x-format-version": "1.21.100"
}