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

42 lines
1.4 KiB
JSON
Raw Normal View History

2021-11-16 13:26:46 +01:00
{
"$id": "blockception.minecraft.behavior.biomes.minecraft.capped_surface",
2021-11-16 13:26:46 +01:00
"title": "Capped Surface",
"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": {
"title": "Ceiling Materials",
"description": "Materials used for the surface ceiling.",
"minItems": 1,
"items": {
"$ref": "../../../../general/block/reference.json"
2021-11-16 13:26:46 +01:00
}
},
"floor_materials": {
"title": "Floor Materials",
"description": "Materials used for the surface floor.",
"minItems": 1,
"items": {
"$ref": "../../../../general/block/reference.json"
2021-11-16 13:26:46 +01:00
}
},
"sea_material": {
"title": "Sea Material",
"description": "Material used to replace air blocks below sea level.",
"$ref": "../../../../general/block/reference.json"
},
2021-11-16 13:26:46 +01:00
"foundation_material": {
"title": "Foundation Material",
"description": "Material used to repalce solid blocks that are not surface blocks.",
"$ref": "../../../../general/block/reference.json"
2021-11-16 13:26:46 +01:00
},
"beach_material": {
"title": "Beach Material",
"description": "Material used to decorate surface near sea level.",
"$ref": "../../../../general/block/reference.json"
}
2021-11-16 13:26:46 +01:00
}
}