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

81 lines
3.0 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "114123883",
"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:frozen_ocean_surface",
"description": "Similar to overworld_surface. Adds icebergs.",
"type": "object",
"properties": {
"mid_material": {
"description": "Controls the block type used in a layer below the surface of this biome",
"$ref": "#/definitions/3076687790"
},
"sea_floor_depth": {
"description": "Controls how deep below the world water level the floor should occur",
"type": "integer"
},
"sea_floor_material": {
"description": "Controls the block type used as a floor for bodies of water in this biome",
"$ref": "#/definitions/3076687790"
},
"sea_material": {
"description": "Controls the block type used for the bodies of water in this biome",
"$ref": "#/definitions/3076687790"
},
"top_material": {
"description": "Controls the block type used for the surface of this biome",
"$ref": "#/definitions/3076687790"
},
"foundation_material": {
"description": "Controls the block type used deep underground in this biome",
"$ref": "#/definitions/3076687790"
}
},
"required": [
"sea_floor_depth",
"mid_material",
"sea_floor_material",
"foundation_material",
"top_material",
"sea_material"
]
}