* - 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
31 lines
829 B
JSON
31 lines
829 B
JSON
{
|
|
"$id": "blockception.minecraft.behavior.items",
|
|
"defaultSnippets": [
|
|
{
|
|
"label": "New item",
|
|
"body": {
|
|
"format_version": "${1:1.20.80}",
|
|
"minecraft:item": {
|
|
"description": {
|
|
"identifier": "$2:${3:${TM_FILENAME/[\\.].*//}}",
|
|
"menu_category": {
|
|
"category": "${4:items}"
|
|
}
|
|
},
|
|
"components": {
|
|
"minecraft:icon": "$2.${3:${TM_FILENAME/[\\.].*//}}"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"description": "Minecraft items",
|
|
"required": ["format_version", "minecraft:item"],
|
|
"title": "Item",
|
|
"type": "object",
|
|
"properties": {
|
|
"format_version": { "$ref": "../../general/format_version.json" },
|
|
"minecraft:item": { "$ref": "./format/minecraft.item.json" }
|
|
}
|
|
}
|