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/Swamp Surface Biome Component.json
2025-09-09 10:02:11 -07:00

110 lines
3.3 KiB
JSON

{
"$id": "424552073",
"$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": "Used to add decoration to the surface of swamp biomes such as water lilies.",
"properties": {
"foundation_material": {
"$ref": "#/definitions/3076687790",
"description": "Controls the block type used deep underground in this biome."
},
"max_puddle_depth_below_sea_level": {
"description": "Controls the depth at which surface level blocks can be replaced with water for puddles. The number represents the number of blocks (0, 127) below sea level that we will go down to look for a surface block.",
"maximum": 127,
"minimum": 0,
"type": "integer"
},
"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:swamp",
"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",
"max_puddle_depth_below_sea_level",
"mid_material",
"sea_floor_depth",
"sea_floor_material",
"sea_material",
"top_material",
"type"
],
"title": "minecraft:swamp",
"type": "object",
"x-format-version": "1.21.100"
}