Files
minecraft-bedrock-json-schemas/source/behaviour/biomes/1.12.0/components/minecraft.surface_parameters.json

43 lines
1.5 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.surface_parameters",
"title": "Surface parameters",
"description": "Control the blocks used for the default Minecraft Overworld terrain generation.",
"type": "object",
"minProperties": 0,
"maxProperties": 6,
"additionalProperties": false,
"properties": {
"top_material": {
2021-02-10 02:07:15 +01:00
"title": "Top material",
2021-02-06 14:00:02 +01:00
"description": "Controls the block type used for the surface of this biome.",
2021-02-10 02:07:15 +01:00
"string": "string"
2021-02-06 14:00:02 +01:00
},
"mid_material": {
2021-02-10 02:07:15 +01:00
"title": "Mid material",
2021-02-06 14:00:02 +01:00
"description": "Controls the block type used in a layer below the surface of this biome.",
2021-02-10 02:07:15 +01:00
"string": "string"
2021-02-06 14:00:02 +01:00
},
"sea_floor_material": {
2021-02-10 02:07:15 +01:00
"title": "Sea floor material",
2021-02-06 14:00:02 +01:00
"description": "Controls the block type used as a floor for bodies of water in this biome.",
2021-02-10 02:07:15 +01:00
"string": "boostringlean"
2021-02-06 14:00:02 +01:00
},
"foundation_material": {
2021-02-10 02:07:15 +01:00
"title": "Foundation material",
2021-02-06 14:00:02 +01:00
"description": "Controls the block type used deep underground in this biome.",
2021-02-10 02:07:15 +01:00
"string": "string"
2021-02-06 14:00:02 +01:00
},
"sea_material": {
2021-02-10 02:07:15 +01:00
"title": "Sea material",
2021-02-06 14:00:02 +01:00
"description": "Controls the block type used for the bodies of water in this biome.",
2021-02-10 02:07:15 +01:00
"string": "string"
2021-02-06 14:00:02 +01:00
},
"sea_floor_depth": {
2021-02-10 02:07:15 +01:00
"title": "Sea floor depth",
2021-02-06 14:00:02 +01:00
"description": "Controls how deep below the world water level the floor should occur.",
2021-02-10 02:07:15 +01:00
"type": "integer"
2021-02-06 14:00:02 +01:00
}
}
}