mirror of
https://github.com/Mojang/bedrock-samples.git
synced 2025-10-15 20:35:54 +00:00
105 lines
2.9 KiB
JSON
105 lines
2.9 KiB
JSON
{
|
|
"$id": "2298712664",
|
|
"$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": "Generates surface on blocks with non-solid blocks above or below.",
|
|
"properties": {
|
|
"beach_material": {
|
|
"$ref": "#/definitions/3076687790",
|
|
"description": "Material used to decorate surface near sea level."
|
|
},
|
|
"ceiling_materials": {
|
|
"description": "Materials used for the surface ceiling.",
|
|
"items": {
|
|
"$ref": "#/definitions/3076687790",
|
|
"description": "Specifies a particular block. Can be a string block name or a JSON object"
|
|
},
|
|
"minItems": 1,
|
|
"type": "array"
|
|
},
|
|
"floor_materials": {
|
|
"description": "Materials used for the surface floor.",
|
|
"items": {
|
|
"$ref": "#/definitions/3076687790",
|
|
"description": "Specifies a particular block. Can be a string block name or a JSON object"
|
|
},
|
|
"minItems": 1,
|
|
"type": "array"
|
|
},
|
|
"foundation_material": {
|
|
"$ref": "#/definitions/3076687790",
|
|
"description": "Material used to replace solid blocks that are not surface blocks."
|
|
},
|
|
"sea_material": {
|
|
"$ref": "#/definitions/3076687790",
|
|
"description": "Material used to replace air blocks below sea level."
|
|
},
|
|
"type": {
|
|
"const": "minecraft:capped",
|
|
"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": [
|
|
"ceiling_materials",
|
|
"floor_materials",
|
|
"foundation_material",
|
|
"sea_material",
|
|
"type"
|
|
],
|
|
"title": "minecraft:capped",
|
|
"type": "object",
|
|
"x-format-version": "1.21.100"
|
|
} |