Files
minecraft-bedrock-json-schemas/source/behavior/biomes/1.12.0/components/minecraft.capped_surface.json

39 lines
1.4 KiB
JSON
Raw Normal View History

2021-02-06 14:00:02 +01:00
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.capped_surface",
2021-03-21 15:18:38 +01:00
"title": "Capped Surface",
2021-02-06 14:00:02 +01:00
"description": "Generates surface on blocks with non-solid blocks above or below.",
"type": "object",
"additionalProperties": false,
"required": ["floor_materials", "ceiling_materials", "sea_material", "foundation_material"],
"properties": {
"ceiling_materials": {
2021-03-21 15:18:38 +01:00
"title": "Ceiling Materials",
2021-02-06 14:00:02 +01:00
"description": "Materials used for the surface ceiling.",
"minItems": 1,
"items": {
2021-03-21 15:18:38 +01:00
"title": "Block Reference",
2021-02-06 14:00:02 +01:00
"description": "UNDOCUMENTATED",
"type": "string"
}
},
"floor_materials": {
2021-03-21 15:18:38 +01:00
"title": "Floor Materials",
2021-02-06 14:00:02 +01:00
"description": "Materials used for the surface floor.",
"minItems": 1,
"items": {
2021-03-21 15:18:38 +01:00
"title": "Block Reference",
2021-02-06 14:00:02 +01:00
"description": "UNDOCUMENTATED",
"type": "string"
}
},
2021-03-21 15:18:38 +01:00
"sea_material": { "title": "Sea Material", "description": "Material used to replace air blocks below sea level.", "type": "string" },
2021-05-18 23:32:44 +02:00
"foundation_material": {
"title": "Foundation Material",
"description": "Material used to repalce solid blocks that are not surface blocks.",
"type": "string"
},
2021-03-21 15:18:38 +01:00
"beach_material": { "title": "Beach Material", "description": "Material used to decorate surface near sea level.", "type": "string" }
2021-02-06 14:00:02 +01:00
}
}