Added blocks 1.17

This commit is contained in:
DaanV2
2021-08-22 00:15:58 +02:00
parent 286794dae0
commit 5e465f3220
56 changed files with 943 additions and 9 deletions

View File

@@ -205,7 +205,13 @@
"title": "Spawn Egg",
"dependencies": { "texture_index": ["texture"], "base_colour": ["overlay_color"], "overlay_color": ["base_color"] },
"properties": {
"base_color": { "type": "string", "description": "The basic color of the egg", "title": "Base Color", "format": "color-hex" },
"base_color": {
"type": "string",
"description": "The basic color of the egg",
"title": "Base Color",
"format": "color-hex",
"examples": ["#FFFFFF"]
},
"overlay_color": {
"type": "string",
"description": "The colors of the dots on the egg",

View File

@@ -163,12 +163,19 @@
"title": "Spawn Egg",
"dependencies": { "texture_index": ["texture"], "base_colour": ["overlay_color"], "overlay_color": ["base_color"] },
"properties": {
"base_color": { "type": "string", "description": "The basic color of the egg", "title": "Base Color", "format": "color-hex" },
"base_color": {
"type": "string",
"description": "The basic color of the egg",
"title": "Base Color",
"format": "color-hex",
"examples": ["#FFFFFF"]
},
"overlay_color": {
"type": "string",
"description": "The colors of the dots on the egg",
"title": "Overlay Color",
"format": "color-hex"
"format": "color-hex",
"examples": ["#FFFFFF"]
},
"texture": { "type": "string", "description": "The texture reference in item_texture.json", "title": "Texture" },
"texture_index": { "type": "integer", "description": "The index of the texture", "title": "Texture Index", "default": 0 }