1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-07-17 09:26:17 +00:00
Files
bedrock-samples/metadata/json_schemas/server/1.21.80/Biome Replacement.json
Mike Ammerlaan d2c831e602 v1.21.90.3
2025-06-18 05:19:56 -07:00

54 lines
1.9 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "716969038",
"x-format-version": "1.21.80",
"x-minecraft-version": "1.21.90-beta.3",
"definitions": {
"1527037515": {
"title": "struct SharedTypes::Reference<0>",
"oneOf": [
{
"type": "string"
},
{
"type": "string"
}
]
}
},
"title": "Biome Replacement",
"description": "Represents the replacement information used to determine the placement of the overriding biome.",
"type": "object",
"properties": {
"amount": {
"description": "Noise value used to determine whether or not the replacement is attempted, similar to a percentage. Must be in the range (0.0, 1.0].",
"type": "number",
"exclusiveMinimum": 0.0,
"maximum": 1.0
},
"dimension": {
"description": "Dimension in which this replacement can happen. Must be 'minecraft:overworld'.",
"type": "string"
},
"noise_frequency_scale": {
"description": "Scaling value used to alter the frequency of replacement attempts. A lower frequency will mean a bigger contiguous biome area that occurs less often. A higher frequency will mean smaller contiguous biome areas that occur more often. Must be in the range (0.0, 100.0].",
"type": "number",
"exclusiveMinimum": 0.0,
"maximum": 100.0
},
"targets": {
"description": "Biomes that are going to be replaced by the overriding biome. Target biomes must not contain namespaces.",
"type": "array",
"items": {
"$ref": "#/definitions/1527037515"
},
"minItems": 1
}
},
"required": [
"amount",
"dimension",
"noise_frequency_scale",
"targets"
]
}