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

31 lines
829 B
JSON
Raw Normal View History

2021-06-06 10:07:19 +00:00
{
2022-07-20 21:25:32 +02:00
"$id": "blockception.minecraft.behavior.items",
2024-04-29 20:24:55 +07:00
"defaultSnippets": [
{
"label": "New item",
"body": {
"format_version": "${1:1.20.80}",
2024-04-29 20:24:55 +07:00
"minecraft:item": {
"description": {
"identifier": "$2:${3:${TM_FILENAME/[\\.].*//}}",
"menu_category": {
"category": "${4:items}"
}
},
"components": {
"minecraft:icon": "$2.${3:${TM_FILENAME/[\\.].*//}}"
}
}
}
}
],
2023-11-28 19:49:09 +01:00
"description": "Minecraft items",
2022-06-07 20:49:57 +02:00
"required": ["format_version", "minecraft:item"],
"title": "Item",
"type": "object",
"properties": {
"format_version": { "$ref": "../../general/format_version.json" },
"minecraft:item": { "$ref": "./format/minecraft.item.json" }
}
2021-06-06 10:07:19 +00:00
}