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" } ,
"foundation_material" : { "title" : "Foundation Material" , "description" : "Material used to repalce solid blocks that are not surface blocks." , "type" : "string" } ,
"beach_material" : { "title" : "Beach Material" , "description" : "Material used to decorate surface near sea level." , "type" : "string" }
2021-02-06 14:00:02 +01:00
}
}