mirror of
https://github.com/Mojang/bedrock-samples.git
synced 2025-10-15 12:35:04 +00:00
123 lines
3.5 KiB
JSON
123 lines
3.5 KiB
JSON
{
|
|
"$id": "415084889",
|
|
"$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": "Similar to overworld_surface. Adds colored strata and optional pillars.",
|
|
"properties": {
|
|
"bryce_pillars": {
|
|
"description": "Whether the mesa generates with pillars",
|
|
"type": "boolean"
|
|
},
|
|
"clay_material": {
|
|
"$ref": "#/definitions/3076687790",
|
|
"description": "Base clay block to use"
|
|
},
|
|
"foundation_material": {
|
|
"$ref": "#/definitions/3076687790",
|
|
"description": "Controls the block type used deep underground in this biome"
|
|
},
|
|
"hard_clay_material": {
|
|
"$ref": "#/definitions/3076687790",
|
|
"description": "Hardened clay block to use"
|
|
},
|
|
"has_forest": {
|
|
"description": "Places coarse dirt and grass at high altitudes",
|
|
"type": "boolean"
|
|
},
|
|
"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:mesa",
|
|
"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": [
|
|
"bryce_pillars",
|
|
"clay_material",
|
|
"foundation_material",
|
|
"hard_clay_material",
|
|
"has_forest",
|
|
"mid_material",
|
|
"sea_floor_depth",
|
|
"sea_floor_material",
|
|
"sea_material",
|
|
"top_material",
|
|
"type"
|
|
],
|
|
"title": "minecraft:mesa",
|
|
"type": "object",
|
|
"x-format-version": "1.21.100"
|
|
} |