2021-06-06 10:07:19 +00:00
|
|
|
{
|
2021-11-20 11:26:35 +01:00
|
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
2025-04-29 12:02:06 +05:00
|
|
|
"$id": "blockception.minecraft.behavior.biome",
|
|
|
|
|
"required": ["format_version", "minecraft:biome"],
|
2021-06-06 10:07:19 +00:00
|
|
|
"type": "object",
|
2025-04-29 12:02:06 +05:00
|
|
|
"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
|
|
|
}
|
2025-04-29 12:02:06 +05:00
|
|
|
]
|
|
|
|
|
}
|