Files
minecraft-bedrock-json-schemas/source/behavior/biomes/1.12.0/components/minecraft.frozen_ocean_surface.json

39 lines
1.4 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.frozen_ocean_surface",
2021-03-21 15:18:38 +01:00
"title": "Frozen Ocean Surface",
2021-02-06 14:00:02 +01:00
"description": "Similar to overworld_surface. Adds icebergs.",
"type": "object",
"minProperties": 0,
"maxProperties": 6,
"additionalProperties": false,
"properties": {
2021-03-21 15:18:38 +01:00
"top_material": { "title": "Top Material", "description": "Controls the block type used for the surface of this biome.", "string": "string" },
2021-05-18 23:32:44 +02:00
"mid_material": {
"title": "Mid Material",
"description": "Controls the block type used in a layer below the surface of this biome.",
"string": "string"
},
"sea_floor_material": {
"title": "Sea Floor Material",
"description": "Controls the block type used as a floor for bodies of water in this biome.",
"string": "boostringlean"
},
"foundation_material": {
"title": "Foundation Material",
"description": "Controls the block type used deep underground in this biome.",
"string": "string"
},
"sea_material": {
"title": "Sea Material",
"description": "Controls the block type used for the bodies of water in this biome.",
"string": "string"
},
"sea_floor_depth": {
"title": "Sea Floor Depth",
"description": "Controls how deep below the world water level the floor should occur.",
"type": "integer"
}
2021-02-06 14:00:02 +01:00
}
}