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

41 lines
1.6 KiB
JSON
Raw Normal View History

2021-11-16 13:26:46 +01:00
{
"$id": "blockception.minecraft.behavior.biomes.minecraft.swamp_surface",
2021-11-16 13:26:46 +01:00
"title": "Swamp Surface",
"description": "Similar to overworld_surface. Adds swamp surface details.",
"type": "object",
"required": ["foundation_material", "mid_material", "sea_floor_depth", "sea_floor_material", "sea_material", "top_material"],
2021-11-16 13:26:46 +01:00
"additionalProperties": false,
"properties": {
2022-09-20 19:06:50 +02:00
"top_material": {
"title": "Top Material",
"description": "Controls the block type used for the surface of this biome.",
"$ref": "../../../../general/block/reference.json"
2022-09-20 19:06:50 +02:00
},
2021-11-16 13:26:46 +01:00
"mid_material": {
"title": "Mid Material",
"description": "Controls the block type used in a layer below the surface of this biome.",
"$ref": "../../../../general/block/reference.json"
2021-11-16 13:26:46 +01:00
},
"sea_floor_material": {
"title": "Sea Floor Material",
"description": "Controls the block type used as a floor for bodies of water in this biome.",
"$ref": "../../../../general/block/reference.json"
2021-11-16 13:26:46 +01:00
},
"foundation_material": {
"title": "Foundation Material",
"description": "Controls the block type used deep underground in this biome.",
"$ref": "../../../../general/block/reference.json"
2021-11-16 13:26:46 +01:00
},
"sea_material": {
"title": "Sea Material",
"description": "Controls the block type used for the bodies of water in this biome.",
"$ref": "../../../../general/block/reference.json"
2021-11-16 13:26:46 +01:00
},
"sea_floor_depth": {
"title": "Sea Floor Depth",
"description": "Controls how deep below the world water level the floor should occur.",
"type": "integer"
}
}
}