Files
minecraft-bedrock-json-schemas/source/behavior/blocks/blocks.json
Xterionix 822ed538f9 Some more misc fixes (#295)
* - Add mob effects enum

* - Add biome and biome tags to enum

* - Fix feature rules only showing with 1.13.0 format version

* - Replace 1.20.41 -> 1.20.80
- Make certain format versions restricted to 1.10.0

* - Remove example stick (having this here was annoying)

* - Fix

* - Remove empty sounds example

* - Misc fixes for entity components
2024-06-28 21:06:53 +02:00

29 lines
832 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.block",
"$comment": "UNDOCUMENTED",
"required": ["format_version", "minecraft:block"],
"type": "object",
"title": "Block Behavior",
"description": "The minecraft block behavior specification.",
"additionalProperties": false,
"properties": {
"format_version": { "$ref": "../../general/format_version.json" },
"minecraft:block": { "$ref": "./format/minecraft.block.json" }
},
"defaultSnippets": [
{
"label": "New block",
"body": {
"format_version": "${1:1.20.80}",
"minecraft:block": {
"description": {
"identifier": "$2:${3:${TM_FILENAME/[\\.].*//}}"
},
"components": "^{$4}"
}
}
}
]
}