* - 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
29 lines
832 B
JSON
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}"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|