Fixing up bp items
This commit is contained in:
@@ -9,14 +9,18 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"additionalProperties": true,
|
"additionalProperties": false,
|
||||||
"required": ["textures"],
|
"required": ["textures"],
|
||||||
"properties": {
|
"properties": {
|
||||||
"textures": {
|
"textures": {
|
||||||
"title": "Textures",
|
"title": "Textures",
|
||||||
"description": "Contains key-value pairs of textures used by the item",
|
"description": "Contains key-value pairs of textures used by the item",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"additionalProperties": true,
|
"additionalProperties": {
|
||||||
|
"type": "string",
|
||||||
|
"title": "Texture",
|
||||||
|
"description": "The key from the resource_pack/textures/item_texture.json `texture_data` object associated with the texture file Example: blaze_powder."
|
||||||
|
},
|
||||||
"required": ["default"],
|
"required": ["default"],
|
||||||
"properties": {
|
"properties": {
|
||||||
"default": {
|
"default": {
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
"components": {
|
"components": {
|
||||||
"minecraft:can_destroy_in_creative": { "value": false },
|
"minecraft:can_destroy_in_creative": { "value": false },
|
||||||
"minecraft:max_stack_size": { "value": 64 },
|
"minecraft:max_stack_size": { "value": 64 },
|
||||||
"minecraft:icon": { "value": "stick" },
|
"minecraft:icon": { "textures": { "default": "stick" } },
|
||||||
"minecraft:glint": { "value": true },
|
"minecraft:glint": { "value": true },
|
||||||
"minecraft:damage": { "value": 2 },
|
"minecraft:damage": { "value": 2 },
|
||||||
"minecraft:stacked_by_data": { "value": true },
|
"minecraft:stacked_by_data": { "value": true },
|
||||||
|
|||||||
Reference in New Issue
Block a user