UNPKG

minecraft-data

Version:
125 lines (124 loc) 3.33 kB
{ "title": "biomes", "type": "array", "uniqueItems": true, "items": { "title": "biome", "type": "object", "additionalProperties": false, "properties": { "id": { "description": "The unique identifier for a biome", "type": "integer", "minimum": 0 }, "name": { "description": "The name of a biome", "type": "string" }, "category": { "description": "The category of a biome", "type": "string" }, "temperature": { "description": "An indicator for the temperature in a biome", "type": "number", "minimum": -1, "maximum": 2 }, "precipitation": { "description": "The type of precipitation: none, rain or snow [before 1.19.4]", "type": "string", "enum": ["none", "rain", "snow"] }, "has_precipitation": { "description": "True if a biome has any precipitation (rain or snow) [1.19.4+]", "type": "boolean" }, "dimension": { "description": "The dimension of a biome: overworld, nether, end, or the_end (bedrock)", "type": "string" }, "displayName": { "description": "The display name of a biome", "type": "string", "pattern": "\\S+" }, "color": { "description": "The color in a biome", "type": "integer", "minimum": 0 }, "rainfall": { "description": "How much rain there is in a biome [before 1.19.4]", "type": "number", "minimum": 0, "maximum": 1 }, "depth": { "description": "The depth/height variation of the biome terrain", "type": "number" }, "climates": { "description": "Climate data for the biome", "type": "array", "minItems": 1, "items": { "type": "object", "additionalProperties": false, "properties": { "temperature": { "description": "Climate temperature value", "type": "number" }, "humidity": { "description": "Climate humidity value", "type": "number" }, "altitude": { "description": "Climate altitude value", "type": "number" }, "weirdness": { "description": "Climate weirdness value", "type": "number" }, "offset": { "description": "Climate offset value", "type": "number" } }, "required": [ "temperature", "humidity", "altitude", "weirdness", "offset" ] } }, "name_legacy": { "description": "Legacy name of the biome used in older versions", "type": "string" }, "parent": { "description": "Parent biome name for variant biomes", "type": "string" }, "child": { "description": "Child biome ID for variant biomes", "type": "integer", "minimum": 0 } }, "required": [ "id", "name", "category", "temperature", "dimension", "displayName", "color" ] } }