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

27 lines
799 B
JSON
Raw Normal View History

2021-06-06 10:07:19 +00:00
{
2021-11-20 11:26:35 +01:00
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.biome",
"required": ["format_version", "minecraft:biome"],
2021-06-06 10:07:19 +00:00
"type": "object",
"title": "Biome Behavior",
"description": "The minecraft biome behavior specification.",
"additionalProperties": false,
"properties": {
"format_version": { "$ref": "../../general/format_version.json" },
"minecraft:biome": { "$ref": "./format/minecraft.biome.json" }
},
"defaultSnippets": [
{
"label": "New biome",
"body": {
"format_version": "${1:1.21.80}",
"minecraft:biome": {
"description": {
"identifier": "$2:${3:${TM_FILENAME/[\\.].*//}}"
},
"components": "^{$4}"
}
}
2021-11-16 13:26:46 +01:00
}
]
}