Minecraft Biomes:
{
"id": 0,
"name": "the_void",
"category": "none",
"temperature": 0.5,
"precipitation": "none",
"dimension": "overworld",
"displayName": "The Void",
"color": 0,
"rainfall": 0.5
}
Returns an array of all biome objects.
[
{
"id": 0,
"name": "the_void",
"category": "none",
"temperature": 0.5,
"precipitation": "none",
"dimension": "overworld",
"displayName": "The Void",
"color": 0,
"rainfall": 0.5
},
{
"id": 1,
"name": "plains",
"category": "plains",
"temperature": 0.8,
"precipitation": "rain",
"dimension": "overworld",
"displayName": "Plains",
"color": 9286496,
"rainfall": 0.4
},
...
]
Returns an array of biome objects whose fields satisfy the query /search?q=<query>
(query may either be of type 'string' or 'number')
/api/biome/search?q=void
[
{
"id": 0,
"name": "the_void",
"category": "none",
"temperature": 0.5,
"precipitation": "none",
"dimension": "overworld",
"displayName": "The Void",
"color": 0,
"rainfall": 0.5
},
]
Returns a single biome item whose biomeId
exists
(:biomeId
may only be of type 'number')
/api/biome/0
{
"id": 0,
"name": "the_void",
"category": "none",
"temperature": 0.5,
"precipitation": "none",
"dimension": "overworld",
"displayName": "The Void",
"color": 0,
"rainfall": 0.5
}