2020-11-01 17:22:42 +01:00
|
|
|
{
|
|
|
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
|
|
|
"$id": "blockception.minecraft.biomes_client.json",
|
|
|
|
|
"type": "object",
|
|
|
|
|
"title": "Biomes client",
|
|
|
|
|
"description": "The minecraft biomes definition file",
|
|
|
|
|
"definitions": {
|
|
|
|
|
"biomespec": {
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"description": "The specification of colors in a given biome",
|
|
|
|
|
"title": "Biome specification",
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"fog_color": {
|
|
|
|
|
"$ref": "#/definitions/colorhex",
|
|
|
|
|
"title": "Fog color",
|
|
|
|
|
"description": "The color of the fog"
|
|
|
|
|
},
|
2020-11-18 10:01:29 +01:00
|
|
|
"fog_identifier": {
|
|
|
|
|
"title": "Fog identifier",
|
|
|
|
|
"description": "The fog to be associated to this biome",
|
|
|
|
|
"$ref": "../general/fog/identifier.json"
|
|
|
|
|
},
|
2020-11-01 17:22:42 +01:00
|
|
|
"water_fog_color": {
|
|
|
|
|
"$ref": "#/definitions/colorhex",
|
|
|
|
|
"title": "Water fog color",
|
|
|
|
|
"description": "The color of the water fog"
|
|
|
|
|
},
|
|
|
|
|
"water_fog_distance": {
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"title": "Water fog distance",
|
|
|
|
|
"description": "The distance the water fog start at"
|
|
|
|
|
},
|
|
|
|
|
"water_surface_color": {
|
|
|
|
|
"$ref": "#/definitions/colorhex",
|
|
|
|
|
"title": "Water surface color",
|
|
|
|
|
"description": "The color of the water surface"
|
|
|
|
|
},
|
|
|
|
|
"water_surface_transparency": {
|
|
|
|
|
"type": "number",
|
|
|
|
|
"title": "Water surface transparency",
|
|
|
|
|
"description": "TODO"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"colorhex": {
|
|
|
|
|
"description": "TODO description: colorhex",
|
|
|
|
|
"title": "Colorhex",
|
|
|
|
|
"format": "color-hex"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"properties": {
|
|
|
|
|
"biomes": {
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"description": "TODO description: biomes",
|
|
|
|
|
"title": "Biomes",
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"bamboo_jungle": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"bamboo_jungle_hills": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"basalt_deltas": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"beach": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"birch_forest": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"birch_forest_hills": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"cold_beach": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"cold_ocean": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"cold_taiga": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"cold_taiga_hills": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"cold_taiga_mutated": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"crimson_forest": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"deep_cold_ocean": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"deep_frozen_ocean": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"deep_lukewarm_ocean": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"deep_ocean": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"deep_warm_ocean": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"default": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"desert": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"desert_hills": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"extreme_hills": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"extreme_hills_edge": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"extreme_hills_mutated": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"extreme_hills_plus_trees": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"extreme_hills_plus_trees_mutated": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"flower_forest": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"forest": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"forest_hills": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"frozen_ocean": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"frozen_river": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"hell": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"ice_mountains": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"ice_plains": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"ice_plains_spikes": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"jungle": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"jungle_edge": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"jungle_hills": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"jungle_mutated": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"lukewarm_ocean": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"mega_spruce_taiga": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"mega_spruce_taiga_mutated": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"mega_taiga": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"mega_taiga_hills": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"mega_taiga_mutated": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"mesa": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"mesa_bryce": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"mesa_mutated": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"mesa_plateau": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"mesa_plateau_stone": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"mushroom_island": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"mushroom_island_shore": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"ocean": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"plains": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"river": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"roofed_forest": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"savanna": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"savanna_mutated": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"savanna_plateau": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"soulsand_valley": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"stone_beach": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"sunflower_plains": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"swampland": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"swampland_mutated": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"taiga": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"taiga_hills": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"taiga_mutated": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"the_end": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"warm_ocean": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
},
|
|
|
|
|
"warped_forest": {
|
|
|
|
|
"$ref": "#/definitions/biomespec"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false
|
|
|
|
|
}
|