2021-11-16 13:26:46 +01:00
{
"$id" : "minecraft.behavior.biomes.1.12.0.components.minecraft.overworld_generation_rules" ,
"title" : "Overworld Generation Rules" ,
"description" : "Control how this biome is instantiated (and then potentially modified) during world generation of the overworld." ,
"type" : "object" ,
"additionalProperties" : false ,
"definitions" : {
"transformation" : {
"oneOf" : [
{
"type" : "string" ,
"title" : "Block Reference" ,
2022-07-22 19:41:04 +02:00
"description" : "UNDOCUMENTED." ,
2021-11-16 13:26:46 +01:00
"$comment" : "UNDOCUMENTED"
} ,
{
"type" : "array" ,
2022-07-22 19:41:04 +02:00
"description" : "UNDOCUMENTED." ,
2021-11-16 13:26:46 +01:00
"$comment" : "UNDOCUMENTED" ,
"title" : "Block Reference" ,
"minItems" : 1 ,
"items" : {
"oneOf" : [
{
"type" : "string" ,
2022-07-22 19:41:04 +02:00
"description" : "UNDOCUMENTED." ,
2021-11-16 13:26:46 +01:00
"$comment" : "UNDOCUMENTED" ,
"title" : "Block Reference"
} ,
{
"type" : "array" ,
2022-07-22 19:41:04 +02:00
"description" : "UNDOCUMENTED." ,
2021-11-16 13:26:46 +01:00
"$comment" : "UNDOCUMENTED" ,
"items" : [
{
"title" : "Biome Reference" ,
2022-07-22 19:41:04 +02:00
"description" : "UNDOCUMENTED." ,
2021-11-16 13:26:46 +01:00
"$comment" : "UNDOCUMENTED" ,
"type" : "string"
} ,
{
"title" : "_" ,
2022-07-22 19:41:04 +02:00
"description" : "UNDOCUMENTED." ,
2021-11-16 13:26:46 +01:00
"$comment" : "UNDOCUMENTED" ,
"type" : "integer"
}
]
}
]
}
}
]
}
} ,
"properties" : {
"hills_transformation" : {
"title" : "Hills Transformation" ,
2022-07-22 19:41:04 +02:00
"description" : "UNDOCUMENTED." ,
2021-11-16 13:26:46 +01:00
"$comment" : "UNDOCUMENTED" ,
"$ref" : "#/definitions/transformation"
} ,
"mutate_transformation" : {
"title" : "Mutate Transformation" ,
2022-07-22 19:41:04 +02:00
"description" : "UNDOCUMENTED." ,
2021-11-16 13:26:46 +01:00
"$comment" : "UNDOCUMENTED" ,
"$ref" : "#/definitions/transformation"
} ,
"river_transformation" : {
"title" : "River Transformation" ,
2022-07-22 19:41:04 +02:00
"description" : "UNDOCUMENTED." ,
2021-11-16 13:26:46 +01:00
"$comment" : "UNDOCUMENTED" ,
"$ref" : "#/definitions/transformation"
} ,
"shore_transformation" : {
"title" : "Shore Transformation" ,
2022-07-22 19:41:04 +02:00
"description" : "UNDOCUMENTED." ,
2021-11-16 13:26:46 +01:00
"$comment" : "UNDOCUMENTED" ,
"$ref" : "#/definitions/transformation"
} ,
"generate_for_climates" : {
"title" : "Generate For Climates" ,
"description" : "Controls the world generation climate categories that this biome can spawn for. A single biome can be associated with multiple categories with different weightings." ,
"type" : "array" ,
"items" : {
"title" : "_" ,
2022-07-22 19:41:04 +02:00
"description" : "UNDOCUMENTED." ,
2021-11-16 13:26:46 +01:00
"$comment" : "UNDOCUMENTED" ,
"type" : "array" ,
"items" : [
{
"title" : "Climate Category" ,
2022-07-22 19:41:04 +02:00
"description" : "Name of a climate category." ,
2021-11-16 13:26:46 +01:00
"type" : "string" ,
"enum" : [ "medium" , "warm" , "lukewarm" , "cold" , "frozen" ]
} ,
{
"title" : "Weight" ,
2022-07-22 19:41:04 +02:00
"description" : "Weight with which this biome should be selected, relative to other biomes in the same category." ,
2021-11-16 13:26:46 +01:00
"type" : "integer"
}
]
}
}
}
}