Files
minecraft-bedrock-json-schemas/source/resource/biomes/biomes.json

28 lines
945 B
JSON
Raw Normal View History

2024-10-12 15:47:16 +01:00
{
"$schema": "http://json-schema.org/draft-07/schema",
2024-10-12 15:47:16 +01:00
"$id": "blockception.minecraft.resource.biomes",
"title": "Client Biome",
"description": "Minecraft client_biome files define client-side settings for biomes in resource packs. This is the new preferred location for per-biome settings that used to be in biomes_client.json.",
"type": "object",
"required": ["format_version", "minecraft:client_biome"],
"additionalProperties": false,
"properties": {
"format_version": { "$ref": "../../general/format_version.json" },
"minecraft:client_biome": { "$ref": "./format/minecraft.client_biome.json" }
},
"defaultSnippets": [
{
"label": "New client biome",
"body": {
"format_version": "${1:1.21.40}",
"minecraft:client_biome": {
"description": {
"identifier": "${3:${TM_FILENAME/[\\.].*//}}"
},
"components": "^{$4}"
}
}
}
]
}