2021-11-16 13:26:46 +01:00
|
|
|
{
|
2025-04-29 12:02:06 +05: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": {
|
2025-04-29 12:02:06 +05:00
|
|
|
"$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": {
|
2025-04-29 12:02:06 +05:00
|
|
|
"$ref": "../../../../general/block/reference.json"
|
2021-11-16 13:26:46 +01:00
|
|
|
}
|
|
|
|
|
},
|
2025-04-29 12:02:06 +05: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.",
|
2025-04-29 12:02:06 +05:00
|
|
|
"$ref": "../../../../general/block/reference.json"
|
2021-11-16 13:26:46 +01:00
|
|
|
},
|
2025-04-29 12:02:06 +05: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
|
|
|
}
|
|
|
|
|
}
|