2021-06-06 10:07:19 +00:00
{
2021-11-20 11:26:35 +01:00
"$schema" : "http://json-schema.org/draft-07/schema" ,
2021-06-06 10:07:19 +00:00
"$id" : "minecraft.behavior.biomes" ,
"type" : "object" ,
2023-11-28 19:49:09 +01:00
"examples" : [ { "plains" : { "format_version" : "1.20.41" } } ] ,
2021-06-06 10:07:19 +00:00
"additionalProperties" : {
"type" : "object" ,
2021-11-16 13:26:46 +01:00
"title" : "Biomes" ,
2022-07-22 19:41:04 +02:00
"description" : "The definition of a biome." ,
2021-11-16 13:26:46 +01:00
"additionalProperties" : {
"title" : "Tag" ,
"type" : "object" ,
"description" : "Components with no namespace are treated as `tags': any name consisting of alphanumeric characters, `.` and `_` is permitted; the tag is attached to the biome so that either code or data may check for its existence; tag components may not have member fields." ,
"additionalProperties" : false
} ,
"properties" : {
"format_version" : { "$ref" : "../../general/format_version.json" } ,
2022-09-20 19:06:50 +02:00
"minecraft:capped_surface" : { "$ref" : "./components/capped_surface.json" } ,
"minecraft:climate" : { "$ref" : "./components/climate.json" } ,
"minecraft:consolidated_features" : { "$ref" : "./components/consolidated_features.json" } ,
"minecraft:forced_features" : { "$ref" : "./components/forced_features.json" } ,
"minecraft:frozen_ocean_surface" : { "$ref" : "./components/frozen_ocean_surface.json" } ,
"minecraft:ignore_automatic_features" : { "$ref" : "./components/ignore_automatic_features.json" } ,
"minecraft:legacy_world_generation_rules" : {
"$ref" : "./components/legacy_world_generation_rules.json"
} ,
"minecraft:mesa_surface" : { "$ref" : "./components/mesa_surface.json" } ,
"minecraft:mountain_parameters" : { "$ref" : "./components/mountain_parameters.json" } ,
"minecraft:nether_generation_rules" : { "$ref" : "./components/nether_generation_rules.json" } ,
"minecraft:nether_surface" : { "$ref" : "./components/nether_surface.json" } ,
"minecraft:overworld_generation_rules" : { "$ref" : "./components/overworld_generation_rules.json" } ,
"minecraft:overworld_height" : { "$ref" : "./components/overworld_height.json" } ,
"minecraft:surface_material_adjustments" : { "$ref" : "./components/surface_material_adjustments.json" } ,
"minecraft:surface_parameters" : { "$ref" : "./components/surface_parameters.json" } ,
"minecraft:swamp_surface" : { "$ref" : "./components/swamp_surface.json" } ,
"minecraft:the_end_surface" : { "$ref" : "./components/the_end_surface.json" }
2021-11-16 13:26:46 +01:00
}
2021-06-06 10:07:19 +00:00
}
}