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

36 lines
1.3 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.nether_generation_rules",
"title": "Nether generation rules",
"description": "Controls how this biome is instantiated (and then potentially modified) during world generation of the nether.",
"type": "object",
"additionalProperties": false,
"properties": {
"target_temperature": {
2021-02-10 02:07:15 +01:00
"title": "Target temperature",
2021-02-06 14:00:02 +01:00
"description": "Temperature with which this biome should selected, relative to other biomes.",
"type": "number"
},
"target_humidity": {
2021-02-10 02:07:15 +01:00
"title": "Target humidity",
2021-02-06 14:00:02 +01:00
"description": "Humidity with which this biome should selected, relative to other biomes.",
"type": "number"
},
"target_altitude": {
2021-02-10 02:07:15 +01:00
"title": "Target altitude",
2021-02-06 14:00:02 +01:00
"description": "Altitude with which this biome should selected, relative to other biomes.",
"type": "number"
},
"target_weirdness": {
2021-02-10 02:07:15 +01:00
"title": "Target weirdness",
2021-02-06 14:00:02 +01:00
"description": "Weirdness with which this biome should selected, relative to other biomes.",
"type": "number"
},
"weight": {
2021-02-10 02:07:15 +01:00
"title": "Weight",
2021-02-06 14:00:02 +01:00
"description": "Weight with which this biome should selected, relative to other biomes.",
"type": "number"
}
}
}